emailrelay/bin/emailrelay-test.sh_
Graeme Walker a76af47d73 v0.9.4
2001-10-23 12:00:00 +00:00

167 lines
3.8 KiB
Bash
Raw Blame History

#!/bin/sh
#
# Copyright (C) 2001 Graeme Walker <graeme_walker@users.sourceforge.net>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# ===
#
# emailrelay-test.sh
#
# Tests the E-MailRelay system.
#
# Creates four temporary spool directories under /tmp and runs
# four emailrelay servers to bucket-brigade a test message from one to
# the next. The test succeeds if the message gets into the final
# spool directory.
#
# Once all the servers have been killed the separate log files are
# concatenated into the summary log file "/tmp/emailrelay-test.out".
#
# If this test takes more than a second or two then it has failed.
#
# configuration
#
exe="../src/main/emailrelay"
poke="../src/main/emailrelay-poke"
null_filter="/bin/touch"
pp="1001" # port-prefix
# configuration fallback
#
if test \! -f ${null_filter}
then
null_filter="/usr/bin/touch"
fi
# initialisation
#
base_dir="/tmp/`basename $0`.$$.tmp"
exit_code="1"
Cleanup()
{
kill `cat ${base_dir}/pid-* 2>/dev/null` 2>/dev/null
if test -d ${base_dir}
then
grep "MailRelay-Reason" ${base_dir}/*/*envelope*bad > /tmp/`basename $0`.out 2>/dev/null
grep "." ${base_dir}/log-? >> /tmp/`basename $0`.out 2>/dev/null
fi
rm -rf ${base_dir} 2>/dev/null
}
Trap()
{
Cleanup
exit ${exit_code}
}
RunServer()
{
port_="${1}"
spool_="${2}"
log_="${3}"
pidfile_="${4}"
extra_="${5}"
mkdir -p ${base_dir}/${spool_}
${exe} --log --no-syslog --port ${port_} --spool-dir ${base_dir}/${spool_} \
--pid-file ${base_dir}/${pidfile_} ${extra_} 2> ${base_dir}/${log_}
}
RunClient()
{
to_="${1}"
spool_="${2}"
log_="${3}"
pidfile_="${4}"
${exe} --forward --no-daemon --dont-serve --log --no-syslog \
--pid-file ${base_dir}/${pidfile_} \
--forward-to ${to_} --spool-dir ${base_dir}/${spool_} 2> ${base_dir}/${log_}
}
RunPoke()
{
port_="${1}"
log_="${2}"
${poke} ${port_} > ${base_dir}/${log_}
}
Content()
{
echo "To: recipient-1@localhost, recipient-2@localhost"
echo "Subject: test message 1"
echo "From: sender"
echo " "
echo "Content"
}
Envelope()
{
echo "X-MailRelay-Format: #2821.2"
echo "X-MailRelay-Content: 8bit"
echo "X-MailRelay-From: sender"
echo "X-MailRelay-ToCount: 2"
echo "X-MailRelay-To-Remote: recipient-1@localhost"
echo "X-MailRelay-To-Remote: recipient-2@localhost"
echo "X-MailRelay-End: 1"
}
CrLf()
{
sed 's/$/<2F>/' | tr '<27>' '\r'
}
CheckResults()
{
if test -f ${base_dir}/store-4/*.envelope -a -f ${base_dir}/store-4/*.content
then
exit_code="0"
echo `basename $0`: succeeded
else
echo `basename $0`: failed: see /tmp/`basename $0`.out >&2
fi
}
StartTimer()
{
( sleep 5 ; Cleanup ) &
}
CreateMessages()
{
mkdir -p ${base_dir}/store-1
Content | CrLf > ${base_dir}/store-1/emailrelay.0.1.content
Envelope | CrLf > ${base_dir}/store-1/emailrelay.0.1.envelope
}
trap "Trap ; exit" 1 2 3 13 15
trap "Trap 0 ; exit" 0
StartTimer
RunServer ${pp}1 store-2 log-1 pid-1
RunServer ${pp}2 store-2 log-2 pid-2 "--admin ${pp}9 --forward-to localhost:${pp}3"
RunServer ${pp}3 store-3 log-3 pid-3 "--immediate --forward-to localhost:${pp}4 --filter ${null_filter}"
RunServer ${pp}4 store-4 log-4 pid-4
CreateMessages
RunClient localhost:${pp}1 store-1 log-c pid-5
RunPoke ${pp}9 log-p
CheckResults