1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00
mailinabox/tests/suites/mail-basic.sh

78 lines
1.5 KiB
Bash

# -*- indent-tabs-mode: t; tab-width: 4; -*-
#
# Test basic mail functionality
test_trial_send_local() {
# use sendmail -bv to test mail delivery without actually mailing
# anything
test_start "trial_send_local"
# create a standard users alice and bobo
local alice="alice@somedomain.com" bob="bob@somedomain.com"
create_user "$alice" "alice"
create_user "$bob" "bob"
# test delivery, but don't actually mail it
start_log_capture
sendmail_bv_send "$alice" 30 "$bob"
assert_check_logs
have_test_failures && record_captured_mail
# clean up / end
delete_user "$alice"
delete_user "$bob"
test_end
}
test_trial_send_remote() {
# use sendmail -bv to test mail delivery without actually mailing
# anything
test_start "trial_send_remote"
if skip_test remote-smtp; then
test_end
return 0
fi
start_log_capture
sendmail_bv_send "test@google.com" 120
assert_check_logs
have_test_failures && record_captured_mail
test_end
}
test_self_send_receive() {
# test sending mail to yourself
test_start "self-send-receive"
# create standard user alice
local alice="alice@somedomain.com"
create_user "$alice" "alice"
# test actual delivery
start_log_capture
record "[Sending mail to alice as alice]"
local output
output="$($PYMAIL $PRIVATE_IP $alice alice 2>&1)"
local code=$?
record "$output"
if [ $code -ne 0 ]; then
test_failure "$PYMAIL exit code $code: $output"
fi
assert_check_logs
delete_user "$alice"
test_end
}
suite_start "mail-basic" ensure_root_user
test_trial_send_local
test_trial_send_remote
test_self_send_receive
suite_end