blob: 18b7404cb371fffdbfae6cb39ad6a6c6072e7e3c (
plain)
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
|
require "vnd.dovecot.testsuite";
require "regex";
require "variables";
test_set "message" text:
From: Andy Howell <AndyHowell@example.com>
Sender: antlr-interest-bounces@ant.example.com
To: Stephan Bosch <stephan@example.org>
Subject: [Dovecot] Sieve regex match problem
Hi,
I is broken.
.
;
test "Basic match values 1" {
if header :regex ["Sender"] ["([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"] {
if not string :is "${1}" "antlr" {
test_fail "first match value is not correct";
}
if not string :is "${2}" "interest" {
test_fail "second match value is not correct";
}
if not string :is "${3}" "-bounces" {
test_fail "third match value is not correct";
}
if string :is "${4}" "-bounces" {
test_fail "fourth match contains third value";
}
} else {
test_fail "failed to match";
}
}
test "Basic match values 2" {
if header :regex ["Sender"] ["(.*>[ \\t]*,?[ \\t]*)?([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"] {
if not string :is "${1}" "" {
test_fail "first match value is not correct: ${1}";
}
if not string :is "${2}" "antlr" {
test_fail "second match value is not correct: ${2}";
}
if not string :is "${3}" "interest" {
test_fail "third match value is not correct: ${3}";
}
if not string :is "${4}" "-bounces" {
test_fail "fourth match value is not correct: ${4}";
}
if string :is "${5}" "-bounces" {
test_fail "fifth match contains fourth value: ${5}";
}
} else {
test_fail "failed to match";
}
}
|