#!/usr/bin/env bash test_description="python bindings" . ./test-lib.sh || exit 1 test_require_external_prereq ${NOTMUCH_PYTHON} add_email_corpus test_begin_subtest "compare thread ids" test_python < EXPECTED test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "compare message ids" test_python < EXPECTED test_expect_equal_file EXPECTED OUTPUT test_begin_subtest "get non-existent file" test_python < CLEAN cat <<'EOF' >EXPECTED UUID 53 EOF test_expect_equal_file EXPECTED CLEAN grep '^[0-9a-f]' OUTPUT > INITIAL_OUTPUT test_begin_subtest "output of count matches test code" notmuch count --lastmod '*' | cut -f2-3 > OUTPUT test_expect_equal_file INITIAL_OUTPUT OUTPUT test_done