summaryrefslogtreecommitdiffstats
path: root/pigeonhole/tests/plugins/extprograms/pipe/errors.svtest
blob: af36b91127e41563ca5ec20d0ac3124ce8480734 (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
require "vnd.dovecot.testsuite";
require "variables";

require "relational";
require "comparator-i;ascii-numeric";

/*
 * Command syntax
 */

test "Command syntax" {
        if test_script_compile "errors/syntax.sieve" {
                test_fail "compile should have failed";
        }

        if not test_error :count "eq" :comparator "i;ascii-numeric" "8" {
                test_fail "wrong number of errors reported";
        }
}

/* Unknown program */

test_set "message" text:
From: stephan@example.com
To: pipe@example.net
Subject: Frop!

Frop!
.
;

test_config_set "sieve_pipe_bin_dir" "${tst.path}/../bin";
test_config_reload :extension "vnd.dovecot.pipe";
test_result_reset;

test "Unknown program" {
	if not test_script_compile "errors/unknown-program.sieve" {
		test_fail "compile failed";
	}

	if not test_script_run {
		test_fail "execute failed";
	}

	if test_result_execute {
		test_fail "pipe should have failed";
	}

	if not test_error :count "eq" :comparator "i;ascii-numeric" "1" {
		test_fail "wrong number of errors reported";
	}

	if not test_error :index 1 :contains "failed to pipe" {
		test_fail "wrong error reported";
	}
}

/* Timeout */

test_set "message" text:
From: stephan@example.com
To: pipe@example.net
Subject: Frop!

Frop!
.
;

test_config_set "sieve_pipe_bin_dir" "${tst.path}/../bin";
test_config_set "sieve_pipe_exec_timeout" "1s";
test_config_reload :extension "vnd.dovecot.pipe";
test_result_reset;

test "Timeout" {
	if not test_script_compile "errors/timeout.sieve" {
		test_fail "compile failed";
	}

	if not test_script_run {
		test_fail "execute failed";
	}

	if test_result_execute {
		test_fail "pipe should have timed out";
	}

	if not test_error :count "eq" :comparator "i;ascii-numeric" "2" {
		test_fail "wrong number of errors reported";
	}

	if not test_error :index 2 :contains "failed to pipe" {
		test_fail "wrong error reported";
	}
}