File: errors.svtest

package info (click to toggle)
dovecot 1%3A2.2.13-11~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 38,468 kB
  • sloc: ansic: 341,153; sh: 16,920; makefile: 5,381; cpp: 1,474; perl: 265; xml: 44; python: 34; pascal: 27
file content (135 lines) | stat: -rw-r--r-- 3,196 bytes parent folder | download | duplicates (8)
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
require "vnd.dovecot.testsuite";

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

test "Action conflicts: reject <-> fileinto" {
	if not test_script_compile "errors/conflict-reject-fileinto.sieve" {
		test_fail "compile failed";
	}

	if test_script_run {
		test_fail "execution should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}
}

test "Action conflicts: reject <-> keep" {
	if not test_script_compile "errors/conflict-reject-keep.sieve" {
		test_fail "compile failed";
	}

	if test_script_run {
		test_fail "execution should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}
}

test "Action conflicts: reject <-> redirect" {
	if not test_script_compile "errors/conflict-reject-redirect.sieve" {
		test_fail "compile failed";
	}

	if test_script_run {
		test_fail "execution should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}
}

test "Action limit" {
	if not test_script_compile "errors/actions-limit.sieve" {
		test_fail "compile failed";
	}

	if test_script_run {
		test_fail "execution should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}

	if not test_error :index 1 :contains "total number of actions exceeds policy limit"{
		test_fail "unexpected error reported";
	}
}

test "Redirect limit" {
	if not test_script_compile "errors/redirect-limit.sieve" {
		test_fail "compile failed";
	}

	if test_script_run {
		test_fail "execution should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}

	if not test_error :index 1 :contains "number of redirect actions exceeds policy limit"{
		test_fail "unexpected error reported";
	}
}

test "Fileinto missing folder" {
	if not test_script_compile "errors/fileinto.sieve" {
		test_fail "compile failed";
	}

	test_mailbox_create "INBOX";

	if not test_script_run {
		test_fail "execution failed";
	}

	if test_result_execute {
		test_fail "execution of result should have failed";
	}

	if test_error :count "gt" :comparator "i;ascii-numeric" "1" {
		test_fail "too many runtime errors reported";
	}

	if not allof (
		test_error :index 1 :contains "failed to store into mailbox",
		test_error :index 1 :contains "exist",
		test_error :index 1 :contains "FROP") {
		test_fail "unexpected error reported";
	}
}

test "Fileinto invalid folder name" {
	if not test_script_compile "errors/fileinto-invalid-name.sieve" {
		test_fail "compile failed";
	}

	if not test_script_run {
		test_fail "execution failed";
	}

	if test_result_execute {
		test_fail "execution of result should have failed";
	}

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

	if not allof (
		test_error :index 1 :contains "failed to store into mailbox",
		test_error :index 1 :contains "name") {
		test_fail "unexpected error reported";
	}
}