File: T405-external.sh

package info (click to toggle)
notmuch 0.40-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,120 kB
  • sloc: sh: 22,063; ansic: 14,938; lisp: 9,090; cpp: 8,030; python: 6,342; perl: 391; makefile: 231; javascript: 34; ruby: 9
file content (54 lines) | stat: -rwxr-xr-x 1,236 bytes parent folder | download | duplicates (4)
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
#!/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"
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