aboutsummaryrefslogtreecommitdiff
path: root/test/python
diff options
context:
space:
mode:
authorDavid Bremner <bremner@debian.org>2011-12-04 21:50:08 -0400
committerDavid Bremner <bremner@debian.org>2011-12-05 18:06:48 -0400
commit6cca3a5c16dac539db135920bc9ef9c5d237a1d5 (patch)
tree0dd033979ff64ae963883c33bcae3c2c36f1bf61 /test/python
parent69dc421ab3355930f23ec6aa47e7e936cbfafb97 (diff)
test: add tests for python bindings
We start modestly, with a (slightly modified) test case from Kazuo Teramoto. Originally it just made sure the bindings didn't crash; here we check that by comparing the output with that of notmuch search.
Diffstat (limited to 'test/python')
-rwxr-xr-xtest/python17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/python b/test/python
new file mode 100755
index 0000000..179427b
--- /dev/null
+++ b/test/python
@@ -0,0 +1,17 @@
+#!/usr/bin/env bash
+test_description="python bindings"
+. ./test-lib.sh
+
+add_email_corpus
+
+test_begin_subtest "compare thread ids"
+python <<EOF | sort > OUTPUT
+import notmuch
+db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE)
+q_new = notmuch.Query(db, 'tag:inbox')
+for t in q_new.search_threads():
+ print t.get_thread_id()
+EOF
+notmuch search --output=threads tag:inbox | sed s/^thread:// | sort > EXPECTED
+test_expect_equal_file OUTPUT EXPECTED
+test_done