X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6b1962e92b9a3bfc7570aecb844fe67141fb87d7..c3eea81ded78e7803b42f09697bc202e1b1aaf86:/test/mhbuild/test-utf8-body diff --git a/test/mhbuild/test-utf8-body b/test/mhbuild/test-utf8-body index 650133c9..22de535c 100755 --- a/test/mhbuild/test-utf8-body +++ b/test/mhbuild/test-utf8-body @@ -16,8 +16,10 @@ fi setup_test testname="${MH_TEST_DIR}/$$" +expected="$MH_TEST_DIR/$$.expected" +actual="$MH_TEST_DIR/$$.actual" -LC_ALL=en_US.UTF-8; export LC_ALL +require_locale en_US.UTF-8 en_US.UTF8 en_US.utf-8 en_US.utf8 #### Rely on sendmail/pipe below to override default mts. mts_fakesendmail="${MHMTSCONF}-fakesendmail" @@ -46,7 +48,9 @@ test_attachment () check "${testname}.actual" "$1" } + # check that 7-bit body isn't encoded +start_test "7-bit body isn't encoded" cat > "${MH_TEST_DIR}/attachment.txt" < "${MH_TEST_DIR}/Mail/draft" < To: Somebody @@ -124,8 +129,67 @@ EOF test_attachment "${testname}.expected" + +# check that 8-bit attachment gets C-T-E +start_test '8-bit attachment gets C-T-E' +rm -f "${MH_TEST_DIR}/attachment.txt" +cat > "${MH_TEST_DIR}/attachment.txt" < "${MH_TEST_DIR}/Mail/draft" < +To: Somebody +Subject: Test +Attach: $MH_TEST_DIR/attachment.txt +EOF + +cat > "${testname}.expected" < +To: Somebody +Subject: Test +MIME-Version: 1.0 +Content-Type: text/plain; name="attachment.txt" +Content-Description: attachment.txt +Content-Disposition: attachment; filename="attachment.txt" +Content-Transfer-Encoding: 8bit +Date: + +8-bit attachment, ¡Ay, caramba! +EOF + +test_attachment "${testname}.expected" + + +# check 8-bit body but make sure that the locale is set to C, which +# should cause mhbuild to fail +start_test '8-bit body with C locale' +cat > "${MH_TEST_DIR}/Mail/draft" < +To: Somebody +Subject: Test +Attach: $MH_TEST_DIR/attachment.txt + +¡Ay, caramba! +EOF + +LC_ALL="C"; export LC_ALL + +set +e +run_prog send -draft -mts sendmail/pipe > "$actual" 2>&1 +set -e + +cat > "$expected" <