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 56 57 58 59 60 61 62
|
#!/bin/sh
#
# See if we handle multiple components of the same name correctly.
#
set -e
if test -z "${MH_OBJ_DIR}"; then
srcdir=`dirname "$0"`/../..
MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
fi
. "$MH_OBJ_DIR/test/common.sh"
setup_test
# create test replcomps
form="$MH_TEST_DIR/$$.replcomps"
cat > "$form" <<EOF
From: Nowhere User <nowhere@example.com>
%(lit)%(formataddr %<{reply-to}%?{from}%>)\
%<(nonnull)%(void(width))%(putaddr To: )\n%>\
%(lit)%(formataddr{cc})\
%<(nonnull)%(void(width))%(putaddr cc: )\n%>\
%<{subject}Subject: Re: %{subject}\n%>\
--------
EOF
cat > "${MH_TEST_DIR}/Mail/inbox/11" <<EOF
From: Test1 <test1@example.com>
To: Nowhere User <nowhere@example.com>
cc: Mister User One <mruserone@example.com>
Subject: This is a subject
cc: Mister User Two <mrusertwo@example.com>
Subject: that got continued on another line
Date: 28 Sep 2006 03:04:05 -0400
This is a new test message
EOF
expected="$MH_TEST_DIR/$$.expected"
actual="$MH_TEST_DIR/Mail/draft"
cat > "$expected" <<EOF
From: Nowhere User <nowhere@example.com>
To: Test1 <test1@example.com>
cc: Mister User One <mruserone@example.com>,
Mister User Two <mrusertwo@example.com>
Subject: Re: This is a subject that got continued on another line
--------
Test1 writes:
> This is a new test message
EOF
run_prog repl -editor true -cc cc -format -form $form -width 72 \
-nowhatnowproc 11 || exit 1
check "$expected" "$actual"
test ${failed:-0} -eq 0 && rm "$form"
exit $failed
|