]> git.notmuchmail.org Git - notmuch/blob - test/test-lib.sh
test: attempt to send QUIT to smtp-dummy in case mail send failed
[notmuch] / test / test-lib.sh
1 #!/usr/bin/env bash
2 #
3 # Copyright (c) 2005 Junio C Hamano
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see http://www.gnu.org/licenses/ .
17
18 if [ ${BASH_VERSINFO[0]} -lt 4 ]; then
19     echo "Error: The notmuch test suite requires a bash version >= 4.0"
20     echo "due to use of associative arrays within the test suite."
21     echo "Please try again with a newer bash (or help us fix the"
22     echo "test suite to be more portable). Thanks."
23     exit 1
24 fi
25
26 # if --tee was passed, write the output not only to the terminal, but
27 # additionally to the file test-results/$BASENAME.out, too.
28 case "$GIT_TEST_TEE_STARTED, $* " in
29 done,*)
30         # do not redirect again
31         ;;
32 *' --tee '*|*' --va'*)
33         mkdir -p test-results
34         BASE=test-results/$(basename "$0" .sh)
35         (GIT_TEST_TEE_STARTED=done ${SHELL-sh} "$0" "$@" 2>&1;
36          echo $? > $BASE.exit) | tee $BASE.out
37         test "$(cat $BASE.exit)" = 0
38         exit
39         ;;
40 esac
41
42 # Keep the original TERM for say_color and test_emacs
43 ORIGINAL_TERM=$TERM
44
45 # For repeatability, reset the environment to known value.
46 LANG=C
47 LC_ALL=C
48 PAGER=cat
49 TZ=UTC
50 TERM=dumb
51 export LANG LC_ALL PAGER TERM TZ
52 GIT_TEST_CMP=${GIT_TEST_CMP:-diff -u}
53
54 # Protect ourselves from common misconfiguration to export
55 # CDPATH into the environment
56 unset CDPATH
57
58 unset GREP_OPTIONS
59
60 # Convenience
61 #
62 # A regexp to match 5 and 40 hexdigits
63 _x05='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
64 _x40="$_x05$_x05$_x05$_x05$_x05$_x05$_x05$_x05"
65
66 _x04='[0-9a-f][0-9a-f][0-9a-f][0-9a-f]'
67 _x32="$_x04$_x04$_x04$_x04$_x04$_x04$_x04$_x04"
68
69 # Each test should start with something like this, after copyright notices:
70 #
71 # test_description='Description of this test...
72 # This test checks if command xyzzy does the right thing...
73 # '
74 # . ./test-lib.sh
75 [ "x$ORIGINAL_TERM" != "xdumb" ] && (
76                 TERM=$ORIGINAL_TERM &&
77                 export TERM &&
78                 [ -t 1 ] &&
79                 tput bold >/dev/null 2>&1 &&
80                 tput setaf 1 >/dev/null 2>&1 &&
81                 tput sgr0 >/dev/null 2>&1
82         ) &&
83         color=t
84
85 while test "$#" -ne 0
86 do
87         case "$1" in
88         -d|--d|--de|--deb|--debu|--debug)
89                 debug=t; shift ;;
90         -i|--i|--im|--imm|--imme|--immed|--immedi|--immedia|--immediat|--immediate)
91                 immediate=t; shift ;;
92         -l|--l|--lo|--lon|--long|--long-|--long-t|--long-te|--long-tes|--long-test|--long-tests)
93                 GIT_TEST_LONG=t; export GIT_TEST_LONG; shift ;;
94         -h|--h|--he|--hel|--help)
95                 help=t; shift ;;
96         -v|--v|--ve|--ver|--verb|--verbo|--verbos|--verbose)
97                 verbose=t; shift ;;
98         -q|--q|--qu|--qui|--quie|--quiet)
99                 quiet=t; shift ;;
100         --with-dashes)
101                 with_dashes=t; shift ;;
102         --no-color)
103                 color=; shift ;;
104         --no-python)
105                 # noop now...
106                 shift ;;
107         --va|--val|--valg|--valgr|--valgri|--valgrin|--valgrind)
108                 valgrind=t; verbose=t; shift ;;
109         --tee)
110                 shift ;; # was handled already
111         --root=*)
112                 root=$(expr "z$1" : 'z[^=]*=\(.*\)')
113                 shift ;;
114         *)
115                 echo "error: unknown test option '$1'" >&2; exit 1 ;;
116         esac
117 done
118
119 if test -n "$color"; then
120         say_color () {
121                 (
122                 TERM=$ORIGINAL_TERM
123                 export TERM
124                 case "$1" in
125                         error) tput bold; tput setaf 1;; # bold red
126                         skip)  tput bold; tput setaf 2;; # bold green
127                         pass)  tput setaf 2;;            # green
128                         info)  tput setaf 3;;            # brown
129                         *) test -n "$quiet" && return;;
130                 esac
131                 shift
132                 printf " "
133                 printf "$@"
134                 tput sgr0
135                 )
136         }
137 else
138         say_color() {
139                 test -z "$1" && test -n "$quiet" && return
140                 shift
141                 printf " "
142                 printf "$@"
143         }
144 fi
145
146 error () {
147         say_color error "error: $*\n"
148         GIT_EXIT_OK=t
149         exit 1
150 }
151
152 say () {
153         say_color info "$*"
154 }
155
156 test "${test_description}" != "" ||
157 error "Test script did not set test_description."
158
159 if test "$help" = "t"
160 then
161         echo "Tests ${test_description}"
162         exit 0
163 fi
164
165 echo $(basename "$0"): "Testing ${test_description}"
166
167 exec 5>&1
168
169 test_failure=0
170 test_count=0
171 test_fixed=0
172 test_broken=0
173 test_success=0
174
175 die () {
176         code=$?
177         rm -rf "$TEST_TMPDIR"
178         if test -n "$GIT_EXIT_OK"
179         then
180                 exit $code
181         else
182                 echo >&5 "FATAL: Unexpected exit with code $code"
183                 exit 1
184         fi
185 }
186
187 GIT_EXIT_OK=
188 # Note: TEST_TMPDIR *NOT* exported!
189 TEST_TMPDIR=$(mktemp -d "${TMPDIR:-/tmp}/notmuch-test-$$.XXXXXX")
190 trap 'die' EXIT
191
192 test_decode_color () {
193         sed     -e 's/.\[1m/<WHITE>/g' \
194                 -e 's/.\[31m/<RED>/g' \
195                 -e 's/.\[32m/<GREEN>/g' \
196                 -e 's/.\[33m/<YELLOW>/g' \
197                 -e 's/.\[34m/<BLUE>/g' \
198                 -e 's/.\[35m/<MAGENTA>/g' \
199                 -e 's/.\[36m/<CYAN>/g' \
200                 -e 's/.\[m/<RESET>/g'
201 }
202
203 q_to_nul () {
204         perl -pe 'y/Q/\000/'
205 }
206
207 q_to_cr () {
208         tr Q '\015'
209 }
210
211 append_cr () {
212         sed -e 's/$/Q/' | tr Q '\015'
213 }
214
215 remove_cr () {
216         tr '\015' Q | sed -e 's/Q$//'
217 }
218
219 # Generate a new message in the mail directory, with a unique message
220 # ID and subject. The message is not added to the index.
221 #
222 # After this function returns, the filename of the generated message
223 # is available as $gen_msg_filename and the message ID is available as
224 # $gen_msg_id .
225 #
226 # This function supports named parameters with the bash syntax for
227 # assigning a value to an associative array ([name]=value). The
228 # supported parameters are:
229 #
230 #  [dir]=directory/of/choice
231 #
232 #       Generate the message in directory 'directory/of/choice' within
233 #       the mail store. The directory will be created if necessary.
234 #
235 #  [filename]=name
236 #
237 #       Store the message in file 'name'. The default is to store it
238 #       in 'msg-<count>', where <count> is three-digit number of the
239 #       message.
240 #       
241 #  [body]=text
242 #
243 #       Text to use as the body of the email message
244 #
245 #  '[from]="Some User <user@example.com>"'
246 #  '[to]="Some User <user@example.com>"'
247 #  '[subject]="Subject of email message"'
248 #  '[date]="RFC 822 Date"'
249 #
250 #       Values for email headers. If not provided, default values will
251 #       be generated instead.
252 #
253 #  '[cc]="Some User <user@example.com>"'
254 #  [reply-to]=some-address
255 #  [in-reply-to]=<message-id>
256 #  [references]=<message-id>
257 #  [content-type]=content-type-specification
258 #  '[header]=full header line, including keyword'
259 #
260 #       Additional values for email headers. If these are not provided
261 #       then the relevant headers will simply not appear in the
262 #       message.
263 #
264 #  '[id]=message-id'
265 #
266 #       Controls the message-id of the created message.
267 gen_msg_cnt=0
268 gen_msg_filename=""
269 gen_msg_id=""
270 generate_message ()
271 {
272     # This is our (bash-specific) magic for doing named parameters
273     local -A template="($@)"
274     local additional_headers
275
276     gen_msg_cnt=$((gen_msg_cnt + 1))
277     if [ -z "${template[filename]}" ]; then
278         gen_msg_name="msg-$(printf "%03d" $gen_msg_cnt)"
279     else
280         gen_msg_name=${template[filename]}
281     fi
282
283     if [ -z "${template[id]}" ]; then
284         gen_msg_id="${gen_msg_name%:2,*}@notmuch-test-suite"
285     else
286         gen_msg_id="${template[id]}"
287     fi
288
289     if [ -z "${template[dir]}" ]; then
290         gen_msg_filename="${MAIL_DIR}/$gen_msg_name"
291     else
292         gen_msg_filename="${MAIL_DIR}/${template[dir]}/$gen_msg_name"
293         mkdir -p "$(dirname "$gen_msg_filename")"
294     fi
295
296     if [ -z "${template[body]}" ]; then
297         template[body]="This is just a test message (#${gen_msg_cnt})"
298     fi
299
300     if [ -z "${template[from]}" ]; then
301         template[from]="Notmuch Test Suite <test_suite@notmuchmail.org>"
302     fi
303
304     if [ -z "${template[to]}" ]; then
305         template[to]="Notmuch Test Suite <test_suite@notmuchmail.org>"
306     fi
307
308     if [ -z "${template[subject]}" ]; then
309         template[subject]="Test message #${gen_msg_cnt}"
310     fi
311
312     if [ -z "${template[date]}" ]; then
313         template[date]="Tue, 05 Jan 2001 15:43:57 -0000"
314     fi
315
316     additional_headers=""
317     if [ ! -z "${template[header]}" ]; then
318         additional_headers="${template[header]}
319 ${additional_headers}"
320     fi
321
322     if [ ! -z "${template[reply-to]}" ]; then
323         additional_headers="Reply-To: ${template[reply-to]}
324 ${additional_headers}"
325     fi
326
327     if [ ! -z "${template[in-reply-to]}" ]; then
328         additional_headers="In-Reply-To: ${template[in-reply-to]}
329 ${additional_headers}"
330     fi
331
332     if [ ! -z "${template[cc]}" ]; then
333         additional_headers="Cc: ${template[cc]}
334 ${additional_headers}"
335     fi
336
337     if [ ! -z "${template[references]}" ]; then
338         additional_headers="References: ${template[references]}
339 ${additional_headers}"
340     fi
341
342     if [ ! -z "${template[content-type]}" ]; then
343         additional_headers="Content-Type: ${template[content-type]}
344 ${additional_headers}"
345     fi
346
347     # Note that in the way we're setting it above and using it below,
348     # `additional_headers' will also serve as the header / body separator
349     # (empty line in between).
350
351     cat <<EOF >"$gen_msg_filename"
352 From: ${template[from]}
353 To: ${template[to]}
354 Message-Id: <${gen_msg_id}>
355 Subject: ${template[subject]}
356 Date: ${template[date]}
357 ${additional_headers}
358 ${template[body]}
359 EOF
360 }
361
362 # Generate a new message and add it to the database.
363 #
364 # All of the arguments and return values supported by generate_message
365 # are also supported here, so see that function for details.
366 add_message ()
367 {
368     generate_message "$@" &&
369     notmuch new > /dev/null
370 }
371
372 # Deliver a message with emacs and add it to the database
373 #
374 # Uses emacs to generate and deliver a message to the mail store.
375 # Accepts arbitrary extra emacs/elisp functions to modify the message
376 # before sending, which is useful to doing things like attaching files
377 # to the message and encrypting/signing.
378 emacs_deliver_message ()
379 {
380     local subject="$1"
381     local body="$2"
382     shift 2
383     # before we can send a message, we have to prepare the FCC maildir
384     mkdir -p "$MAIL_DIR"/sent/{cur,new,tmp}
385     $TEST_DIRECTORY/smtp-dummy sent_message &
386     smtp_dummy_pid=$!
387     test_emacs \
388         "(let ((message-send-mail-function 'message-smtpmail-send-it)
389                (smtpmail-smtp-server \"localhost\")
390                (smtpmail-smtp-service \"25025\"))
391            (notmuch-hello)
392            (notmuch-mua-mail)
393            (message-goto-to)
394            (insert \"test_suite@notmuchmail.org\nDate: 01 Jan 2000 12:00:00 -0000\")
395            (message-goto-subject)
396            (insert \"${subject}\")
397            (message-goto-body)
398            (insert \"${body}\")
399            $@
400            (message-send-and-exit))"
401     # opportunistically quit smtp-dummy in case above fails.
402     { echo QUIT > /dev/tcp/localhost/25025; } 2>/dev/null
403     wait ${smtp_dummy_pid}
404     notmuch new >/dev/null
405 }
406
407 # Generate a corpus of email and add it to the database.
408 #
409 # This corpus is fixed, (it happens to be 50 messages from early in
410 # the history of the notmuch mailing list), which allows for reliably
411 # testing commands that need to operate on a not-totally-trivial
412 # number of messages.
413 add_email_corpus ()
414 {
415     rm -rf ${MAIL_DIR}
416     if [ -d $TEST_DIRECTORY/corpus.mail ]; then
417         cp -a $TEST_DIRECTORY/corpus.mail ${MAIL_DIR}
418     else
419         cp -a $TEST_DIRECTORY/corpus ${MAIL_DIR}
420         notmuch new >/dev/null
421         cp -a ${MAIL_DIR} $TEST_DIRECTORY/corpus.mail
422     fi
423 }
424
425 test_begin_subtest ()
426 {
427     if [ -n "$inside_subtest" ]; then
428         exec 1>&6 2>&7          # Restore stdout and stderr
429         error "bug in test script: Missing test_expect_equal in ${BASH_SOURCE[1]}:${BASH_LINENO[0]}"
430     fi
431     test_subtest_name="$1"
432     test_subtest_known_broken_=
433     # Remember stdout and stderr file descriptors and redirect test
434     # output to the previously prepared file descriptors 3 and 4 (see
435     # below)
436     if test "$verbose" != "t"; then exec 4>test.output 3>&4; fi
437     exec 6>&1 7>&2 >&3 2>&4
438     inside_subtest=t
439 }
440
441 # Pass test if two arguments match
442 #
443 # Note: Unlike all other test_expect_* functions, this function does
444 # not accept a test name. Instead, the caller should call
445 # test_begin_subtest before calling this function in order to set the
446 # name.
447 test_expect_equal ()
448 {
449         exec 1>&6 2>&7          # Restore stdout and stderr
450         inside_subtest=
451         test "$#" = 3 && { prereq=$1; shift; } || prereq=
452         test "$#" = 2 ||
453         error "bug in the test script: not 2 or 3 parameters to test_expect_equal"
454
455         output="$1"
456         expected="$2"
457         if ! test_skip "$test_subtest_name"
458         then
459                 if [ "$output" = "$expected" ]; then
460                         test_ok_ "$test_subtest_name"
461                 else
462                         testname=$this_test.$test_count
463                         echo "$expected" > $testname.expected
464                         echo "$output" > $testname.output
465                         test_failure_ "$test_subtest_name" "$(diff -u $testname.expected $testname.output)"
466                 fi
467     fi
468 }
469
470 # Like test_expect_equal, but takes two filenames.
471 test_expect_equal_file ()
472 {
473         exec 1>&6 2>&7          # Restore stdout and stderr
474         inside_subtest=
475         test "$#" = 3 && { prereq=$1; shift; } || prereq=
476         test "$#" = 2 ||
477         error "bug in the test script: not 2 or 3 parameters to test_expect_equal"
478
479         output="$1"
480         expected="$2"
481         if ! test_skip "$test_subtest_name"
482         then
483                 if diff -q "$expected" "$output" >/dev/null ; then
484                         test_ok_ "$test_subtest_name"
485                 else
486                         testname=$this_test.$test_count
487                         cp "$output" $testname.output
488                         cp "$expected" $testname.expected
489                         test_failure_ "$test_subtest_name" "$(diff -u $testname.expected $testname.output)"
490                 fi
491     fi
492 }
493
494 NOTMUCH_NEW ()
495 {
496     notmuch new | grep -v -E -e '^Processed [0-9]*( total)? file|Found [0-9]* total file'
497 }
498
499 notmuch_search_sanitize ()
500 {
501     sed -r -e 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/'
502 }
503
504 NOTMUCH_SHOW_FILENAME_SQUELCH='s,filename:.*/mail,filename:/XXX/mail,'
505 notmuch_show_sanitize ()
506 {
507     sed -e "$NOTMUCH_SHOW_FILENAME_SQUELCH"
508 }
509 notmuch_show_sanitize_all ()
510 {
511     sed \
512         -e 's| filename:.*| filename:XXXXX|' \
513         -e 's| id:[^ ]* | id:XXXXX |'
514 }
515
516 notmuch_json_show_sanitize ()
517 {
518     sed -e 's|, |,\n |g' | \
519         sed \
520         -e 's|"id": "[^"]*",|"id": "XXXXX",|' \
521         -e 's|"filename": "[^"]*",|"filename": "YYYYY",|'
522 }
523
524 # End of notmuch helper functions
525
526 # Use test_set_prereq to tell that a particular prerequisite is available.
527 # The prerequisite can later be checked for in two ways:
528 #
529 # - Explicitly using test_have_prereq.
530 #
531 # - Implicitly by specifying the prerequisite tag in the calls to
532 #   test_expect_{success,failure,code}.
533 #
534 # The single parameter is the prerequisite tag (a simple word, in all
535 # capital letters by convention).
536
537 test_set_prereq () {
538         satisfied="$satisfied$1 "
539 }
540 satisfied=" "
541
542 test_have_prereq () {
543         case $satisfied in
544         *" $1 "*)
545                 : yes, have it ;;
546         *)
547                 ! : nope ;;
548         esac
549 }
550
551 # You are not expected to call test_ok_ and test_failure_ directly, use
552 # the text_expect_* functions instead.
553
554 test_ok_ () {
555         if test "$test_subtest_known_broken_" = "t"; then
556                 test_known_broken_ok_ "$@"
557                 return
558         fi
559         test_success=$(($test_success + 1))
560         say_color pass "%-6s" "PASS"
561         echo " $@"
562 }
563
564 test_failure_ () {
565         if test "$test_subtest_known_broken_" = "t"; then
566                 test_known_broken_failure_ "$@"
567                 return
568         fi
569         test_failure=$(($test_failure + 1))
570         test_failure_message_ "FAIL" "$@"
571         test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; }
572         return 1
573 }
574
575 test_failure_message_ () {
576         say_color error "%-6s" "$1"
577         echo " $2"
578         shift 2
579         echo "$@" | sed -e 's/^/        /'
580         if test "$verbose" != "t"; then cat test.output; fi
581 }
582
583 test_known_broken_ok_ () {
584         test_subtest_known_broken_=
585         test_fixed=$(($test_fixed+1))
586         say_color pass "%-6s" "FIXED"
587         echo " $@"
588 }
589
590 test_known_broken_failure_ () {
591         test_subtest_known_broken_=
592         test_broken=$(($test_broken+1))
593         test_failure_message_ "BROKEN" "$@"
594         return 1
595 }
596
597 test_debug () {
598         test "$debug" = "" || eval "$1"
599 }
600
601 test_run_ () {
602         test_cleanup=:
603         if test "$verbose" != "t"; then exec 4>test.output 3>&4; fi
604         eval >&3 2>&4 "$1"
605         eval_ret=$?
606         eval >&3 2>&4 "$test_cleanup"
607         return 0
608 }
609
610 test_skip () {
611         test_count=$(($test_count+1))
612         to_skip=
613         for skp in $NOTMUCH_SKIP_TESTS
614         do
615                 case $this_test.$test_count in
616                 $skp)
617                         to_skip=t
618                 esac
619         done
620         if test -z "$to_skip" && test -n "$prereq" &&
621            ! test_have_prereq "$prereq"
622         then
623                 to_skip=t
624         fi
625         case "$to_skip" in
626         t)
627                 test_subtest_known_broken_=
628                 say_color skip >&3 "skipping test: $@"
629                 say_color skip "%-6s" "SKIP"
630                 echo " $1"
631                 : true
632                 ;;
633         *)
634                 false
635                 ;;
636         esac
637 }
638
639 test_subtest_known_broken () {
640         test_subtest_known_broken_=t
641 }
642
643 test_expect_success () {
644         test "$#" = 3 && { prereq=$1; shift; } || prereq=
645         test "$#" = 2 ||
646         error "bug in the test script: not 2 or 3 parameters to test-expect-success"
647         if ! test_skip "$@"
648         then
649                 test_run_ "$2"
650                 if [ "$?" = 0 -a "$eval_ret" = 0 ]
651                 then
652                         test_ok_ "$1"
653                 else
654                         test_failure_ "$@"
655                 fi
656         fi
657 }
658
659 test_expect_code () {
660         test "$#" = 4 && { prereq=$1; shift; } || prereq=
661         test "$#" = 3 ||
662         error "bug in the test script: not 3 or 4 parameters to test-expect-code"
663         if ! test_skip "$@"
664         then
665                 test_run_ "$3"
666                 if [ "$?" = 0 -a "$eval_ret" = "$1" ]
667                 then
668                         test_ok_ "$2"
669                 else
670                         test_failure_ "$@"
671                 fi
672         fi
673 }
674
675 # test_external runs external test scripts that provide continuous
676 # test output about their progress, and succeeds/fails on
677 # zero/non-zero exit code.  It outputs the test output on stdout even
678 # in non-verbose mode, and announces the external script with "* run
679 # <n>: ..." before running it.  When providing relative paths, keep in
680 # mind that all scripts run in "trash directory".
681 # Usage: test_external description command arguments...
682 # Example: test_external 'Perl API' perl ../path/to/test.pl
683 test_external () {
684         test "$#" = 4 && { prereq=$1; shift; } || prereq=
685         test "$#" = 3 ||
686         error >&5 "bug in the test script: not 3 or 4 parameters to test_external"
687         descr="$1"
688         shift
689         if ! test_skip "$descr" "$@"
690         then
691                 # Announce the script to reduce confusion about the
692                 # test output that follows.
693                 say_color "" " run $test_count: $descr ($*)"
694                 # Run command; redirect its stderr to &4 as in
695                 # test_run_, but keep its stdout on our stdout even in
696                 # non-verbose mode.
697                 "$@" 2>&4
698                 if [ "$?" = 0 ]
699                 then
700                         test_ok_ "$descr"
701                 else
702                         test_failure_ "$descr" "$@"
703                 fi
704         fi
705 }
706
707 # Like test_external, but in addition tests that the command generated
708 # no output on stderr.
709 test_external_without_stderr () {
710         # The temporary file has no (and must have no) security
711         # implications.
712         tmp="$TMPDIR"; if [ -z "$tmp" ]; then tmp=/tmp; fi
713         stderr="$tmp/git-external-stderr.$$.tmp"
714         test_external "$@" 4> "$stderr"
715         [ -f "$stderr" ] || error "Internal error: $stderr disappeared."
716         descr="no stderr: $1"
717         shift
718         if [ ! -s "$stderr" ]; then
719                 rm "$stderr"
720                 test_ok_ "$descr"
721         else
722                 if [ "$verbose" = t ]; then
723                         output=`echo; echo Stderr is:; cat "$stderr"`
724                 else
725                         output=
726                 fi
727                 # rm first in case test_failure exits.
728                 rm "$stderr"
729                 test_failure_ "$descr" "$@" "$output"
730         fi
731 }
732
733 # This is not among top-level (test_expect_success)
734 # but is a prefix that can be used in the test script, like:
735 #
736 #       test_expect_success 'complain and die' '
737 #           do something &&
738 #           do something else &&
739 #           test_must_fail git checkout ../outerspace
740 #       '
741 #
742 # Writing this as "! git checkout ../outerspace" is wrong, because
743 # the failure could be due to a segv.  We want a controlled failure.
744
745 test_must_fail () {
746         "$@"
747         test $? -gt 0 -a $? -le 129 -o $? -gt 192
748 }
749
750 # test_cmp is a helper function to compare actual and expected output.
751 # You can use it like:
752 #
753 #       test_expect_success 'foo works' '
754 #               echo expected >expected &&
755 #               foo >actual &&
756 #               test_cmp expected actual
757 #       '
758 #
759 # This could be written as either "cmp" or "diff -u", but:
760 # - cmp's output is not nearly as easy to read as diff -u
761 # - not all diff versions understand "-u"
762
763 test_cmp() {
764         $GIT_TEST_CMP "$@"
765 }
766
767 # This function can be used to schedule some commands to be run
768 # unconditionally at the end of the test to restore sanity:
769 #
770 #       test_expect_success 'test core.capslock' '
771 #               git config core.capslock true &&
772 #               test_when_finished "git config --unset core.capslock" &&
773 #               hello world
774 #       '
775 #
776 # That would be roughly equivalent to
777 #
778 #       test_expect_success 'test core.capslock' '
779 #               git config core.capslock true &&
780 #               hello world
781 #               git config --unset core.capslock
782 #       '
783 #
784 # except that the greeting and config --unset must both succeed for
785 # the test to pass.
786
787 test_when_finished () {
788         test_cleanup="{ $*
789                 } && (exit \"\$eval_ret\"); eval_ret=\$?; $test_cleanup"
790 }
791
792 test_done () {
793         GIT_EXIT_OK=t
794         test_results_dir="$TEST_DIRECTORY/test-results"
795         mkdir -p "$test_results_dir"
796         test_results_path="$test_results_dir/${0%.sh}-$$"
797
798         echo "total $test_count" >> $test_results_path
799         echo "success $test_success" >> $test_results_path
800         echo "fixed $test_fixed" >> $test_results_path
801         echo "broken $test_broken" >> $test_results_path
802         echo "failed $test_failure" >> $test_results_path
803         echo "" >> $test_results_path
804
805         echo
806
807         [ -n "$EMACS_SERVER" ] && test_emacs '(kill-emacs)'
808
809         if [ "$test_failure" = "0" ]; then
810             if [ "$test_broken" = "0" ]; then       
811                 rm -rf "$remove_tmp"
812             fi
813             exit 0
814         else
815             exit 1
816         fi
817 }
818
819 emacs_generate_script () {
820         # Construct a little test script here for the benefit of the user,
821         # (who can easily run "run_emacs" to get the same emacs environment
822         # for investigating any failures).    
823         cat <<EOF >"$TMP_DIRECTORY/run_emacs"
824 #!/bin/sh
825 export PATH=$PATH
826 export NOTMUCH_CONFIG=$NOTMUCH_CONFIG
827
828 # Here's what we are using here:
829 #
830 # --no-init-file        Don't load users ~/.emacs
831 #
832 # --no-site-file        Don't load the site-wide startup stuff
833 #
834 # --directory           Ensure that the local elisp sources are found
835 #
836 # --load                Force loading of notmuch.el and test-lib.el
837
838 exec emacs --no-init-file --no-site-file \
839         --directory "$TEST_DIRECTORY/../emacs" --load notmuch.el \
840         --directory "$TEST_DIRECTORY" --load test-lib.el \
841         "\$@"
842 EOF
843         chmod a+x "$TMP_DIRECTORY/run_emacs"
844 }
845
846 test_emacs () {
847         if [ -z "$EMACS_SERVER" ]; then
848                 EMACS_SERVER="notmuch-test-suite-$$"
849                 # start a detached session with an emacs server
850                 # user's TERM is given to dtach which assumes a minimally
851                 # VT100-compatible terminal -- and emacs inherits that
852                 TERM=$ORIGINAL_TERM dtach -n "$TEST_TMPDIR/emacs-dtach-socket.$$" \
853                         sh -c "stty rows 24 cols 80; exec '$TMP_DIRECTORY/run_emacs' \
854                                 --no-window-system \
855                                 --eval '(setq server-name \"$EMACS_SERVER\")' \
856                                 --eval '(server-start)' \
857                                 --eval '(orphan-watchdog $$)'" || return
858                 # wait until the emacs server is up
859                 until test_emacs '()' 2>/dev/null; do
860                         sleep 1
861                 done
862         fi
863
864         emacsclient --socket-name="$EMACS_SERVER" --eval "(progn $@)"
865 }
866
867
868 find_notmuch_path ()
869 {
870     dir="$1"
871
872     while [ -n "$dir" ]; do
873         bin="$dir/notmuch"
874         if [ -x "$bin" ]; then
875             echo "$dir"
876             return
877         fi
878         dir="$(dirname "$dir")"
879         if [ "$dir" = "/" ]; then
880             break
881         fi
882     done
883 }
884
885 # Test the binaries we have just built.  The tests are kept in
886 # test/ subdirectory and are run in 'trash directory' subdirectory.
887 TEST_DIRECTORY=$(pwd)
888 if test -n "$valgrind"
889 then
890         make_symlink () {
891                 test -h "$2" &&
892                 test "$1" = "$(readlink "$2")" || {
893                         # be super paranoid
894                         if mkdir "$2".lock
895                         then
896                                 rm -f "$2" &&
897                                 ln -s "$1" "$2" &&
898                                 rm -r "$2".lock
899                         else
900                                 while test -d "$2".lock
901                                 do
902                                         say "Waiting for lock on $2."
903                                         sleep 1
904                                 done
905                         fi
906                 }
907         }
908
909         make_valgrind_symlink () {
910                 # handle only executables
911                 test -x "$1" || return
912
913                 base=$(basename "$1")
914                 symlink_target=$TEST_DIRECTORY/../$base
915                 # do not override scripts
916                 if test -x "$symlink_target" &&
917                     test ! -d "$symlink_target" &&
918                     test "#!" != "$(head -c 2 < "$symlink_target")"
919                 then
920                         symlink_target=$TEST_DIRECTORY/valgrind.sh
921                 fi
922                 case "$base" in
923                 *.sh|*.perl)
924                         symlink_target=$TEST_DIRECTORY/unprocessed-script
925                 esac
926                 # create the link, or replace it if it is out of date
927                 make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit
928         }
929
930         # override notmuch executable in TEST_DIRECTORY/..
931         GIT_VALGRIND=$TEST_DIRECTORY/valgrind
932         mkdir -p "$GIT_VALGRIND"/bin
933         make_valgrind_symlink $TEST_DIRECTORY/../notmuch
934         OLDIFS=$IFS
935         IFS=:
936         for path in $PATH
937         do
938                 ls "$path"/notmuch 2> /dev/null |
939                 while read file
940                 do
941                         make_valgrind_symlink "$file"
942                 done
943         done
944         IFS=$OLDIFS
945         PATH=$GIT_VALGRIND/bin:$PATH
946         GIT_EXEC_PATH=$GIT_VALGRIND/bin
947         export GIT_VALGRIND
948 else # normal case
949         notmuch_path=`find_notmuch_path "$TEST_DIRECTORY"`
950         test -n "$notmuch_path" && PATH="$notmuch_path:$PATH"
951 fi
952 export PATH
953
954 # Test repository
955 test="tmp.$(basename "$0" .sh)"
956 test -n "$root" && test="$root/$test"
957 case "$test" in
958 /*) TMP_DIRECTORY="$test" ;;
959  *) TMP_DIRECTORY="$TEST_DIRECTORY/$test" ;;
960 esac
961 test ! -z "$debug" || remove_tmp=$TMP_DIRECTORY
962 rm -fr "$test" || {
963         GIT_EXIT_OK=t
964         echo >&5 "FATAL: Cannot prepare test area"
965         exit 1
966 }
967
968 # A temporary home directory is needed by at least:
969 # - emacs/"Sending a message via (fake) SMTP"
970 # - emacs/"Reply within emacs"
971 # - crypto/emacs_deliver_message
972 export HOME="${TMP_DIRECTORY}/home"
973 mkdir -p "${HOME}"
974
975 MAIL_DIR="${TMP_DIRECTORY}/mail"
976 export GNUPGHOME="${TMP_DIRECTORY}/gnupg"
977 export NOTMUCH_CONFIG="${TMP_DIRECTORY}/notmuch-config"
978
979 mkdir -p "${test}"
980 mkdir -p "${MAIL_DIR}"
981
982 cat <<EOF >"${NOTMUCH_CONFIG}"
983 [database]
984 path=${MAIL_DIR}
985
986 [user]
987 name=Notmuch Test Suite
988 primary_email=test_suite@notmuchmail.org
989 other_email=test_suite_other@notmuchmail.org;test_suite@otherdomain.org
990 EOF
991
992 emacs_generate_script
993
994
995 # Use -P to resolve symlinks in our working directory so that the cwd
996 # in subprocesses like git equals our $PWD (for pathname comparisons).
997 cd -P "$test" || error "Cannot setup test environment"
998
999 if test "$verbose" = "t"
1000 then
1001         exec 4>&2 3>&1
1002 else
1003         exec 4>test.output 3>&4
1004 fi
1005
1006 this_test=${0##*/}
1007 for skp in $NOTMUCH_SKIP_TESTS
1008 do
1009         to_skip=
1010         for skp in $NOTMUCH_SKIP_TESTS
1011         do
1012                 case "$this_test" in
1013                 $skp)
1014                         to_skip=t
1015                 esac
1016         done
1017         case "$to_skip" in
1018         t)
1019                 say_color skip >&3 "skipping test $this_test altogether"
1020                 say_color skip "skip all tests in $this_test"
1021                 test_done
1022         esac
1023 done
1024
1025 # Provide an implementation of the 'yes' utility
1026 yes () {
1027         if test $# = 0
1028         then
1029                 y=y
1030         else
1031                 y="$*"
1032         fi
1033
1034         while echo "$y"
1035         do
1036                 :
1037         done
1038 }
1039
1040 # Fix some commands on Windows
1041 case $(uname -s) in
1042 *MINGW*)
1043         # Windows has its own (incompatible) sort and find
1044         sort () {
1045                 /usr/bin/sort "$@"
1046         }
1047         find () {
1048                 /usr/bin/find "$@"
1049         }
1050         sum () {
1051                 md5sum "$@"
1052         }
1053         # git sees Windows-style pwd
1054         pwd () {
1055                 builtin pwd -W
1056         }
1057         # no POSIX permissions
1058         # backslashes in pathspec are converted to '/'
1059         # exec does not inherit the PID
1060         ;;
1061 *)
1062         test_set_prereq POSIXPERM
1063         test_set_prereq BSLASHPSPEC
1064         test_set_prereq EXECKEEPSPID
1065         ;;
1066 esac
1067
1068 test -z "$NO_PERL" && test_set_prereq PERL
1069 test -z "$NO_PYTHON" && test_set_prereq PYTHON
1070
1071 # test whether the filesystem supports symbolic links
1072 ln -s x y 2>/dev/null && test -h y 2>/dev/null && test_set_prereq SYMLINKS
1073 rm -f y