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
|
require "vnd.dovecot.testsuite";
require "relational";
require "comparator-i;ascii-numeric";
test_config_set "sieve_execute_bin_dir" "${tst.path}/../bin";
test_config_reload :extension "vnd.dovecot.execute";
/*
* Command syntax
*/
test "Command syntax" {
if test_script_compile "errors/syntax.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "13" {
test_fail "wrong number of errors reported";
}
}
/*
* Variables
*/
test "Variables" {
if test_script_compile "errors/variables.sieve" {
test_fail "compile should have failed";
}
if not test_error :count "eq" :comparator "i;ascii-numeric" "2" {
test_fail "wrong number of errors reported";
}
}
|