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
|
regexp {
SA_BODY_WORD_BOUNDARY_ON_NEWLINE {
re = '/\\bhello\\s/{sa_body}',
score = 0.0,
description = 'Test if word boundary works correctly on sa_body regexes',
group = 'body',
}
SA_BODY_WORD {
re = '/hello/{sa_body}',
score = 0.0,
description = 'Test if regex works at all in sa_body',
group = 'body',
}
SA_BODY_WORD_WITH_NEWLINE {
re = '/helloworld/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should not work!)',
group = 'body',
}
SA_BODY_WORD_WITH_SPACE {
re = '/hello world/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should work - newline is replaced with space)',
group = 'body',
}
SA_BODY_WORD_WITH_SPACE_BOUNDARIES {
re = '/\\bhello world\\b/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should work - newline is replaced with space)',
group = 'body',
}
SA_BODY_WORD_WITH_SPACE_BOUNDARIES_2 {
re = '/\\shello\\sworld\\s/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should work - newline is replaced with space)',
group = 'body',
}
SA_BODY_WORD_WITH_SPACE_BOUNDARIES_3 {
re = '/\\shello\\sworld\\sthis\\s/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should work - newline is replaced with space)',
group = 'body',
}
SA_BODY_WORD_WITH_SPACE_AND_DOT {
re = '/\\bword\\.\\sagain\\b/{sa_body}',
score = 0.0,
description = 'Test if regex matches word separated with newline (should work - newline is replaced with space)',
group = 'body',
}
}
options {
dynamic_conf = "${TESTDIR}/configs/dynamic.conf";
}
lua = "${TESTDIR}/lua/regex_test.lua"
|