blob: d6cc220b95bee31366aafb38469afb83d0aa8d15 (
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
|
require "vnd.dovecot.testsuite";
require "fileinto";
require "variables";
require "mailbox";
set "message1" text:
From: stephan@example.org
To: nico@frop.example.org
Subject: First message
Frop
.
;
set "message2" text:
From: stephan@example.org
To: nico@frop.example.org
Subject: Second message
Frop
.
;
set "message3" text:
From: stephan@example.org
To: nico@frop.example.org
Subject: Third message
Frop
.
;
test "Duplicates" {
test_set "message" "${message1}";
fileinto :create "Folder";
fileinto :create "Folder";
if not test_result_execute {
test_fail "failed to execute first result";
}
test_result_reset;
test_set "message" "${message2}";
fileinto :create "Folder";
fileinto :create "Folder";
if not test_result_execute {
test_fail "failed to execute second result";
}
test_result_reset;
test_set "message" "${message3}";
fileinto :create "Folder";
fileinto :create "Folder";
if not test_result_execute {
test_fail "failed to execute third result";
}
test_message :folder "Folder" 0;
if not header :is "subject" "First message" {
test_fail "first message incorrect";
}
test_message :folder "Folder" 1;
if not header :is "subject" "Second message" {
test_fail "first message incorrect";
}
test_message :folder "Folder" 2;
if not header :is "subject" "Third message" {
test_fail "first message incorrect";
}
}
|