]> git.notmuchmail.org Git - notmuch/blob - test/T000-basic.sh
test: remove remainder of previously killed basic test
[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 test_expect_success 'test_have_prereq HAVEIT'
27
28 test_begin_subtest 'tests clean up after themselves'
29 clean=no
30 test_expect_success 'test_when_finished clean=yes'
31
32 test_begin_subtest 'tests clean up even after a failure'
33 cleaner=no
34 test_expect_code 1 'test_when_finished cleaner=yes && (exit 1)'
35
36 if test $clean$cleaner != yesyes
37 then
38         say "bug in test framework: cleanup commands do not work reliably"
39         exit 1
40 fi
41
42 test_begin_subtest 'failure to clean up causes the test to fail'
43 test_expect_code 2 'test_when_finished "(exit 2)"'
44
45 EXPECTED=$TEST_DIRECTORY/test.expected-output
46 suppress_diff_date() {
47     sed -e 's/\(.*\-\-\- test-verbose\.4\.\expected\).*/\1/' \
48         -e 's/\(.*\+\+\+ test-verbose\.4\.\output\).*/\1/'
49 }
50
51 test_begin_subtest "Ensure that test output is suppressed unless the test fails"
52 output=$(cd $TEST_DIRECTORY; NOTMUCH_TEST_QUIET= ./test-verbose 2>&1 | suppress_diff_date)
53 expected=$(cat $EXPECTED/test-verbose-no | suppress_diff_date)
54 test_expect_equal "$output" "$expected"
55
56 test_begin_subtest "Ensure that -v does not suppress test output"
57 output=$(cd $TEST_DIRECTORY; NOTMUCH_TEST_QUIET= ./test-verbose -v 2>&1 | suppress_diff_date)
58 expected=$(cat $EXPECTED/test-verbose-yes | suppress_diff_date)
59 # Do not include the results of test-verbose in totals
60 rm $TEST_DIRECTORY/test-results/test-verbose
61 rm -r $TEST_DIRECTORY/tmp.test-verbose
62 test_expect_equal "$output" "$expected"
63
64
65 ################################################################
66 # Test mail store prepared in test-lib.sh
67
68 test_begin_subtest 'test that mail store was created'
69 test_expect_success 'test -d "${MAIL_DIR}"'
70
71 test_begin_subtest 'mail store should be empty'
72 find "${MAIL_DIR}" -type f -print >should-be-empty
73 test_expect_success 'cmp -s /dev/null should-be-empty'
74
75 test_begin_subtest 'NOTMUCH_CONFIG is set and points to an existing file'
76 test_expect_success 'test -f "${NOTMUCH_CONFIG}"'
77
78 test_begin_subtest 'PATH is set to build directory'
79 test_expect_equal \
80     "$(dirname ${TEST_DIRECTORY})" \
81     "$(echo $PATH|cut -f1 -d: | sed -e 's,/test/valgrind/bin$,,')"
82
83 test_begin_subtest 'notmuch is compiled with debugging symbols'
84 readelf --sections $(command -v notmuch) | grep \.debug
85 test_expect_equal 0 $?
86
87 test_done