blob: 345f8309b389da4178f637e1262278fb2a4ebd8f (
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
|
require "vnd.dovecot.testsuite";
require "include";
require "variables";
global "result";
set "result" "";
test "Included Optional" {
include :optional "optional-1";
include :optional "optional-2";
if not string "${result}" " ONE TWO" {
test_fail "unexpected result value: ${result}";
}
# missing
include :optional "optional-3";
if not string "${result}" " ONE TWO" {
test_fail "unexpected result value after missing script: ${result}";
}
}
test "Included Optional - Binary" {
if not test_script_compile "execute/optional.sieve" {
test_fail "failed to compile sieve script";
}
test_binary_save "optional";
test_binary_load "optional";
if not test_script_run {
test_fail "failed to execute sieve script";
}
if not string "${result}" " ONE TWO" {
test_fail "unexpected result value: ${result}";
}
}
|