notmuch/test/python
David Bremner 07bb8b9e89 test/python: set LD_LIBRARY_PATH and PYTHONPATH to use local notmuch
Possibly this should be factored out into some kind of "run_python"
function.
2011-12-05 23:06:50 -04:00

19 lines
556 B
Bash
Executable file

#!/usr/bin/env bash
test_description="python bindings"
. ./test-lib.sh
add_email_corpus
test_begin_subtest "compare thread ids"
LD_LIBRARY_PATH=$TEST_DIRECTORY/../lib \
PYTHONPATH=$TEST_DIRECTORY/../bindings/python \
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