-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreadme_cases.js
442 lines (377 loc) · 13.2 KB
/
readme_cases.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*global regex,test,strictEqual,ok,module*/
module('Readme examples');
test('API Demonstration', function () {
'use strict';
var result;
//### Simple usage with peek()
result = regex()
.literals('abc')
.peek();
strictEqual(result, 'abc', 'Simple abc');
//### Never stop chaining!
var firstCall = false, secondCall = false;
regex()
.literals('abc')
.call(function (curNode) {
firstCall = true;
ok(this === curNode, 'call uses both this and first func arg');
strictEqual(curNode.peek(), 'abc', 'Still just abc');
})
.literals('def')
.call(function (curNode) {
secondCall = true;
strictEqual(curNode.peek(), 'abcdef', 'Added def');
});
ok(firstCall, 'Call was invoked');
ok(secondCall, 'Second call was invoked');
//### Special Flags
result = regex()
.f.digit()
.f.whitespace()
.peek();
strictEqual(result, '\\d\\s', 'Basic flags');
//### Capture Groups
result = regex()
.literals('aaa')
.capture()
.peek();
strictEqual(result, '(aaa)', 'capture()');
result = regex()
.literals('aaa')
.call(function (curNode) {
strictEqual(curNode.peek(), 'aaa', 'Simple aaa before repeat');
})
.repeat(1, 3)
.peek();
strictEqual(result, '(?:aaa){1,3}', 'repeat(1, 3)');
//### Simple Grouping
result = regex()
.sequence()
.literals('aaa')
.f.digit()
.literals('bbb')
.endSequence()
.repeat()
.peek(); // Will return '(?:aaa\dbbb)*'
strictEqual(result, '(?:aaa\\dbbb)*', 'Simple grouping');
result = regex().sequence('aaa', regex.flags.digit(), 'bbb')
.repeat()
.peek(); // Will return '(?:aaa\dbbb)*'
strictEqual(result, '(?:aaa\\dbbb)*', 'Simple grouping, alt form');
//### Character Sets
result = regex()
.any('abcdefg')
.peek(); // Will return '[abcdefg]'
strictEqual(result, '[abcdefg]', 'any()');
result = regex()
.any()
.literals('abc')
.f.digit()
.endAny()
.peek(); // Will return '[abc\d]'
strictEqual(result, '[abc\\d]', 'any() with f.digit()');
result = regex()
.none()
.literals('abc')
.f.whitespace()
.endNone()
.peek(); // Will return '[^abc\s]'
strictEqual(result, '[^abc\\s]', 'none()');
//### Or
result = regex()
.either()
.literals('abc')
.literals('def')
.endEither()
.peek(); // Will return 'abc|def'
strictEqual(result, 'abc|def', 'either()');
result = regex()
.either('abc', regex.any('def'))
.peek(); // Will return 'abc|[def]'
strictEqual(result, 'abc|[def]', 'either(lit, any(lit))');
//### Macros
result = regex.create(); // Alternate form of regex()
ok(result, 'regex.create() returns something');
result = regex
.addMacro('any-quote') // Adding a global macro for single or double quote
.any('\'"')
.endMacro()
.create()
.macro('any-quote')
.f.dot()
.repeat()
.macro('any-quote')
.peek(); // Will return '['"].*['"]'
strictEqual(result, '[\'"].*[\'"]', 'any-quote macro');
result = regex
.addMacro('quote')
.any('\'"')
.endMacro()
.create()
.addMacro('quote') // Local macros override global ones
.literal('"') // Here, restricting to double quote only
.endMacro()
.macro('quote')
.f.dot()
.repeat()
.macro('quote')
.peek(); // Will return '".*"'
strictEqual(result, '".*"', 'local macros override global');
//### Followed By
result = regex()
.literals('aaa')
.followedBy('bbb')
.peek(); // Will return 'aaa(?=bbb)'
strictEqual(result, 'aaa(?=bbb)', 'followedBy()');
result = regex()
.literals('ccc')
.notFollowedBy('ddd')
.peek(); // Will return 'ccc(?!ddd)
strictEqual(result, 'ccc(?!ddd)', 'notFollowedBy()');
});
test('Named Capture Groups & Exec', function () {
'use strict';
regex()
.flags.anything()
.repeat()
.capture('preamble')
.either('cool!', 'awesome!')
.call(function (rb) {
strictEqual(rb.peek(), '(.*)(?:cool!|awesome!)');
})
.capture('exclamation')
.call(function (rb) {
strictEqual(rb.peek(), '(.*)(cool!|awesome!)');
strictEqual(rb.exec('this is cool! isn\'t it?').match, 'this is cool!');
strictEqual(rb.exec('this is cool! isn\'t it?').preamble, 'this is ');
strictEqual(rb.exec('this is cool! isn\'t it?').exclamation, 'cool!');
strictEqual(rb.exec('this is also awesome!').match, 'this is also awesome!');
strictEqual(rb.exec('this is also awesome!').preamble, 'this is also ');
strictEqual(rb.exec('this is also awesome!').exclamation, 'awesome!');
});
});
test('Named Backreferences', function () {
'use strict';
regex()
.flags.anything()
.repeat(1)
.capture('anything')
.literal('-')
.reference('anything')
.call(function (rb) {
strictEqual(rb.peek(), '(.+)-\\1');
strictEqual(rb.exec('whatever-whatever').anything, 'whatever');
ok(!rb.test('whatever-whatev'));
});
});
test('Complex Examples', function () {
'use strict';
var result = '';
//### Example 1
var portionWithoutQuotes = '25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?';
var portionWithQuotes = '(' + portionWithoutQuotes + ')';
result = regex()
.addMacro('0-255')
.either()
.sequence()
.literals('25')
.anyFrom('0', '5')
.endSequence()
.sequence()
.literal('2')
.anyFrom('0', '4')
.anyFrom('0', '9')
.endSequence()
.sequence()
.any('01').optional()
.anyFrom('0', '9')
.anyFrom('0', '9').optional()
.endSequence()
.endEither()
.endMacro()
.macro('0-255')
.call(function (rb) {
strictEqual(rb.peek(), portionWithoutQuotes, 'invoking macro gave nice rendering');
})
.capture()
.call(function (rb) {
strictEqual(rb.peek(), portionWithQuotes, 'and got captured the same');
})
.literal('.')
.call(function (rb) {
strictEqual(rb.peek(), portionWithQuotes + '\\.', 'and didnt go crazy once a literal was added');
})
.macro('0-255')
.call(function (rb) {
var peeked = rb.peek();
strictEqual(peeked, portionWithQuotes + '\\.(?:' + portionWithoutQuotes + ')', 'and once second macro was added, appended in straightforward manner (though, it is a temporary TYPE_OR condition)');
})
.capture()
.call(function (rb) {
var peeked = rb.peek();
strictEqual(peeked, portionWithQuotes + '\\.' + portionWithQuotes, 'same with second capture');
})
.literal('.')
.call(function (rb) {
var peeked = rb.peek();
strictEqual(peeked, portionWithQuotes + '\\.' + portionWithQuotes + '\\.', 'same with second literal');
})
.macro('0-255').capture()
.literal('.')
.macro('0-255').capture()
.peek();
// http://www.regular-expressions.info/examples.html
var ipAddrRegex = '(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)';
strictEqual(result, ipAddrRegex, 'IP Address Regex');
result = regex
.addMacro('0-255',
regex.either(
regex.sequence(
'25',
regex.anyFrom('0', '5')),
regex.sequence(
'2',
regex.anyFrom('0', '4'),
regex.anyFrom('0', '9')),
regex.sequence(
regex.any('01').optional(),
regex.anyFrom('0', '9'),
regex.anyFrom('0', '9').optional())))
.create()
.sequence(
regex.macro('0-255').capture(),
'.',
regex.macro('0-255').capture(),
'.',
regex.macro('0-255').capture(),
'.',
regex.macro('0-255').capture())
.peek();
strictEqual(result, ipAddrRegex, 'IP Address, Alternate usage form');
//UNLISTED
result = regex()
.addMacro('dept-prefix')
.either()
.literals('SH')
.literals('RE')
.literals('MF')
.endEither()
.call(function (rb) {
strictEqual(rb.peek(), 'SH|RE|MF');
})
.endMacro()
.addMacro('date')
.either()
.sequence()
.literals('197')
.anyFrom('1', '9')
.endSequence()
.sequence()
.literals('19')
.any('89')
.f.digit()
.endSequence()
.sequence()
.anyFrom('2', '9')
.f.digit().repeat(3, 3)
.endSequence()
.endEither()
.literal('-')
.either()
.sequence()
.literal('0')
.anyFrom('1', '9')
.endSequence()
.sequence()
.literal('1')
.any('012')
.endSequence()
.endEither()
.literal('-')
.either()
.sequence()
.literal('0')
.anyFrom('1', '9')
.endSequence()
.sequence()
.any('12')
.f.digit()
.endSequence()
.sequence()
.literal('3')
.any('01')
.endSequence()
.endEither()
.call(function (rb) {
strictEqual(rb.peek(), '(?:197[1-9]|19[89]\\d|[2-9]\\d{3})-(?:0[1-9]|1[012])-(?:0[1-9]|[12]\\d|3[01])', 'date portion of the overall macro');
})
.endMacro()
.addMacro('issuenum')
.notFollowedBy()
.literal('0')
.repeat(5, 5)
.endNotFollowedBy()
.f.digit()
.repeat(5, 5)
.call(function (rb) {
strictEqual(rb.peek(), '(?!0{5})\\d{5}', 'issue number portion');
})
.endMacro()
.macro('dept-prefix').capture()
.literal('-')
.macro('date').capture()
.literal('-')
.macro('issuenum').capture()
.peek();
var businessLogicRegex = '(SH|RE|MF)-((?:197[1-9]|19[89]\\d|[2-9]\\d{3})-(?:0[1-9]|1[012])-(?:0[1-9]|[12]\\d|3[01]))-((?!0{5})\\d{5})';
strictEqual(result, businessLogicRegex, 'Business-like logic regex');
result = regex
// Setting up our macros...
.addMacro('dept-prefix', regex.either('SH', 'RE', 'MF'))
.addMacro('date',
regex.either(
regex.sequence(
'197',
regex.anyFrom('1', '9')),
regex.sequence(
'19',
regex.any('89'),
regex.flags.digit()),
regex.sequence(
regex.anyFrom('2', '9'),
regex.flags.digit().repeat(3, 3))),
'-',
regex.either(
regex.sequence(
'0',
regex.anyFrom('1', '9')),
regex.sequence(
'1',
regex.any('012'))),
'-',
regex.either(
regex.sequence(
'0',
regex.anyFrom('1', '9')),
regex.sequence(
regex.any('12'),
regex.flags.digit()),
regex.sequence(
'3',
regex.any('01'))))
.addMacro('issuenum',
regex.notFollowedBy()
.literal('0')
.repeat(5, 5),
regex.flags.digit()
.repeat(5, 5))
// Macros are setup, let's create our actual regex now:
.create()
.macro('dept-prefix').capture()
.literal('-')
.macro('date').capture()
.literal('-')
.macro('issuenum').capture()
.peek(); // Returns the string shown above this code example
strictEqual(result, businessLogicRegex, 'Business-like logic regex, alternate usage form');
});