File: execute.svtest

package info (click to toggle)
dovecot 1%3A2.2.33.2-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports-sloppy
  • size: 50,420 kB
  • sloc: ansic: 449,977; sh: 9,653; makefile: 6,792; cpp: 1,557; perl: 295; python: 73; xml: 44; pascal: 27
file content (68 lines) | stat: -rw-r--r-- 1,446 bytes parent folder | download | duplicates (9)
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
require "vnd.dovecot.testsuite";
require "include";
require "variables";

test_set "message" text:
From: idiot@example.com
To: idiot@example.org
Subject: Frop!

Frop.
.
;

test "Actions Fileinto" {
	test_mailbox_create "aaaa";
	test_mailbox_create "bbbb";

	if not test_script_compile "execute/actions-fileinto.sieve" {
		test_fail "failed to compile sieve script";
	}

	test_binary_save "actions-fileinto";
	test_binary_load "actions-fileinto";

	if not test_script_run {
		test_fail "failed to execute sieve script";
	}

	if not test_result_execute {
		test_fail "failed to execute result";
	}

	test_message :folder "aaaa" 0;

	if not header "subject" "Frop!" {
		test_fail "fileinto \"aaaa\" not executed.";
	}

	test_message :folder "bbbb" 0;

	if not header "subject" "Frop!" {
		test_fail "fileinto \"bbbb\" not executed.";
	}
}

test "Namespace - file" {
	if not test_script_compile "execute/namespace.sieve" {
		test_fail "failed to compile sub-test";
	}

	if not test_script_run {
		test_fail "failed to execute sub-test";
	}
}

test "Namespace - dict" {
	test_config_set "sieve" "dict:file:${tst.path}/included/namespace.dict";
	test_config_set "sieve_global" "dict:file:${tst.path}/included-global/namespace.dict";
	test_config_reload :extension "include";

	if not test_script_compile "execute/namespace.sieve" {
		test_fail "failed to compile sub-test";
	}
	
	if not test_script_run {
		test_fail "failed to execute sub-test";
	}
}