@@ -14,9 +14,55 @@ tap.test('match', function (tt) {
14
14
tt . same ( stripFullStack ( rows . toString ( 'utf8' ) ) , [
15
15
'TAP version 13' ,
16
16
'# match' ,
17
- 'ok 1 regex arg must be a regex' ,
18
- 'ok 2 string arg must be a string' ,
19
- 'not ok 3 The input did not match the regular expression /abc/. Input: \'string\'' ,
17
+ 'not ok 1 The "regexp" argument must be an instance of RegExp. Received type string (\'string\')' ,
18
+ ' ---' ,
19
+ ' operator: match' ,
20
+ ' expected: \'[object RegExp]\'' ,
21
+ ' actual: \'[object String]\'' ,
22
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
23
+ ' stack: |-' ,
24
+ ' Error: The "regexp" argument must be an instance of RegExp. Received type string (\'string\')' ,
25
+ ' [... stack stripped ...]' ,
26
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
27
+ ' [... stack stripped ...]' ,
28
+ ' ...' ,
29
+ 'not ok 2 regex arg must not be a string' ,
30
+ ' ---' ,
31
+ ' operator: match' ,
32
+ ' expected: \'[object RegExp]\'' ,
33
+ ' actual: \'[object String]\'' ,
34
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
35
+ ' stack: |-' ,
36
+ ' Error: regex arg must not be a string' ,
37
+ ' [... stack stripped ...]' ,
38
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
39
+ ' [... stack stripped ...]' ,
40
+ ' ...' ,
41
+ 'not ok 3 The "string" argument must be of type string. Received type object ({ abc: 123 })' ,
42
+ ' ---' ,
43
+ ' operator: match' ,
44
+ ' expected: \'string\'' ,
45
+ ' actual: \'object\'' ,
46
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
47
+ ' stack: |-' ,
48
+ ' Error: The "string" argument must be of type string. Received type object ({ abc: 123 })' ,
49
+ ' [... stack stripped ...]' ,
50
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
51
+ ' [... stack stripped ...]' ,
52
+ ' ...' ,
53
+ 'not ok 4 string arg must not be an object' ,
54
+ ' ---' ,
55
+ ' operator: match' ,
56
+ ' expected: \'string\'' ,
57
+ ' actual: \'object\'' ,
58
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
59
+ ' stack: |-' ,
60
+ ' Error: string arg must not be an object' ,
61
+ ' [... stack stripped ...]' ,
62
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
63
+ ' [... stack stripped ...]' ,
64
+ ' ...' ,
65
+ 'not ok 5 The input did not match the regular expression /abc/. Input: \'string\'' ,
20
66
' ---' ,
21
67
' operator: match' ,
22
68
' expected: /abc/' ,
@@ -28,7 +74,7 @@ tap.test('match', function (tt) {
28
74
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
29
75
' [... stack stripped ...]' ,
30
76
' ...' ,
31
- 'not ok 4 "string" does not match /abc/' ,
77
+ 'not ok 6 "string" does not match /abc/' ,
32
78
' ---' ,
33
79
' operator: match' ,
34
80
' expected: /abc/' ,
@@ -40,33 +86,27 @@ tap.test('match', function (tt) {
40
86
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
41
87
' [... stack stripped ...]' ,
42
88
' ...' ,
43
- 'ok 5 The input matched the regular expression /pass$/. Input: \'I will pass\'' ,
44
- 'ok 6 "I will pass" matches /pass$/' ,
89
+ 'ok 7 The input matched the regular expression /pass$/. Input: \'I will pass\'' ,
90
+ 'ok 8 "I will pass" matches /pass$/' ,
45
91
'' ,
46
- '1..6 ' ,
47
- '# tests 6 ' ,
48
- '# pass 4 ' ,
49
- '# fail 2 ' ,
92
+ '1..8 ' ,
93
+ '# tests 8 ' ,
94
+ '# pass 2 ' ,
95
+ '# fail 6 ' ,
50
96
''
51
97
] ) ;
52
98
} ;
53
99
54
100
test . createStream ( ) . pipe ( concat ( tc ) ) ;
55
101
56
102
test ( 'match' , function ( t ) {
57
- t . plan ( 6 ) ;
103
+ t . plan ( 8 ) ;
58
104
59
- t . throws (
60
- function ( ) { t . match ( / a b c / , 'string' ) ; } ,
61
- TypeError ,
62
- 'regex arg must be a regex'
63
- ) ;
105
+ t . match ( / a b c / , 'string' ) ;
106
+ t . match ( / a b c / , 'string' , 'regex arg must not be a string' ) ;
64
107
65
- t . throws (
66
- function ( ) { t . match ( { abc : 123 } , / a b c / ) ; } ,
67
- TypeError ,
68
- 'string arg must be a string'
69
- ) ;
108
+ t . match ( { abc : 123 } , / a b c / ) ;
109
+ t . match ( { abc : 123 } , / a b c / , 'string arg must not be an object' ) ;
70
110
71
111
t . match ( 'string' , / a b c / ) ;
72
112
t . match ( 'string' , / a b c / , '"string" does not match /abc/' ) ;
@@ -86,9 +126,55 @@ tap.test('doesNotMatch', function (tt) {
86
126
tt . same ( stripFullStack ( rows . toString ( 'utf8' ) ) , [
87
127
'TAP version 13' ,
88
128
'# doesNotMatch' ,
89
- 'ok 1 regex arg must be a regex' ,
90
- 'ok 2 string arg must be a string' ,
91
- 'not ok 3 The input was expected to not match the regular expression /string/. Input: \'string\'' ,
129
+ 'not ok 1 The "regexp" argument must be an instance of RegExp. Received type string (\'string\')' ,
130
+ ' ---' ,
131
+ ' operator: doesNotMatch' ,
132
+ ' expected: \'[object RegExp]\'' ,
133
+ ' actual: \'[object String]\'' ,
134
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
135
+ ' stack: |-' ,
136
+ ' Error: The "regexp" argument must be an instance of RegExp. Received type string (\'string\')' ,
137
+ ' [... stack stripped ...]' ,
138
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
139
+ ' [... stack stripped ...]' ,
140
+ ' ...' ,
141
+ 'not ok 2 regex arg must not be a string' ,
142
+ ' ---' ,
143
+ ' operator: doesNotMatch' ,
144
+ ' expected: \'[object RegExp]\'' ,
145
+ ' actual: \'[object String]\'' ,
146
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
147
+ ' stack: |-' ,
148
+ ' Error: regex arg must not be a string' ,
149
+ ' [... stack stripped ...]' ,
150
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
151
+ ' [... stack stripped ...]' ,
152
+ ' ...' ,
153
+ 'not ok 3 The "string" argument must be of type string. Received type object ({ abc: 123 })' ,
154
+ ' ---' ,
155
+ ' operator: doesNotMatch' ,
156
+ ' expected: \'string\'' ,
157
+ ' actual: \'object\'' ,
158
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
159
+ ' stack: |-' ,
160
+ ' Error: The "string" argument must be of type string. Received type object ({ abc: 123 })' ,
161
+ ' [... stack stripped ...]' ,
162
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
163
+ ' [... stack stripped ...]' ,
164
+ ' ...' ,
165
+ 'not ok 4 string arg must not be an object' ,
166
+ ' ---' ,
167
+ ' operator: doesNotMatch' ,
168
+ ' expected: \'string\'' ,
169
+ ' actual: \'object\'' ,
170
+ ' at: Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
171
+ ' stack: |-' ,
172
+ ' Error: string arg must not be an object' ,
173
+ ' [... stack stripped ...]' ,
174
+ ' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
175
+ ' [... stack stripped ...]' ,
176
+ ' ...' ,
177
+ 'not ok 5 The input was expected to not match the regular expression /string/. Input: \'string\'' ,
92
178
' ---' ,
93
179
' operator: doesNotMatch' ,
94
180
' expected: /string/' ,
@@ -100,7 +186,7 @@ tap.test('doesNotMatch', function (tt) {
100
186
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
101
187
' [... stack stripped ...]' ,
102
188
' ...' ,
103
- 'not ok 4 "string" should not match /string/' ,
189
+ 'not ok 6 "string" should not match /string/' ,
104
190
' ---' ,
105
191
' operator: doesNotMatch' ,
106
192
' expected: /string/' ,
@@ -112,7 +198,7 @@ tap.test('doesNotMatch', function (tt) {
112
198
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
113
199
' [... stack stripped ...]' ,
114
200
' ...' ,
115
- 'not ok 5 The input was expected to not match the regular expression /pass$/. Input: \'I will pass\'' ,
201
+ 'not ok 7 The input was expected to not match the regular expression /pass$/. Input: \'I will pass\'' ,
116
202
' ---' ,
117
203
' operator: doesNotMatch' ,
118
204
' expected: /pass$/' ,
@@ -124,7 +210,7 @@ tap.test('doesNotMatch', function (tt) {
124
210
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
125
211
' [... stack stripped ...]' ,
126
212
' ...' ,
127
- 'not ok 6 "I will pass" should not match /pass$/' ,
213
+ 'not ok 8 "I will pass" should not match /pass$/' ,
128
214
' ---' ,
129
215
' operator: doesNotMatch' ,
130
216
' expected: /pass$/' ,
@@ -136,38 +222,37 @@ tap.test('doesNotMatch', function (tt) {
136
222
' at Test.<anonymous> ($TEST/match.js:$LINE:$COL)' ,
137
223
' [... stack stripped ...]' ,
138
224
' ...' ,
225
+ 'ok 9 The input did not match the regular expression /pass$/. Input: \'I will fail\'' ,
226
+ 'ok 10 "I will fail" does not match /pass$/' ,
139
227
'' ,
140
- '1..6 ' ,
141
- '# tests 6 ' ,
228
+ '1..10 ' ,
229
+ '# tests 10 ' ,
142
230
'# pass 2' ,
143
- '# fail 4 ' ,
231
+ '# fail 8 ' ,
144
232
''
145
233
] ) ;
146
234
} ;
147
235
148
236
test . createStream ( ) . pipe ( concat ( tc ) ) ;
149
237
150
238
test ( 'doesNotMatch' , function ( t ) {
151
- t . plan ( 6 ) ;
239
+ t . plan ( 10 ) ;
152
240
153
- t . throws (
154
- function ( ) { t . doesNotMatch ( / a b c / , 'string' ) ; } ,
155
- TypeError ,
156
- 'regex arg must be a regex'
157
- ) ;
241
+ t . doesNotMatch ( / a b c / , 'string' ) ;
242
+ t . doesNotMatch ( / a b c / , 'string' , 'regex arg must not be a string' ) ;
158
243
159
- t . throws (
160
- function ( ) { t . doesNotMatch ( { abc : 123 } , / a b c / ) ; } ,
161
- TypeError ,
162
- 'string arg must be a string'
163
- ) ;
244
+ t . doesNotMatch ( { abc : 123 } , / a b c / ) ;
245
+ t . doesNotMatch ( { abc : 123 } , / a b c / , 'string arg must not be an object' ) ;
164
246
165
247
t . doesNotMatch ( 'string' , / s t r i n g / ) ;
166
248
t . doesNotMatch ( 'string' , / s t r i n g / , '"string" should not match /string/' ) ;
167
249
168
250
t . doesNotMatch ( 'I will pass' , / p a s s $ / ) ;
169
251
t . doesNotMatch ( 'I will pass' , / p a s s $ / , '"I will pass" should not match /pass$/' ) ;
170
252
253
+ t . doesNotMatch ( 'I will fail' , / p a s s $ / ) ;
254
+ t . doesNotMatch ( 'I will fail' , / p a s s $ / , '"I will fail" does not match /pass$/' ) ;
255
+
171
256
t . end ( ) ;
172
257
} ) ;
173
258
} ) ;
0 commit comments