blob: d0244e60612fa7df4c07ae2f852e608c33b71e44 (
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
|
require "vnd.dovecot.testsuite";
require "relational";
require "comparator-i;ascii-numeric";
require "variables";
test "String - :count" {
if not string :count "eq" :comparator "i;ascii-numeric" ["a", "b", "c"] "3" {
test_fail "string test failed :count match";
}
}
test "String - :count \"\"" {
if not string :count "eq" :comparator "i;ascii-numeric" ["a", "", "c"] "2" {
test_fail "string test failed :count match";
}
}
test "RFC example" {
set "state" "${state} pending";
if not string :matches " ${state} " "* pending *" {
# the above test always succeeds
test_fail "test should have matched: \" ${state} \"";
}
}
test "No whitespace stripping" {
set "vara" " value ";
set "varb" "value";
if not string :is :comparator "i;octet" "${vara}" " ${varb} " {
test_fail "string test seems to have stripped white space";
}
}
|