aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Jani Nikula <jani@nikula.org>2013-05-05 22:18:19 +0300
committerGravatar David Bremner <bremner@debian.org>2013-05-12 07:46:23 -0300
commit2c64c2e0eb5bbf723313eef8913085dae0df4305 (patch)
tree865e41aabb35931dc3d5f27822bfcf1d3a088cd8 /test
parentc3ed77068310122d98f6d2c60f5a0d3a29d89606 (diff)
test: add basic test for notmuch setup
And annotate with test_subtest_known_broken. Hooray.
Diffstat (limited to 'test')
-rwxr-xr-xtest/notmuch-test1
-rwxr-xr-xtest/setup28
2 files changed, 29 insertions, 0 deletions
diff --git a/test/notmuch-test b/test/notmuch-test
index ca9c3dcb..27a144ef 100755
--- a/test/notmuch-test
+++ b/test/notmuch-test
@@ -20,6 +20,7 @@ TESTS="
basic
help-test
config
+ setup
new
count
search
diff --git a/test/setup b/test/setup
new file mode 100755
index 00000000..8cc55767
--- /dev/null
+++ b/test/setup
@@ -0,0 +1,28 @@
+#!/usr/bin/env bash
+
+test_description='"notmuch setup"'
+. ./test-lib.sh
+
+test_begin_subtest "Create a new config interactively"
+test_subtest_known_broken
+notmuch --config=new-notmuch-config > /dev/null <<EOF
+Test Suite
+test.suite@example.com
+another.suite@example.com
+
+/path/to/maildir
+foo bar
+baz
+EOF
+output=$(notmuch --config=new-notmuch-config config list)
+test_expect_equal "$output" "\
+database.path=/path/to/maildir
+user.name=Test Suite
+user.primary_email=test.suite@example.com
+user.other_email=another.suite@example.com;
+new.tags=foo;bar;
+new.ignore=
+search.exclude_tags=baz;
+maildir.synchronize_flags=true"
+
+test_done