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