2023-01-24 08:21:39 +00:00
|
|
|
load "${REPOSITORY_ROOT}/test/helper/common"
|
|
|
|
load "${REPOSITORY_ROOT}/test/helper/setup"
|
2019-10-08 20:15:27 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
BATS_TEST_NAME_PREFIX='[SMTP-Only] '
|
|
|
|
CONTAINER_NAME='dms-test_env-smtp-only'
|
2022-05-30 00:53:30 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
function setup_file() {
|
|
|
|
_init_with_defaults
|
2019-10-08 20:15:27 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
local CUSTOM_SETUP_ARGUMENTS=(
|
|
|
|
--env SMTP_ONLY=1
|
|
|
|
--env PERMIT_DOCKER=network
|
|
|
|
)
|
2019-10-08 20:15:27 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
_common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
2019-10-08 20:15:27 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
_wait_for_smtp_port_in_container
|
2019-10-08 20:15:27 +00:00
|
|
|
}
|
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
function teardown_file() { _default_teardown ; }
|
2020-04-24 12:55:32 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
@test "Dovecot quota absent in postconf" {
|
|
|
|
_run_in_container postconf
|
2019-10-08 20:15:27 +00:00
|
|
|
assert_success
|
2023-01-24 08:21:39 +00:00
|
|
|
refute_output --partial "check_policy_service inet:localhost:65265'"
|
|
|
|
}
|
2023-01-12 21:10:58 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
# TODO: needs complete rework when proper DNS container is running for tests
|
|
|
|
@test "sending mail should work" {
|
|
|
|
skip 'TODO: This test is absolutely broken and needs reworking!'
|
2020-11-06 13:11:42 +00:00
|
|
|
|
2019-10-08 20:15:27 +00:00
|
|
|
assert_success
|
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
# it looks as if someone tries to send mail to another domain outside of DMS
|
2023-02-24 09:44:18 +00:00
|
|
|
_send_email 'email-templates/smtp-only'
|
2023-01-24 08:21:39 +00:00
|
|
|
_wait_for_empty_mail_queue_in_container
|
2022-05-30 00:53:30 +00:00
|
|
|
|
2023-01-24 08:21:39 +00:00
|
|
|
# this seemingly succeeds, but looking at the logs, it doesn't
|
|
|
|
_run_in_container_bash 'grep -cE "to=<user2\@external.tld>.*status\=sent" /var/log/mail/mail.log'
|
|
|
|
# this is absolutely useless! `grep -c` count 0 but also returns 0; the mail was never properly sent!
|
|
|
|
[[ ${status} -ge 0 ]]
|
2019-10-08 20:15:27 +00:00
|
|
|
}
|