blob: e11de64b5417d608857aaf68768047d88ddc7c20 (
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
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
|
require "vnd.dovecot.testsuite";
/*
* ## RFC 5228, Section 3.1. Control if (page 21) ##
*/
test_set "message" text:
From: stephan@example.org
To: test@dovecot.example.net
Cc: friep@example.com
Subject: Test
Test!
.
;
/*
* Basic functionality
*/
/* "The semantics are similar to those of any of the many other
* programming languages these control structures appear in. When the
* interpreter sees an "if", it evaluates the test associated with it.
* If the test is true, it executes the block associated with it.
*
* If the test of the "if" is false, it evaluates the test of the first
* "elsif" (if any). If the test of "elsif" is true, it runs the
* elsif's block. An elsif may be followed by an elsif, in which case,
* the interpreter repeats this process until it runs out of elsifs.
*
* When the interpreter runs out of elsifs, there may be an "else" case.
* If there is, and none of the if or elsif tests were true, the
* interpreter runs the else's block.
*
* This provides a way of performing exactly one of the blocks in the
* chain.
* "
*/
/*
* TEST: Basic functionality: if true/false
*/
test "Basic functionality: if true/false" {
/* Static */
if true {
/* Correct */
} else {
test_fail "executed wrong alternative for static true";
}
if false {
test_fail "executed wrong alternative for static false";
} else {
/* Correct */
}
/* Dynamic */
if exists "to" {
/* Correct */
} else {
test_fail "executed wrong alternative for dynamic true";
}
if exists "flierp" {
test_fail "executed wrong alternative for dynamic false";
} else {
/* Correct */
}
}
/*
* TEST: Basic functionality: if not true/false
*/
test "Basic functionality: if not true/false" {
/* Static */
if not true {
test_fail "executed wrong alternative for static not true";
} else {
/* Correct */
}
if not false {
/* Correct */
} else {
test_fail "executed wrong alternative for static not false";
}
/* Dynamic */
if not exists "to" {
test_fail "executed wrong alternative for dynamic not true";
} else {
/* Correct */
}
if not exists "flierp" {
/* Correct */
} else {
test_fail "executed wrong alternative for dynamic not false";
}
}
/*
* TEST: Basic functionality: elseif true/false
*/
test "Basic functionality: elseif true/false" {
/* Static */
if true {
/* Correct */
} elsif true {
test_fail "executed wrong alternative for static true-true (elsif)";
} else {
test_fail "executed wrong alternative for static true-true (else)";
}
if true {
/* Correct */
} elsif false {
test_fail "executed wrong alternative for static true-false (elsif)";
} else {
test_fail "executed wrong alternative for static true-false (else)";
}
if false {
test_fail "executed wrong alternative for static false-true (if)";
} elsif true {
/* Correct */
} else {
test_fail "executed wrong alternative for static false-false (else)";
}
if false {
test_fail "executed wrong alternative for static false-false (if)";
} elsif false {
test_fail "executed wrong alternative for static false-false (elsif)";
} else {
/* Correct */
}
/* Dynamic */
if address :is "from" "stephan@example.org" {
/* Correct */
} elsif address :contains "from" "stephan" {
test_fail "executed wrong alternative for dynamic true-true (elsif)";
} else {
test_fail "executed wrong alternative for dynamic true-true (else)";
}
if address :is "from" "stephan@example.org" {
/* Correct */
} elsif address :is "from" "frop@example.com" {
test_fail "executed wrong alternative for dynamic true-false (elsif)";
} else {
test_fail "executed wrong alternative for dynamic true-false (else)";
}
if address :is "from" "tss@example.net" {
test_fail "executed wrong alternative for dynamic false-true (if)";
} elsif address :is "from" "stephan@example.org" {
/* Correct */
} else {
test_fail "executed wrong alternative for dynamic false-true(else)";
}
if address :is "from" "tss@example.net" {
test_fail "executed wrong alternative for dynamic false-false (if)";
} elsif address :is "to" "stephan@example.org" {
test_fail "executed wrong alternative for dynamic false-false (elsif)";
} else {
/* Correct */
}
/* Static/Dynamic */
if true {
/* Correct */
} elsif address :contains "from" "stephan" {
test_fail "executed wrong alternative for first-static true-true (elsif)";
} else {
test_fail "executed wrong alternative for first-static true-true (else)";
}
if address :is "from" "stephan@example.org" {
/* Correct */
} elsif true {
test_fail "executed wrong alternative for second-static true-true (elsif)";
} else {
test_fail "executed wrong alternative for second-static true-true (else)";
}
if true {
/* Correct */
} elsif address :is "from" "frop@example.com" {
test_fail "executed wrong alternative for first-static true-false (elsif)";
} else {
test_fail "executed wrong alternative for first-static true-false (else)";
}
if address :is "from" "stephan@example.org" {
/* Correct */
} elsif false {
test_fail "executed wrong alternative for second-static true-false (elsif)";
} else {
test_fail "executed wrong alternative for second-static true-false (else)";
}
if false {
test_fail "executed wrong alternative for first-static false-true (if)";
} elsif address :is "from" "stephan@example.org" {
/* Correct */
} else {
test_fail "executed wrong alternative for first-static false-true(else)";
}
if address :is "from" "tss@example.net" {
test_fail "executed wrong alternative for second-static false-true (if)";
} elsif true {
/* Correct */
} else {
test_fail "executed wrong alternative for second-static false-true(else)";
}
if false {
test_fail "executed wrong alternative for first-static false-false (if)";
} elsif address :is "to" "stephan@example.org" {
test_fail "executed wrong alternative for first-static false-false (elsif)";
} else {
/* Correct */
}
if address :is "from" "tss@example.net" {
test_fail "executed wrong alternative for second-static false-false (if)";
} elsif false {
test_fail "executed wrong alternative for second-static false-false (elsif)";
} else {
/* Correct */
}
}
/*
* TEST: Basic functionality: nesting
*/
test "Basic functionality: nesting" {
/* Static */
if true {
if true {
if false {
test_fail "chose wrong static outcome: true->true->false";
} else {
/* Correct */
}
} else {
test_fail "chose wrong static outcome: true->false";
}
} elsif true {
if false {
test_fail "chose wrong static outcome: false->true->false";
} elsif true {
test_fail "chose wrong static outcome: false->true->true";
}
} else {
test_fail "chose wrong static outcome: false->false";
}
/* Dynamic */
if exists "to" {
if exists "from" {
if exists "friep" {
test_fail "chose wrong dynamic outcome: true->true->false";
} else {
/* Correct */
}
} else {
test_fail "chose wrong dynamic outcome: true->false";
}
} elsif exists "cc" {
if exists "frop" {
test_fail "chose wrong dynamic outcome: false->true->false";
} elsif exists "from" {
test_fail "chose wrong dynamic outcome: false->true->true";
}
} else {
test_fail "chose wrong dynamic outcome: false->false";
}
}
|