]> git.notmuchmail.org Git - notmuch/blob - test/T390-python.sh
a9a61145699b19ca5e61129f91255c7b154e6f72
[notmuch] / test / T390-python.sh
1 #!/usr/bin/env bash
2 test_description="python bindings"
3 . ./test-lib.sh || exit 1
4
5 test_require_external_prereq ${NOTMUCH_PYTHON}
6
7 add_email_corpus
8
9 test_begin_subtest "compare thread ids"
10 test_python <<EOF
11 import notmuch
12 db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
13 q_new = notmuch.Query(db, 'tag:inbox')
14 q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
15 for t in q_new.search_threads():
16     print (t.get_thread_id())
17 EOF
18 notmuch search --sort=oldest-first --output=threads tag:inbox | sed s/^thread:// > EXPECTED
19 test_expect_equal_file EXPECTED OUTPUT
20
21 test_begin_subtest "compare message ids"
22 test_python <<EOF
23 import notmuch
24 db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
25 q_new = notmuch.Query(db, 'tag:inbox')
26 q_new.set_sort(notmuch.Query.SORT.OLDEST_FIRST)
27 for m in q_new.search_messages():
28     print (m.get_message_id())
29 EOF
30 notmuch search --sort=oldest-first --output=messages tag:inbox | sed s/^id:// > EXPECTED
31 test_expect_equal_file EXPECTED OUTPUT
32
33 test_begin_subtest "get non-existent file"
34 test_python <<EOF
35 import notmuch
36 db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
37 print (db.find_message_by_filename("i-dont-exist"))
38 EOF
39 test_expect_equal "$(cat OUTPUT)" "None"
40
41 test_begin_subtest "get revision"
42 test_python ${MAIL_DIR} <<'EOF'
43 import notmuch
44 db = notmuch.Database(mode=notmuch.Database.MODE.READ_ONLY)
45 (revision, uuid) = db.get_revision()
46 print ("%s\t%lu" % (uuid, revision))
47 EOF
48 notmuch_uuid_sanitize < OUTPUT > CLEAN
49 cat <<'EOF' >EXPECTED
50 UUID    53
51 EOF
52 test_expect_equal_file EXPECTED CLEAN
53
54 grep '^[0-9a-f]' OUTPUT > INITIAL_OUTPUT
55
56 test_begin_subtest "output of count matches test code"
57 notmuch count --lastmod '*' | cut -f2-3 > OUTPUT
58 test_expect_equal_file INITIAL_OUTPUT OUTPUT
59
60 test_done