aboutsummaryrefslogtreecommitdiffstats
path: root/tests/03-sync-mailbox-list-ref/run
diff options
context:
space:
mode:
Diffstat (limited to 'tests/03-sync-mailbox-list-ref/run')
-rw-r--r--tests/03-sync-mailbox-list-ref/run28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/03-sync-mailbox-list-ref/run b/tests/03-sync-mailbox-list-ref/run
deleted file mode 100644
index 3ead25d..0000000
--- a/tests/03-sync-mailbox-list-ref/run
+++ /dev/null
@@ -1,28 +0,0 @@
-# Note: implementation-dependent as the reference name is not a level of
-# mailbox hierarchy nor ends with the hierarchy delimiter
-sed -ri 's#^\[local\]$#&\nlist-reference = foo#; s#^\[remote\]$#&\nlist-reference = bar#' \
- "$XDG_CONFIG_HOME/interimap/config"
-
-# create a bunch of mailboxes in and out the respective list # references
-doveadm -u "local" mailbox create "foo" "foobar" "foo/bar/baz" "foo/baz" "bar"
-doveadm -u "remote" mailbox create "foo"
-
-# deliver somemessages to these mailboxes
-for m in "foo" "foobar" "foo/bar/baz" "foo/baz" "bar"; do
- sample_message | deliver -u "local" -- -m "$m"
-done
-sample_message | deliver -u "remote" -- -m "foo"
-
-interimap
-
-# check that the mailbox lists match
-diff -u --label="local/mailboxes" --label="remote/mailboxes" \
- <( doveadm -u "local" mailbox list | sed -n "s/^foo//p" | sort ) \
- <( doveadm -u "remote" mailbox list | sed -n "s/^bar//p" | tr '\\' '/' | sort )
-
-for m in "" "bar" "/bar/baz" "/baz"; do
- blob="x'$(printf "%s" "$m" | tr "/" "\\0" | xxd -c256 -ps)'"
- check_mailbox_status2 "$blob" "foo$m" "remote" "bar${m//\//\\}"
-done
-
-# vim: set filetype=sh :