@@ -8,8 +8,9 @@ const bashPath = require('bash-path');
8
8
const cp = require ( 'child_process' ) ;
9
9
const braces = require ( '..' ) ;
10
10
11
- const bash = input => {
12
- return cp . spawnSync ( bashPath ( ) , [ '-c' , `echo ${ input } ` ] )
11
+ const bash = ( input ) => {
12
+ return cp
13
+ . spawnSync ( bashPath ( ) , [ '-c' , `echo ${ input } ` ] )
13
14
. stdout . toString ( )
14
15
. split ( / \s + / )
15
16
. filter ( Boolean ) ;
@@ -21,7 +22,7 @@ const equal = (input, expected = bash(input), options) => {
21
22
22
23
describe ( 'unit tests from brace-expand' , ( ) => {
23
24
describe ( 'extglobs' , ( ) => {
24
- it ( 'should split on commas when braces are inside extglobs' , ( ) => {
25
+ it . skip ( 'should split on commas when braces are inside extglobs' , ( ) => {
25
26
equal ( '*(a|{b|c,d})' , [ '*(a|b|c)' , '*(a|d)' ] ) ;
26
27
} ) ;
27
28
@@ -37,21 +38,43 @@ describe('unit tests from brace-expand', () => {
37
38
} ) ;
38
39
39
40
it ( 'should support expanded nested empty sets' , ( ) => {
40
- equal ( '{\ `foo,bar\ `}' , [ '{`foo,bar`}' ] , { keepQuotes : true } ) ;
41
+ equal ( '{`foo,bar`}' , [ '{`foo,bar`}' ] , { keepQuotes : true } ) ;
41
42
equal ( '{\\`foo,bar\\`}' , [ '`foo' , 'bar`' ] , { keepQuotes : true } ) ;
42
- equal ( '{`foo\ ,bar`}' , [ '{`foo,bar`}' ] , { keepQuotes : true } ) ;
43
+ equal ( '{`foo,bar`}' , [ '{`foo,bar`}' ] , { keepQuotes : true } ) ;
43
44
equal ( '{`foo\\,bar`}' , [ '{`foo\\,bar`}' ] , { keepQuotes : true } ) ;
44
45
45
- equal ( '{\ `foo,bar\ `}' , [ '{foo,bar}' ] ) ;
46
+ equal ( '{`foo,bar`}' , [ '{foo,bar}' ] ) ;
46
47
equal ( '{\\`foo,bar\\`}' , [ '`foo' , 'bar`' ] ) ;
47
- equal ( '{`foo\ ,bar`}' , [ '{foo,bar}' ] ) ;
48
+ equal ( '{`foo,bar`}' , [ '{foo,bar}' ] ) ;
48
49
equal ( '{`foo\\,bar`}' , [ '{foo\\,bar}' ] ) ;
49
50
50
51
equal ( '{a,\\\\{a,b}c}' , [ 'a' , '\\ac' , '\\bc' ] ) ;
51
52
equal ( '{a,\\{a,b}c}' , [ 'ac}' , '{ac}' , 'bc}' ] ) ;
52
53
equal ( '{,eno,thro,ro}ugh' , [ 'ugh' , 'enough' , 'through' , 'rough' ] ) ;
53
- equal ( '{,{,eno,thro,ro}ugh}{,out}' , [ '' , 'out' , 'ugh' , 'ughout' , 'enough' , 'enoughout' , 'through' , 'throughout' , 'rough' , 'roughout' ] ) ;
54
- equal ( '{{,eno,thro,ro}ugh,}{,out}' , [ 'ugh' , 'ughout' , 'enough' , 'enoughout' , 'through' , 'throughout' , 'rough' , 'roughout' , '' , 'out' ] ) ;
54
+ equal ( '{,{,eno,thro,ro}ugh}{,out}' , [
55
+ '' ,
56
+ 'out' ,
57
+ 'ugh' ,
58
+ 'ughout' ,
59
+ 'enough' ,
60
+ 'enoughout' ,
61
+ 'through' ,
62
+ 'throughout' ,
63
+ 'rough' ,
64
+ 'roughout' ,
65
+ ] ) ;
66
+ equal ( '{{,eno,thro,ro}ugh,}{,out}' , [
67
+ 'ugh' ,
68
+ 'ughout' ,
69
+ 'enough' ,
70
+ 'enoughout' ,
71
+ 'through' ,
72
+ 'throughout' ,
73
+ 'rough' ,
74
+ 'roughout' ,
75
+ '' ,
76
+ 'out' ,
77
+ ] ) ;
55
78
equal ( '{,{,a,b}z}{,c}' , [ '' , 'c' , 'z' , 'zc' , 'az' , 'azc' , 'bz' , 'bzc' ] ) ;
56
79
equal ( '{,{,a,b}z}{c,}' , [ 'c' , '' , 'zc' , 'z' , 'azc' , 'az' , 'bzc' , 'bz' ] ) ;
57
80
equal ( '{,{,a,b}z}{,c,}' , [ '' , 'c' , '' , 'z' , 'zc' , 'z' , 'az' , 'azc' , 'az' , 'bz' , 'bzc' , 'bz' ] ) ;
@@ -66,7 +89,7 @@ describe('unit tests from brace-expand', () => {
66
89
equal ( '{,{a,}}{z,c}' , [ 'z' , 'c' , 'az' , 'ac' , 'z' , 'c' ] ) ;
67
90
equal ( '{,{,a}}{z,c}' , [ 'z' , 'c' , 'z' , 'c' , 'az' , 'ac' ] ) ;
68
91
equal ( '{,{,a},}{z,c}' , [ 'z' , 'c' , 'z' , 'c' , 'az' , 'ac' , 'z' , 'c' ] ) ;
69
- equal ( '{{,,a}}{z,c}' , [ '{}z' , '{}c' , '{}z' , '{}c' , '{a}z' , '{a}c' ] ) ;
92
+ equal ( '{{,,a}}{z,c}' , [ '{}z' , '{}c' , '{}z' , '{}c' , '{a}z' , '{a}c' ] ) ;
70
93
equal ( '{{,a},}{z,c}' , [ 'z' , 'c' , 'az' , 'ac' , 'z' , 'c' ] ) ;
71
94
equal ( '{,,a}{z,c}' , [ 'z' , 'c' , 'z' , 'c' , 'az' , 'ac' ] ) ;
72
95
equal ( '{,{,}}{z,c}' , [ 'z' , 'c' , 'z' , 'c' , 'z' , 'c' ] ) ;
@@ -177,4 +200,3 @@ describe('unit tests from brace-expand', () => {
177
200
} ) ;
178
201
} ) ;
179
202
} ) ;
180
-
0 commit comments