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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
|
# vim:set ft= ts=4 sw=4 et fdm=marker:
use Test::Nginx::Socket::Lua::Stream;
#worker_connections(1014);
#master_on();
#workers(2);
#log_level('warn');
repeat_each(2);
plan tests => repeat_each() * (blocks() * 3);
#no_diff();
no_long_string();
run_tests();
__DATA__
=== TEST 1: sanity
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([0-9]+)")
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
=== TEST 2: escaping sequences
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", [[(\d+)]])
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
=== TEST 3: single capture
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([0-9]{2})[0-9]+")
if m then
ngx.say(m[0])
ngx.say(m[1])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
12
--- no_error_log
[error]
=== TEST 4: multiple captures
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([a-z]+).*?([0-9]{2})[0-9]+", "")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
else
ngx.say("not matched!")
end
}
--- stream_response
hello, 1234
hello
12
--- no_error_log
[error]
=== TEST 5: multiple captures (with o)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([a-z]+).*?([0-9]{2})[0-9]+", "o")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
else
ngx.say("not matched!")
end
}
--- stream_response
hello, 1234
hello
12
--- no_error_log
[error]
=== TEST 6: not matched
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "foo")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
not matched: nil
--- no_error_log
[error]
=== TEST 7: case sensitive by default
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "HELLO")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
not matched: nil
--- no_error_log
[error]
=== TEST 8: case insensitive
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "HELLO", "i")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
hello
--- no_error_log
[error]
=== TEST 9: UTF-8 mode
--- stream_server_config
content_by_lua_block {
rc, err = pcall(ngx.re.match, "hello章亦春", "HELLO.{2}", "iu")
if not rc then
ngx.say("FAIL: ", err)
return
end
local m = err
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response_like chop
^(?:FAIL: bad argument \#2 to '\?' \(pcre_compile\(\) failed: this version of PCRE is not compiled with PCRE_UTF8 support in "HELLO\.\{2\}" at "HELLO\.\{2\}"\)|hello章亦)$
--- no_error_log
[error]
=== TEST 10: multi-line mode (^ at line head)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello\nworld", "^world", "m")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
world
--- no_error_log
[error]
=== TEST 11: multi-line mode (. does not match \n)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello\nworld", ".*", "m")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
hello
--- no_error_log
[error]
=== TEST 12: single-line mode (^ as normal)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello\nworld", "^world", "s")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
not matched: nil
--- no_error_log
[error]
=== TEST 13: single-line mode (dot all)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello\nworld", ".*", "s")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
hello
world
--- no_error_log
[error]
=== TEST 14: extended mode (ignore whitespaces)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello\nworld", [[\w \w]], "x")
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
he
--- no_error_log
[error]
=== TEST 15: bad pattern
--- stream_server_config
content_by_lua_block {
local m, err = ngx.re.match("hello\nworld", "(abc")
if m then
ngx.say(m[0])
else
if err then
ngx.say("error: ", err)
else
ngx.say("not matched: ", m)
end
end
}
--- stream_response eval
$Test::Nginx::Util::PcreVersion == 2 ?
"error: pcre2_compile() failed: missing closing parenthesis in \"(abc\"\n"
:
"error: pcre_compile() failed: missing ) in \"(abc\"\n"
--- no_error_log
[error]
=== TEST 16: bad option
--- stream_server_config
content_by_lua_block {
rc, m = pcall(ngx.re.match, "hello\nworld", ".*", "Hm")
if rc then
if m then
ngx.say(m[0])
else
ngx.say("not matched: ", m)
end
else
ngx.say("error: ", m)
end
}
--- stream_response_like chop
error: .*?unknown flag "H" \(flags "Hm"\)
=== TEST 17: extended mode (ignore whitespaces)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, world", "(world)|(hello)", "x")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
else
ngx.say("not matched: ", m)
end
}
--- stream_response
hello
false
hello
--- no_error_log
[error]
=== TEST 18: optional trailing captures
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([0-9]+)(h?)")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
else
ngx.say("not matched!")
end
}
--- stream_response eval
"1234
1234
"
--- no_error_log
[error]
=== TEST 19: anchored match (failed)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", "([0-9]+)", "a")
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
not matched!
--- no_error_log
[error]
=== TEST 20: anchored match (succeeded)
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("1234, hello", "([0-9]+)", "a")
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
=== TEST 21: match with ctx but no pos
--- stream_server_config
content_by_lua_block {
local ctx = {}
m = ngx.re.match("1234, hello", "([0-9]+)", "", ctx)
if m then
ngx.say(m[0])
ngx.say(ctx.pos)
else
ngx.say("not matched!")
ngx.say(ctx.pos)
end
}
--- stream_response
1234
5
--- no_error_log
[error]
=== TEST 22: match with ctx and a pos
--- stream_server_config
content_by_lua_block {
local ctx = { pos = 3 }
m = ngx.re.match("1234, hello", "([0-9]+)", "", ctx)
if m then
ngx.say(m[0])
ngx.say(ctx.pos)
else
ngx.say("not matched!")
ngx.say(ctx.pos)
end
}
--- stream_response
34
5
--- no_error_log
[error]
=== TEST 23: match (look-behind assertion)
--- stream_server_config
content_by_lua_block {
local ctx = {}
local m = ngx.re.match("{foobarbaz}", "(?<=foo)bar|(?<=bar)baz", "", ctx)
ngx.say(m and m[0])
m = ngx.re.match("{foobarbaz}", "(?<=foo)bar|(?<=bar)baz", "", ctx)
ngx.say(m and m[0])
}
--- stream_response
bar
baz
--- no_error_log
[error]
=== TEST 24: escaping sequences
--- stream_server_config
content_by_lua_file html/a.lua;
--- user_files
>>> a.lua
local uri = "<impact>2</impact>"
local regex = '(?:>[\\w\\s]*</?\\w{2,}>)';
ngx.say("regex: ", regex)
m = ngx.re.match(uri, regex, "oi")
if m then
ngx.say("[", m[0], "]")
else
ngx.say("not matched!")
end
--- stream_response
regex: (?:>[\w\s]*</?\w{2,}>)
[>2</impact>]
--- no_error_log
[error]
=== TEST 25: long brackets
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", [[\d+]])
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
=== TEST 26: bad pattern
--- stream_server_config
content_by_lua_block {
local m, err = ngx.re.match("hello, 1234", "([0-9]+")
if m then
ngx.say(m[0])
else
if err then
ngx.say("error: ", err)
else
ngx.say("not matched!")
end
end
}
--- stream_response eval
$Test::Nginx::Util::PcreVersion == 2 ?
"error: pcre2_compile\(\) failed: missing closing parenthesis in \"\([0-9]+\"\n"
:
"error: pcre_compile\(\) failed: missing \) in \"\([0-9]+\"\n"
--- no_error_log
[error]
=== TEST 27: long brackets containing [...]
--- stream_server_config
content_by_lua_block {
m = ngx.re.match("hello, 1234", [[([0-9]+)]])
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
=== TEST 28: bug report (github issue #72)
--- stream_server_config
content_by_lua_block {
local m, err = ngx.re.match("hello", "hello", "j")
ngx.say("done: ", m and "yes" or "no")
}
--- stream_server_config2
content_by_lua_block {
ngx.re.match("hello", "world", "j")
ngx.say("done: ", m and "yes" or "no")
}
--- stream_response
done: yes
done: no
--- no_error_log
[error]
=== TEST 29: non-empty subject, empty pattern
--- stream_server_config
content_by_lua_block {
local ctx = {}
local m = ngx.re.match("hello, 1234", "", "", ctx)
if m then
ngx.say("pos: ", ctx.pos)
ngx.say("m: ", m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
pos: 1
m:
--- no_error_log
[error]
=== TEST 30: named subpatterns w/ extraction
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("hello, 1234", "(?<first>[a-z]+), [0-9]+")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m.first)
ngx.say(m.second)
else
ngx.say("not matched!")
end
}
--- stream_response
hello, 1234
hello
hello
nil
--- no_error_log
[error]
=== TEST 31: duplicate named subpatterns w/ extraction
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("hello, 1234", "(?<first>[a-z]+), (?<first>[0-9]+)", "D")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
ngx.say(table.concat(m.first,"-"))
else
ngx.say("not matched!")
end
}
--- stream_response
hello, 1234
hello
1234
hello-1234
--- no_error_log
[error]
=== TEST 32: named captures are empty strings
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("1234", "(?<first>[a-z]*)([0-9]+)")
if m then
ngx.say(m[0])
ngx.say(m.first)
ngx.say(m[1])
ngx.say(m[2])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
1234
--- no_error_log
[error]
=== TEST 33: named captures are nil
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("hello, world", "(world)|(hello)|(?<named>howdy)")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
ngx.say(m[3])
ngx.say(m["named"])
else
ngx.say("not matched!")
end
}
--- stream_response
hello
false
hello
false
false
--- no_error_log
[error]
=== TEST 34: duplicate named subpatterns
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("hello, world",
[[(?<named>\w+), (?<named>\w+)]],
"D")
if m then
ngx.say(m[0])
ngx.say(m[1])
ngx.say(m[2])
ngx.say(table.concat(m.named,"-"))
else
ngx.say("not matched!")
end
}
--- stream_response
hello, world
hello
world
hello-world
--- no_error_log
[error]
=== TEST 35: Javascript compatible mode
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("章", [[\u7AE0]], "uJ")
if m then
ngx.say("matched: ", m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
matched: 章
--- no_error_log
[error]
=== TEST 36: empty duplicate captures
--- stream_server_config
content_by_lua_block {
local target = 'test'
local regex = '^(?:(?<group1>(?:foo))|(?<group2>(?:bar))|(?<group3>(?:test)))$'
-- Note the D here
local m = ngx.re.match(target, regex, 'D')
ngx.say(type(m.group1))
ngx.say(type(m.group2))
}
--- stream_response
nil
nil
--- no_error_log
[error]
=== TEST 37: bad UTF-8
--- stream_server_config
content_by_lua_block {
local target = "你好"
local regex = "你好"
-- Note the D here
local m, err = ngx.re.match(string.sub(target, 1, 4), regex, "u")
if err then
ngx.say("error: ", err)
return
end
if m then
ngx.say("matched: ", m[0])
else
ngx.say("not matched")
end
}
--- stream_response eval
$Test::Nginx::Util::PcreVersion == 2 ?
"error: pcre_exec\(\) failed: -4\n"
:
"error: pcre_exec\(\) failed: -10\n"
--- no_error_log
[error]
=== TEST 38: UTF-8 mode without UTF-8 sequence checks
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("你好", ".", "U")
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stap
probe process("$LIBPCRE_PATH").function("pcre_compile") {
printf("compile opts: %x\n", $options)
}
probe process("$LIBPCRE_PATH").function("pcre_exec") {
printf("exec opts: %x\n", $options)
}
--- stap_out
compile opts: 800
exec opts: 2000
--- stream_response
你
--- no_error_log
[error]
=== TEST 39: UTF-8 mode with UTF-8 sequence checks
--- stream_server_config
content_by_lua_block {
local m = ngx.re.match("你好", ".", "u")
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stap
probe process("$LIBPCRE_PATH").function("pcre_compile") {
printf("compile opts: %x\n", $options)
}
probe process("$LIBPCRE_PATH").function("pcre_exec") {
printf("exec opts: %x\n", $options)
}
--- stap_out
compile opts: 800
exec opts: 0
--- stream_response
你
--- no_error_log
[error]
=== TEST 40: just hit match limit
--- stream_config
lua_regex_match_limit 5000;
--- stream_server_config
content_by_lua_file html/a.lua;
--- user_files
>>> a.lua
local re = [==[(?i:([\s'\"`´’‘\(\)]*)?([\d\w]+)([\s'\"`´’‘\(\)]*)?(?:=|<=>|r?like|sounds\s+like|regexp)([\s'\"`´’‘\(\)]*)?\2|([\s'\"`´’‘\(\)]*)?([\d\w]+)([\s'\"`´’‘\(\)]*)?(?:!=|<=|>=|<>|<|>|\^|is\s+not|not\s+like|not\s+regexp)([\s'\"`´’‘\(\)]*)?(?!\6)([\d\w]+))]==]
s = string.rep([[ABCDEFG]], 10)
local start = ngx.now()
local res, err = ngx.re.match(s, re, "o")
--[[
ngx.update_time()
local elapsed = ngx.now() - start
ngx.say(elapsed, " sec elapsed.")
]]
if not res then
if err then
ngx.say("error: ", err)
return
end
ngx.say("failed to match")
return
end
--- stream_response eval
# lua_regex_match_limit uses pcre_extra->match_limit in the PCRE,
# but PCRE2 replaces this with pcre2_set_match_limit interface,
# which has different effects.
$Test::Nginx::Util::PcreVersion == 2 ?
"failed to match\n"
:
"error: pcre_exec() failed: -8\n"
=== TEST 41: just not hit match limit
--- stream_config
lua_regex_match_limit 5700;
--- stream_server_config
content_by_lua_file html/a.lua;
--- user_files
>>> a.lua
local re = [==[(?i:([\s'\"`´’‘\(\)]*)?([\d\w]+)([\s'\"`´’‘\(\)]*)?(?:=|<=>|r?like|sounds\s+like|regexp)([\s'\"`´’‘\(\)]*)?\2|([\s'\"`´’‘\(\)]*)?([\d\w]+)([\s'\"`´’‘\(\)]*)?(?:!=|<=|>=|<>|<|>|\^|is\s+not|not\s+like|not\s+regexp)([\s'\"`´’‘\(\)]*)?(?!\6)([\d\w]+))]==]
s = string.rep([[ABCDEFG]], 10)
local start = ngx.now()
local res, err = ngx.re.match(s, re, "o")
--[[
ngx.update_time()
local elapsed = ngx.now() - start
ngx.say(elapsed, " sec elapsed.")
]]
if not res then
if err then
ngx.say("error: ", err)
return
end
ngx.say("failed to match")
return
end
--- stream_response
failed to match
--- no_error_log
[error]
=== TEST 42: extra table argument
--- stream_server_config
content_by_lua_block {
local res = {}
local s = "hello, 1234"
m = ngx.re.match(s, [[(\d)(\d)]], "o", nil, res)
if m then
ngx.say("1: m size: ", #m)
ngx.say("1: res size: ", #res)
else
ngx.say("1: not matched!")
end
m = ngx.re.match(s, [[(\d)]], "o", nil, res)
if m then
ngx.say("2: m size: ", #m)
ngx.say("2: res size: ", #res)
else
ngx.say("2: not matched!")
end
}
--- stream_response
1: m size: 2
1: res size: 2
2: m size: 2
2: res size: 2
--- no_error_log
[error]
=== TEST 43: init_by_lua
--- stream_config
init_by_lua_block {
m = ngx.re.match("hello, 1234", [[(\d+)]])
--- stream_server_config
content_by_lua_block {
if m then
ngx.say(m[0])
else
ngx.say("not matched!")
end
}
--- stream_response
1234
--- no_error_log
[error]
--- SKIP
|