setup_test
-prompter - >/dev/null 2>&1 || true # gcov
+check_exit '-eq 1' prompter -
expected=$MH_TEST_DIR/$$.expected
expected_err=$MH_TEST_DIR/$$.expected_err
# check -help
+start_test "-help"
cat >$expected <<EOF
Usage: prompter [switches] file
switches are:
EOF
#### Skip nmh intro text.
-run_prog prompter -help | sed '/^$/,$d' >"$actual" 2>&1
+run_prog prompter -help 2>&1 | sed '/^$/,$d' >"$actual"
check "$expected" "$actual"
# check -version
+start_test "-version"
case `prompter -v` in
prompter\ --*) ;;
* ) printf '%s: prompter -v generated unexpected output\n' "$0" >&2
esac
# check unknown switch
+start_test "unknown switch"
run_test 'prompter -nonexistent' 'prompter: -nonexistent unknown'
# check with no switches
+start_test "with no switches"
run_test 'prompter' 'prompter: usage: prompter [switches] file'
# check with file
+start_test "with file"
cat >$expected <<EOF
Resent-From: sender@example.com
Resent-To: recipient@example.com
check "$expected" "$MH_TEST_DIR/prompter-file" 'keep first'
# check -doteof
+start_test "-doteof"
cat >$MH_TEST_DIR/prompter-file <<EOF
Resent-From: sender@example.com
Resent-To:
check "$expected" "$MH_TEST_DIR/prompter-file" 'keep first'
# check -nodoteof
+start_test "-nodoteof"
cat >$MH_TEST_DIR/prompter-file <<EOF
Resent-From: sender@example.com
Resent-To:
check "$expected" "$MH_TEST_DIR/prompter-file" 'keep first'
# check -noprepend
+start_test "-noprepend"
cat >$MH_TEST_DIR/prompter-file <<EOF
Resent-From: sender@example.com
Resent-To:
check "$expected" "$MH_TEST_DIR/prompter-file"
# check -prepend
+start_test "-prepend"
cat >$MH_TEST_DIR/prompter-file <<EOF
Resent-From: sender@example.com
Resent-To:
check "$MH_TEST_DIR/prompter-file" "$expected" 'keep first'
# check -rapid
+start_test "-rapid"
cat >$expected <<EOF
Resent-From: sender@example.com
Resent-To: recipient@example.com
check "$expected" "$actual"
# check -norapid
+start_test "-norapid"
cat >$expected <<EOF
Resent-From: sender@example.com
Resent-To: recipient@example.com
check "$expected" "$actual"
# check -erase and -kill. We can't test their effects because they
+start_test "-erase and -kill. We can't test their effects because they"
# only affect the terminal and this test execution might not be
# connected to one. So we can just check that the respective options
# were set.
check "$expected" "$actual"
# check -body. It's undocumented but the default, so make sure that
+start_test "-body. It's undocumented but the default, so make sure that"
# it reverses the effect of -nobody.
cat >$expected <<EOF
Resent-From: sender@example.com
check "$expected" "$actual"
# check -nobody. It's undocumented but looks like it removes the body.
+start_test "-nobody. It's undocumented but looks like it removes the body."
cat >$expected <<EOF
Resent-From: sender@example.com
Resent-To: recipient@example.com
check "$expected" "$MH_TEST_DIR/prompter-file"
+finish_test
exit ${failed:-0}