]> git.notmuchmail.org Git - notmuch/blob - test/t0000-basic.sh
2cc4ef75758154c7d34418c7e7108b3a05e371fa
[notmuch] / test / t0000-basic.sh
1 #!/bin/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
18
19 ################################################################
20 # Test harness
21 test_expect_success 'success is reported like this' '
22     :
23 '
24 test_expect_failure 'pretend we have a known breakage' '
25     false
26 '
27 test_expect_failure 'pretend we have fixed a known breakage' '
28     :
29 '
30 test_set_prereq HAVEIT
31 haveit=no
32 test_expect_success HAVEIT 'test runs if prerequisite is satisfied' '
33     test_have_prereq HAVEIT &&
34     haveit=yes
35 '
36 donthaveit=yes
37 test_expect_success DONTHAVEIT 'unmet prerequisite causes test to be skipped' '
38     donthaveit=no
39 '
40 if test $haveit$donthaveit != yesyes
41 then
42         say "bug in test framework: prerequisite tags do not work reliably"
43         exit 1
44 fi
45
46 clean=no
47 test_expect_success 'tests clean up after themselves' '
48     test_when_finished clean=yes
49 '
50
51 cleaner=no
52 test_expect_code 1 'tests clean up even after a failure' '
53     test_when_finished cleaner=yes &&
54     (exit 1)
55 '
56
57 if test $clean$cleaner != yesyes
58 then
59         say "bug in test framework: cleanup commands do not work reliably"
60         exit 1
61 fi
62
63 test_expect_code 2 'failure to clean up causes the test to fail' '
64     test_when_finished "(exit 2)"
65 '
66
67 ################################################################
68 # Test mail store prepared in test-lib.sh
69
70 test_expect_success \
71     'test that mail store was created' \
72     'test -d "${MAIL_DIR}"'
73
74
75 find "${MAIL_DIR}" -type f -print >should-be-empty
76 test_expect_success \
77     'mail store should be empty' \
78     'cmp -s /dev/null should-be-empty'
79
80 test_expect_success \
81     'NOTMUCH_CONFIG is set and points to an existing file' \
82     'test -f "${NOTMUCH_CONFIG}"'
83
84 test_expect_success \
85     'PATH is set to this repository' \
86     'test "`echo $PATH|cut -f1 -d:`" = "`dirname ${TEST_DIRECTORY}`"'
87
88 test_done