1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00
Files
go-inbucket/swaks-tests/run-tests.sh
James Hillyerd 511e014a90 Support down-converting of HTML to plain text
- Display a warning when text was generated from HTML
- Add a semi complicated, responsive HTML email for future testing
- Closes #20
2016-03-03 19:44:48 -08:00

51 lines
969 B
Bash
Executable File

#!/bin/sh
# run-tests.sh
# description: Generate test emails for Inbucket
set -eo pipefail
# We need to be in swaks-tests directory
cmdpath="$(dirname "$0")"
if [ "$cmdpath" != "." ]; then
cd "$cmdpath"
fi
case "$1" in
"")
to="swaks"
;;
--*)
to="swaks"
;;
*)
to="$1"
;;
esac
export SWAKS_OPT_server="127.0.0.1:2500"
export SWAKS_OPT_to="$to@inbucket.local"
# Basic test
swaks $* --h-Subject: "Swaks Plain Text" --body text.txt
# HTML test
swaks $* --h-Subject: "Swaks HTML" --data mime-html.raw
# Top level HTML test
swaks $* --h-Subject: "Swaks Top Level HTML" --data nonmime-html.raw
# Attachment test
swaks $* --h-Subject: "Swaks Attachment" --attach-type image/png --attach favicon.png --body text.txt
# Encoded subject line test
swaks $* --data utf8-subject.raw
# Gmail test
swaks $* --data gmail.raw
# Outlook test
swaks $* --data outlook.raw
# Nonemime responsive HTML test
swaks $* --data nonmime-html-responsive.raw