]> git.notmuchmail.org Git - notmuch/blob - test/basic
test: Rename all tests to get rid of the ugly numbers in file names.
[notmuch] / test / basic
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_set_prereq HAVEIT
25 haveit=no
26 test_expect_success HAVEIT 'test runs if prerequisite is satisfied' '
27     test_have_prereq HAVEIT &&
28     haveit=yes
29 '
30
31 clean=no
32 test_expect_success 'tests clean up after themselves' '
33     test_when_finished clean=yes
34 '
35
36 cleaner=no
37 test_expect_code 1 'tests clean up even after a failure' '
38     test_when_finished cleaner=yes &&
39     (exit 1)
40 '
41
42 if test $clean$cleaner != yesyes
43 then
44         say "bug in test framework: cleanup commands do not work reliably"
45         exit 1
46 fi
47
48 test_expect_code 2 'failure to clean up causes the test to fail' '
49     test_when_finished "(exit 2)"
50 '
51
52 ################################################################
53 # Test mail store prepared in test-lib.sh
54
55 test_expect_success \
56     'test that mail store was created' \
57     'test -d "${MAIL_DIR}"'
58
59
60 find "${MAIL_DIR}" -type f -print >should-be-empty
61 test_expect_success \
62     'mail store should be empty' \
63     'cmp -s /dev/null should-be-empty'
64
65 test_expect_success \
66     'NOTMUCH_CONFIG is set and points to an existing file' \
67     'test -f "${NOTMUCH_CONFIG}"'
68
69 test_expect_success \
70     'PATH is set to this repository' \
71     'test "`echo $PATH|cut -f1 -d:`" = "`dirname ${TEST_DIRECTORY}`"'
72
73 test_done