File: match-values.svtest

package info (click to toggle)
dovecot 1%3A2.2.13-12~deb8u4
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 38,792 kB
  • sloc: ansic: 341,472; sh: 16,920; makefile: 5,393; cpp: 1,474; perl: 265; xml: 44; python: 34; pascal: 27
file content (72 lines) | stat: -rw-r--r-- 1,497 bytes parent folder | download | duplicates (12)
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
require "vnd.dovecot.testsuite";

require "regex";
require "variables";

test_set "message" text:
From: Andy Howell <AndyHowell@example.com>
Sender: antlr-interest-bounces@ant.example.com
To: Stephan Bosch <stephan@example.org>
Subject: [Dovecot] Sieve regex match problem

Hi,

I is broken.
.
;

test "Basic match values 1" {
	if header :regex ["Sender"] ["([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"] {

		if not string :is "${1}" "antlr" {
			test_fail "first match value is not correct";
		}

		if not string :is "${2}" "interest" {
			test_fail "second match value is not correct";
		}

		if not string :is "${3}" "-bounces" {
			test_fail "third match value is not correct";
		}

		if string :is "${4}" "-bounces" {
			test_fail "fourth match contains third value";
		}
	} else {
		test_fail "failed to match";
	}
}

test "Basic match values 2" {
	if header :regex ["Sender"] ["(.*>[ \\t]*,?[ \\t]*)?([^-@]*)-([^-@]*)(-bounces)?@ant.example.com"] {

		if not string :is "${1}" "" {
			test_fail "first match value is not correct: ${1}";
		}

		if not string :is "${2}" "antlr" {
			test_fail "second match value is not correct: ${2}";
		}

		if not string :is "${3}" "interest" {
			test_fail "third match value is not correct: ${3}";
		}

		if not string :is "${4}" "-bounces" {
			test_fail "fourth match value is not correct: ${4}";
		}

		if string :is "${5}" "-bounces" {
			test_fail "fifth match contains fourth value: ${5}";
		}
	} else {
		test_fail "failed to match";
	}
}