You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
meli/melib/src/sieve/tests/comparators/i-ascii-casemap.svtest

40 lines
809 B
Plaintext

require "vnd.stalwart.testsuite";
test_set "message" text:
From: stephan@example.org
Cc: frop@example.com
To: test@dovecot.example.net
X-A: This is a TEST header
Subject: Test Message
Test!
.
;
test "i;ascii-casemap :contains (1)" {
if not header :contains :comparator "i;ascii-casemap" "X-A" "TEST" {
test_fail "should have matched";
}
}
test "i;ascii-casemap :contains (2)" {
if not header :contains :comparator "i;ascii-casemap" "X-A" "test" {
test_fail "should have matched";
}
}
test "i;ascii-casemap :matches (1)" {
if not header :matches :comparator "i;ascii-casemap" "X-A" "This*TEST*r" {
test_fail "should have matched";
}
}
test "i;ascii-casemap :matches (2)" {
if not header :matches :comparator "i;ascii-casemap" "X-A" "ThIs*tEsT*R" {
test_fail "should have matched";
}
}