2023-02-06 22:59:01 +00:00
|
|
|
load "${REPOSITORY_ROOT}/test/helper/common"
|
|
|
|
load "${REPOSITORY_ROOT}/test/helper/setup"
|
|
|
|
|
|
|
|
BATS_TEST_NAME_PREFIX='[SASLauthd + RIMAP] '
|
|
|
|
CONTAINER_NAME='dms-test_saslauthd_and_rimap'
|
|
|
|
|
|
|
|
function setup_file() {
|
|
|
|
_init_with_defaults
|
|
|
|
|
|
|
|
local CUSTOM_SETUP_ARGUMENTS=(
|
|
|
|
--env ENABLE_SASLAUTHD=1
|
|
|
|
--env SASLAUTHD_MECH_OPTIONS=127.0.0.1
|
|
|
|
--env SASLAUTHD_MECHANISMS=rimap
|
|
|
|
--env PERMIT_DOCKER=container
|
|
|
|
)
|
2019-08-16 21:32:21 +00:00
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
_common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
|
|
|
_wait_for_smtp_port_in_container mail_with_imap
|
2019-08-16 21:32:21 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
function teardown_file() { _default_teardown ; }
|
2019-08-16 21:32:21 +00:00
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
@test '(Dovecot) LDAP RIMAP connection and authentication works' {
|
|
|
|
_run_in_container_bash "nc -w 1 0.0.0.0 143 < /tmp/docker-mailserver-test/auth/imap-auth.txt"
|
2019-08-16 21:32:21 +00:00
|
|
|
assert_success
|
|
|
|
}
|
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
@test '(SASLauthd) SASL RIMAP authentication works' {
|
|
|
|
_run_in_container testsaslauthd -u 'user1@localhost.localdomain' -p 'mypassword'
|
2019-08-16 21:32:21 +00:00
|
|
|
assert_success
|
|
|
|
}
|
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
@test '(SASLauthd) RIMAP SMTP authentication works' {
|
|
|
|
_run_in_container_bash 'nc -w 5 0.0.0.0 25 < /tmp/docker-mailserver-test/auth/smtp-auth-login.txt'
|
2019-08-16 21:32:21 +00:00
|
|
|
assert_success
|
2023-02-23 14:19:39 +00:00
|
|
|
assert_output --partial 'Error: authentication not enabled'
|
|
|
|
_run_in_container_bash 'nc -w 5 0.0.0.0 465 < /tmp/docker-mailserver-test/auth/smtp-auth-login.txt'
|
|
|
|
assert_success
|
|
|
|
assert_output --partial 'Authentication successful'
|
|
|
|
_run_in_container_bash 'nc -w 5 0.0.0.0 587 < /tmp/docker-mailserver-test/auth/smtp-auth-login.txt'
|
|
|
|
assert_success
|
2023-02-06 22:59:01 +00:00
|
|
|
assert_output --partial 'Authentication successful'
|
2019-08-16 21:32:21 +00:00
|
|
|
}
|
2022-05-07 22:28:32 +00:00
|
|
|
|
2023-02-06 22:59:01 +00:00
|
|
|
@test '(Dovecot) master account can login' {
|
|
|
|
_run_in_container testsaslauthd -u 'user1@localhost.localdomain*masterusername' -p 'masterpassword'
|
2022-05-07 22:28:32 +00:00
|
|
|
assert_success
|
|
|
|
}
|