unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob b121fc728fdd21922a03fc87b14427c6d798a60f 1262 bytes (raw)
name: test/T405-external.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 
#!/usr/bin/env bash
test_description='hooks'
. $(dirname "$0")/test-lib.sh || exit 1

create_echo_script () {
    local TOKEN="${RANDOM}"
    mkdir -p ${BIN_DIR}
    cat <<EOF >"${BIN_DIR}/${1}"
#!/bin/sh
echo "${TOKEN}" > ${3}
EOF
    chmod +x "${BIN_DIR}/${1}"
    echo "${TOKEN}" > ${2}
}

create_printenv_script () {
    mkdir -p ${BIN_DIR}
    cat <<EOF >"${BIN_DIR}/${1}"
#!/bin/sh
printenv "${2}" > "${3}"
EOF
    chmod +x "${BIN_DIR}/${1}"
}

# add a message to generate mail dir and database
add_message

BIN_DIR=`pwd`/bin
PATH=$BIN_DIR:$PATH

test_begin_subtest "'notmuch foo' runs notmuch-foo"
rm -rf ${BIN_DIR}
create_echo_script "notmuch-foo" EXPECTED OUTPUT $HOOK_DIR
notmuch foo
test_expect_equal_file_nonempty EXPECTED OUTPUT

create_printenv_script "notmuch-printenv" NOTMUCH_CONFIG OUTPUT

test_begin_subtest "NOTMUCH_CONFIG is set"
notmuch printenv
cat <<EOF > EXPECTED
${NOTMUCH_CONFIG}
EOF
test_expect_equal_file_nonempty EXPECTED OUTPUT

test_begin_subtest "NOTMUCH_CONFIG is set by --config"
test_subtest_known_broken
cp "${NOTMUCH_CONFIG}" "${NOTMUCH_CONFIG}.alternate"
cat <<EOF > EXPECTED
${NOTMUCH_CONFIG}.alternate
EOF
notmuch --config "${NOTMUCH_CONFIG}.alternate" printenv
test_expect_equal_file_nonempty EXPECTED OUTPUT

test_done

debug log:

solving b121fc72 ...
found b121fc72 in https://yhetil.org/notmuch.git/

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).