summaryrefslogtreecommitdiffstats
path: root/pigeonhole/tests/extensions/environment/rfc.svtest
diff options
context:
space:
mode:
Diffstat (limited to 'pigeonhole/tests/extensions/environment/rfc.svtest')
-rw-r--r--pigeonhole/tests/extensions/environment/rfc.svtest28
1 files changed, 28 insertions, 0 deletions
diff --git a/pigeonhole/tests/extensions/environment/rfc.svtest b/pigeonhole/tests/extensions/environment/rfc.svtest
new file mode 100644
index 0000000..c3177ae
--- /dev/null
+++ b/pigeonhole/tests/extensions/environment/rfc.svtest
@@ -0,0 +1,28 @@
+require "vnd.dovecot.testsuite";
+require "environment";
+require "relational";
+
+test "Non-existent" {
+ if environment :contains "nonsense" "" {
+ test_fail "matched unknown environment item";
+ }
+}
+
+test "Exists" {
+ if not environment :contains "version" "" {
+ test_fail "failed to match known environment item";
+ }
+}
+
+test "Count" {
+ if anyof (
+ environment :count "eq" "nonsense" "0",
+ environment :count "eq" "nonsense" "1"
+ ) {
+ test_fail "count should not match unknown environment item";
+ }
+
+ if not environment :count "eq" "location" "1" {
+ test_fail "count of non-empty environment should be 1";
+ }
+}