2 # Copyright (c) 2005 Junio C Hamano
3 # Copyright (c) 2010 Notmuch Developers
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.
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.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see https://www.gnu.org/licenses/ .
18 # This file contains common code to be used by both the regular
19 # (correctness) tests and the performance tests.
21 # test-lib.sh defines die() which echoes to nonstandard fd where
22 # output was redirected earlier in that file. If test-lib.sh is not
23 # loaded, neither this redirection nor die() function were defined.
25 type die >/dev/null 2>&1 || die () { echo "$@" >&2; exit 1; }
27 if [[ -z "$NOTMUCH_SRCDIR" ]] || [[ -z "$NOTMUCH_BUILDDIR" ]]; then
28 echo "internal: srcdir or builddir not set" >&2
33 test_name=$(basename $0 .sh)
34 rm -rf $TMP_DIRECTORY/notmuch-dir-backup."$test_name"
35 cp -pR ${MAIL_DIR}/.notmuch $TMP_DIRECTORY/notmuch-dir-backup."${test_name}"
39 test_name=$(basename $0 .sh)
40 rm -rf ${MAIL_DIR}/.notmuch
41 cp -pR $TMP_DIRECTORY/notmuch-dir-backup."${test_name}" ${MAIL_DIR}/.notmuch
44 # Prepend $TEST_DIRECTORY/../lib to LD_LIBRARY_PATH, to make tests work
45 # on systems where ../notmuch depends on LD_LIBRARY_PATH.
46 LD_LIBRARY_PATH=${TEST_DIRECTORY%/*}/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
47 export LD_LIBRARY_PATH
50 . "$NOTMUCH_BUILDDIR/sh.config" || exit 1
53 if [[ -e "$NOTMUCH_SRCDIR/test/test-lib-$PLATFORM.sh" ]]; then
54 . "$NOTMUCH_SRCDIR/test/test-lib-$PLATFORM.sh" || exit 1
57 # Generate a new message in the mail directory, with a unique message
58 # ID and subject. The message is not added to the index.
60 # After this function returns, the filename of the generated message
61 # is available as $gen_msg_filename and the message ID is available as
64 # This function supports named parameters with the bash syntax for
65 # assigning a value to an associative array ([name]=value). The
66 # supported parameters are:
68 # [dir]=directory/of/choice
70 # Generate the message in directory 'directory/of/choice' within
71 # the mail store. The directory will be created if necessary.
75 # Store the message in file 'name'. The default is to store it
76 # in 'msg-<count>', where <count> is three-digit number of the
81 # Text to use as the body of the email message
83 # '[from]="Some User <user@example.com>"'
84 # '[to]="Some User <user@example.com>"'
85 # '[subject]="Subject of email message"'
86 # '[date]="RFC 822 Date"'
88 # Values for email headers. If not provided, default values will
89 # be generated instead.
91 # '[cc]="Some User <user@example.com>"'
92 # [reply-to]=some-address
93 # [in-reply-to]=<message-id>
94 # [references]=<message-id>
95 # [content-type]=content-type-specification
96 # '[header]=full header line, including keyword'
98 # Additional values for email headers. If these are not provided
99 # then the relevant headers will simply not appear in the
104 # Controls the message-id of the created message.
110 # This is our (bash-specific) magic for doing named parameters
111 local -A template="($@)"
112 local additional_headers
114 gen_msg_cnt=$((gen_msg_cnt + 1))
115 if [ -z "${template[filename]}" ]; then
116 gen_msg_name="msg-$(printf "%03d" $gen_msg_cnt)"
118 gen_msg_name=${template[filename]}
121 if [ -z "${template[id]}" ]; then
122 gen_msg_id="${gen_msg_name%:2,*}@notmuch-test-suite"
124 gen_msg_id="${template[id]}"
127 if [ -z "${template[dir]}" ]; then
128 gen_msg_filename="${MAIL_DIR}/$gen_msg_name"
130 gen_msg_filename="${MAIL_DIR}/${template[dir]}/$gen_msg_name"
131 mkdir -p "$(dirname "$gen_msg_filename")"
134 if [ -z "${template[body]}" ]; then
135 template[body]="This is just a test message (#${gen_msg_cnt})"
138 if [ -z "${template[from]}" ]; then
139 template[from]="Notmuch Test Suite <test_suite@notmuchmail.org>"
142 if [ -z "${template[to]}" ]; then
143 template[to]="Notmuch Test Suite <test_suite@notmuchmail.org>"
146 if [ -z "${template[subject]}" ]; then
147 if [ -n "$test_subtest_name" ]; then
148 template[subject]="$test_subtest_name"
150 template[subject]="Test message #${gen_msg_cnt}"
152 elif [ "${template[subject]}" = "@FORCE_EMPTY" ]; then
156 if [ -z "${template[date]}" ]; then
157 # we use decreasing timestamps here for historical reasons;
158 # the existing test suite when we converted to unique timestamps just
159 # happened to have signicantly fewer failures with that choice.
160 local date_secs=$((978709437 - gen_msg_cnt))
161 # printf %(..)T is bash 4.2+ feature. use perl fallback if needed...
162 TZ=UTC printf -v template[date] "%(%a, %d %b %Y %T %z)T" $date_secs 2>/dev/null ||
163 template[date]=`perl -le 'use POSIX "strftime";
164 @time = gmtime '"$date_secs"';
165 print strftime "%a, %d %b %Y %T +0000", @time'`
168 additional_headers=""
169 if [ ! -z "${template[header]}" ]; then
170 additional_headers="${template[header]}
171 ${additional_headers}"
174 if [ ! -z "${template[reply-to]}" ]; then
175 additional_headers="Reply-To: ${template[reply-to]}
176 ${additional_headers}"
179 if [ ! -z "${template[in-reply-to]}" ]; then
180 additional_headers="In-Reply-To: ${template[in-reply-to]}
181 ${additional_headers}"
184 if [ ! -z "${template[cc]}" ]; then
185 additional_headers="Cc: ${template[cc]}
186 ${additional_headers}"
189 if [ ! -z "${template[bcc]}" ]; then
190 additional_headers="Bcc: ${template[bcc]}
191 ${additional_headers}"
194 if [ ! -z "${template[references]}" ]; then
195 additional_headers="References: ${template[references]}
196 ${additional_headers}"
199 if [ ! -z "${template[content-type]}" ]; then
200 additional_headers="Content-Type: ${template[content-type]}
201 ${additional_headers}"
204 if [ ! -z "${template[content-transfer-encoding]}" ]; then
205 additional_headers="Content-Transfer-Encoding: ${template[content-transfer-encoding]}
206 ${additional_headers}"
209 # Note that in the way we're setting it above and using it below,
210 # `additional_headers' will also serve as the header / body separator
211 # (empty line in between).
213 cat <<EOF >"$gen_msg_filename"
214 From: ${template[from]}
216 Message-Id: <${gen_msg_id}>
217 Subject: ${template[subject]}
218 Date: ${template[date]}
219 ${additional_headers}
224 # Generate a new message and add it to the database.
226 # All of the arguments and return values supported by generate_message
227 # are also supported here, so see that function for details.
230 generate_message "$@" &&
231 notmuch new > /dev/null
234 if test -n "$valgrind"
238 test "$1" = "$(readlink "$2")" || {
246 while test -d "$2".lock
248 say "Waiting for lock on $2."
255 make_valgrind_symlink () {
256 # handle only executables
257 test -x "$1" || return
259 base=$(basename "$1")
260 symlink_target=$TEST_DIRECTORY/../$base
261 # do not override scripts
262 if test -x "$symlink_target" &&
263 test ! -d "$symlink_target" &&
264 test "#!" != "$(head -c 2 < "$symlink_target")"
266 symlink_target=$TEST_DIRECTORY/valgrind.sh
270 symlink_target=$TEST_DIRECTORY/unprocessed-script
272 # create the link, or replace it if it is out of date
273 make_symlink "$symlink_target" "$GIT_VALGRIND/bin/$base" || exit
276 # override notmuch executable in TEST_DIRECTORY/..
277 GIT_VALGRIND=$TEST_DIRECTORY/valgrind
278 mkdir -p "$GIT_VALGRIND"/bin
279 make_valgrind_symlink $TEST_DIRECTORY/../notmuch
284 ls "$path"/notmuch 2> /dev/null |
287 make_valgrind_symlink "$file"
291 PATH=$GIT_VALGRIND/bin:$PATH
292 GIT_EXEC_PATH=$GIT_VALGRIND/bin
294 test -n "$NOTMUCH_BUILDDIR" && MANPATH="$NOTMUCH_BUILDDIR/doc/_build/man"
296 if test -n "$NOTMUCH_BUILDDIR"
298 PATH="$NOTMUCH_BUILDDIR:$PATH"
299 MANPATH="$NOTMUCH_BUILDDIR/doc/_build/man"
305 test="tmp.$(basename "$0" .sh)"
306 TMP_DIRECTORY="$TEST_DIRECTORY/$test"
307 test ! -z "$debug" || remove_tmp=$TMP_DIRECTORY
308 rm -rf "$TMP_DIRECTORY" || {
310 echo >&6 "FATAL: Cannot prepare test area"
314 # A temporary home directory is needed by at least:
315 # - emacs/"Sending a message via (fake) SMTP"
316 # - emacs/"Reply within emacs"
317 # - crypto/emacs_deliver_message
318 export HOME="${TMP_DIRECTORY}/home"
321 MAIL_DIR="${TMP_DIRECTORY}/mail"
322 export NOTMUCH_CONFIG="${TMP_DIRECTORY}/notmuch-config"
324 mkdir -p "${MAIL_DIR}"
326 cat <<EOF >"${NOTMUCH_CONFIG}"
331 name=Notmuch Test Suite
332 primary_email=test_suite@notmuchmail.org
333 other_email=test_suite_other@notmuchmail.org;test_suite@otherdomain.org