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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
|
#!/bin/sh
#
# Test the basic behavior of post
#
set -e
if test -z "${MH_OBJ_DIR}"; then
srcdir=`dirname "$0"`/../..
MH_OBJ_DIR=`cd "$srcdir" && pwd`; export MH_OBJ_DIR
fi
. "${srcdir}/test/post/test-post-common.sh"
check_exit '-eq 1' "$MH_LIBEXEC_DIR/post" -
#
# Basic test - Simple message, single user, single recipient. Note that
# we test dot-stuffing here as well.
#
start_test 'simple message'
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
This is a test
.
EOF
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
MAIL FROM:<nobody@example.com>
RCPT TO:<somebody@example.com>
DATA
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date:
This is a test
..
.
QUIT
EOF
test_post "${testname}.actual" "${testname}.expected"
#
# Make sure a draft without a From: is rejected
#
start_test 'reject draft without a From:'
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
To: Somebody Else <somebody@example.com>
Subject: Blank Test
This is a blank test
EOF
run_test "send -draft -server 127.0.0.1 -port $localport" \
"post: message has no From: header
post: See default components files for examples
post: re-format message and try again
send: message not delivered to anyone"
#
# Make sure that empty Nmh-* header lines are ignored, and that post
# warns about non-empty ones.
#
start_test 'ignore Nmh-* header lines'
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Nmh-Attachment:
Nmh-Unused: suppress this line
Subject: Test
This is a test
.
EOF
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
MAIL FROM:<nobody@example.com>
RCPT TO:<somebody@example.com>
DATA
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date:
This is a test
..
.
QUIT
EOF
cat > "${testname}.expected_send_output" <<EOF
post: ignoring header line -- Nmh-Unused: suppress this line
EOF
test_post "${testname}.actual" "${testname}.expected" \
>${testname}.send_output 2>&1
check "${testname}.send_output" "${testname}.expected_send_output"
#
# 8-bit without 8BITMIME support
#
start_test '8-bit without 8BITMIME support'
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
This is a test
.
EOF
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
RSET
QUIT
EOF
cat > "${testname}.err.expected" <<EOF
post: SMTP server does not support 8BITMIME, not sending.
Suggest encoding message for 7-bit transport by setting your
locale to C, and/or specifying *b64 in mhbuild directives.
post: problem initializing server; [BHST] ready; I'll buy that for a dollar!
send: message not delivered to anyone
EOF
set +e
test_post "${testname}.actual" "${testname}.expected" 2>"${testname}.err"
set +e
check "${testname}.err" "${testname}.err.expected"
#
# 8-bit with 8BITMIME support
#
start_test '8-bit with 8BITMIME support'
# Cheat: SMTPUTF8 enables 8BITMIME in fakestmp
SMTPUTF8=1; export SMTPUTF8
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
MAIL FROM:<nobody@example.com> BODY=8BITMIME
RCPT TO:<somebody@example.com>
DATA
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
Date:
This is a test
..
.
QUIT
EOF
test_post "${testname}.actual" "${testname}.expected"
#
# 8-bit with 8BITMIME support, inferred from content
#
start_test '8-bit, inferred, with 8BITMIME support'
cat > "${MH_TEST_DIR}/Mail/draft" <<EOF
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
This is a test, with a non-ascii character: §
.
EOF
cat > "${testname}.expected" <<EOF
EHLO nosuchhost.example.com
MAIL FROM:<nobody@example.com> BODY=8BITMIME
RCPT TO:<somebody@example.com>
DATA
From: Mr Nobody <nobody@example.com>
To: Somebody Else <somebody@example.com>
Subject: Test
MIME-Version: 1.0
Content-Type: text/plain; charset="utf-8"
Date:
This is a test, with a non-ascii character: §
..
.
QUIT
EOF
test_post "${testname}.actual" "${testname}.expected"
finish_test
exit ${failed:-0}
|