]> git.notmuchmail.org Git - notmuch/blob - test/T000-basic.sh
lib: replace deprecated n_q_search_messages with status returning version
[notmuch] / test / T000-basic.sh
1 #!/usr/bin/env bash
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
5
6 test_description='the test framework itself.'
7
8 ################################################################
9 # It appears that people try to run tests without building...
10
11 if ! test -x ../notmuch
12 then
13         echo >&2 'You do not seem to have built notmuch yet.'
14         exit 1
15 fi
16
17 . ./test-lib.sh || exit 1
18
19 ################################################################
20 # Test harness
21 test_begin_subtest 'success is reported like this'
22 test_expect_success ':'
23
24 test_begin_subtest 'test runs if prerequisite is satisfied'
25 test_set_prereq HAVEIT
26 haveit=no
27 test_expect_success 'test_have_prereq HAVEIT && haveit=yes'
28
29 test_begin_subtest 'tests clean up after themselves'
30 clean=no
31 test_expect_success 'test_when_finished clean=yes'
32
33 test_begin_subtest 'tests clean up even after a failure'
34 cleaner=no
35 test_expect_code 1 'test_when_finished cleaner=yes && (exit 1)'
36
37 if test $clean$cleaner != yesyes
38 then
39         say "bug in test framework: cleanup commands do not work reliably"
40         exit 1
41 fi
42
43 test_begin_subtest 'failure to clean up causes the test to fail'
44 test_expect_code 2 'test_when_finished "(exit 2)"'
45
46 EXPECTED=$TEST_DIRECTORY/test.expected-output
47 suppress_diff_date() {
48     sed -e 's/\(.*\-\-\- test-verbose\.4\.\expected\).*/\1/' \
49         -e 's/\(.*\+\+\+ test-verbose\.4\.\output\).*/\1/'
50 }
51
52 test_begin_subtest "Ensure that test output is suppressed unless the test fails"
53 output=$(cd $TEST_DIRECTORY; NOTMUCH_TEST_QUIET= ./test-verbose 2>&1 | suppress_diff_date)
54 expected=$(cat $EXPECTED/test-verbose-no | suppress_diff_date)
55 test_expect_equal "$output" "$expected"
56
57 test_begin_subtest "Ensure that -v does not suppress test output"
58 output=$(cd $TEST_DIRECTORY; NOTMUCH_TEST_QUIET= ./test-verbose -v 2>&1 | suppress_diff_date)
59 expected=$(cat $EXPECTED/test-verbose-yes | suppress_diff_date)
60 # Do not include the results of test-verbose in totals
61 rm $TEST_DIRECTORY/test-results/test-verbose
62 rm -r $TEST_DIRECTORY/tmp.test-verbose
63 test_expect_equal "$output" "$expected"
64
65
66 ################################################################
67 # Test mail store prepared in test-lib.sh
68
69 test_begin_subtest 'test that mail store was created'
70 test_expect_success 'test -d "${MAIL_DIR}"'
71
72 test_begin_subtest 'mail store should be empty'
73 find "${MAIL_DIR}" -type f -print >should-be-empty
74 test_expect_success 'cmp -s /dev/null should-be-empty'
75
76 test_begin_subtest 'NOTMUCH_CONFIG is set and points to an existing file'
77 test_expect_success 'test -f "${NOTMUCH_CONFIG}"'
78
79 test_begin_subtest 'PATH is set to build directory'
80 test_expect_equal \
81     "$(dirname ${TEST_DIRECTORY})" \
82     "$(echo $PATH|cut -f1 -d: | sed -e 's,/test/valgrind/bin$,,')"
83
84 test_begin_subtest 'notmuch is compiled with debugging symbols'
85 readelf --sections $(command -v notmuch) | grep \.debug
86 test_expect_equal 0 $?
87
88 test_done