From 6cca3a5c16dac539db135920bc9ef9c5d237a1d5 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Sun, 4 Dec 2011 21:50:08 -0400 Subject: [PATCH] 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. --- test/notmuch-test | 1 + test/python | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 test/python diff --git a/test/notmuch-test b/test/notmuch-test index 5aced5ce..113ea7cf 100755 --- a/test/notmuch-test +++ b/test/notmuch-test @@ -47,6 +47,7 @@ TESTS=" symbol-hiding search-folder-coherence atomicity + python " TESTS=${NOTMUCH_TESTS:=$TESTS} diff --git a/test/python b/test/python new file mode 100755 index 00000000..179427b8 --- /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 < 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 -- 2.43.0