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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
#!/bin/sh
#
# Tests to see if "forw -digest" works correctly.
#
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
expected="${MH_TEST_DIR}/$$.expected"
actual="${MH_TEST_DIR}/Mail/draft"
from="Mr Test User <test@example.com>"
to1="User One <userone@example.com>"
to2="User Two <usertwo@example.com>"
cc1="CC User One <ccuserone@example.com>"
cc2="CC User Two <ccusertwo@example.com>"
cc3="CC User Three <ccuserthree@example.com>"
cc4="CC User Four <ccuserfour@example.com>"
fcc1="+nosuchmailbox"
fcc2="+nosuchmailbox2"
digestdate=`date "+%A, %e %b %Y"`
cat > "$expected" <<EOF
From: ${from}
To: ${to1},
${to2}
cc: ${cc1},
${cc2},
${cc3},
${cc4}
Fcc: ${fcc1}, ${fcc2}
Subject: digest-test Digest V2 #3
Reply-To: digest-test
--------
digest-test Digest $digestdate
Volume 2 : Issue 3
Today's Topics:
------------------------------------------------------------
EOF
i=1
while [ "$i" -le 6 ]
do
filename=`mhpath +inbox $i`
cat $filename >> "$expected"
cat >> "$expected" <<EOF
------------------------------
EOF
i=`expr $i + 1`
done
cat >> "$expected" <<EOF
End of digest-test Digest [Volume 2 Issue 3]
********************************************
EOF
run_prog forw -editor true -from "${from}" -to "${to1}" -to "${to2}" \
-cc "${cc1}" -cc "${cc2}" -cc "${cc3}" -cc "${cc4}" -fcc "${fcc1}" \
-fcc "${fcc2}" -width 60 -issue 3 -volume 2 -nowhatnowproc \
-digest digest-test +inbox 1-6 || exit 1
check "${expected}" "${actual}"
rm -f "${actual}"
#
# Once more, but taking some of the defaults
#
cat > "$expected" <<EOF
From: ${from}
To: digest-test Distribution: dist-digest-test;
Subject: This is a test
Reply-To: digest-test
--------
digest-test Digest ${digestdate}
Volume 2 : Issue 4
Today's Topics:
------------------------------------------------------------
EOF
i=7
while [ "$i" -le 8 ]
do
filename=`mhpath +inbox $i`
cat $filename >> "$expected"
cat >> "$expected" <<EOF
------------------------------
EOF
i=`expr $i + 1`
done
cat >> "$expected" <<EOF
End of digest-test Digest [Volume 2 Issue 4]
********************************************
EOF
run_prog forw -editor true -from "${from}" -nowhatnowproc -digest digest-test \
-subject "This is a test" +inbox 7-8 || exit 1
check "${expected}" "${actual}"
exit $failed
|