mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
57 lines
1.4 KiB
Bash
57 lines
1.4 KiB
Bash
|
|
load 'test_helper/common'
|
|
|
|
setup() {
|
|
run_setup_file_if_necessary
|
|
}
|
|
|
|
teardown() {
|
|
run_teardown_file_if_necessary
|
|
}
|
|
|
|
setup_file() {
|
|
docker run -d --name mail_with_imap \
|
|
-v "$(duplicate_config_for_container .)":/tmp/docker-mailserver \
|
|
-v "`pwd`/test/test-files":/tmp/docker-mailserver-test:ro \
|
|
-e ENABLE_SASLAUTHD=1 \
|
|
-e SASLAUTHD_MECHANISMS=rimap \
|
|
-e SASLAUTHD_MECH_OPTIONS=127.0.0.1 \
|
|
-e POSTMASTER_ADDRESS=postmaster@localhost.localdomain \
|
|
-e DMS_DEBUG=0 \
|
|
-h mail.my-domain.com -t ${NAME}
|
|
wait_for_smtp_port_in_container mail_with_imap
|
|
}
|
|
|
|
teardown_file() {
|
|
docker rm -f mail_with_imap
|
|
}
|
|
|
|
@test "first" {
|
|
skip 'only used to call setup_file from setup'
|
|
}
|
|
|
|
#
|
|
# RIMAP
|
|
#
|
|
|
|
# dovecot
|
|
@test "checking dovecot: ldap rimap connection and authentication works" {
|
|
run docker exec mail_with_imap /bin/sh -c "nc -w 1 0.0.0.0 143 < /tmp/docker-mailserver-test/auth/imap-auth.txt"
|
|
assert_success
|
|
}
|
|
|
|
# saslauthd
|
|
@test "checking saslauthd: sasl rimap authentication works" {
|
|
run docker exec mail_with_imap bash -c "testsaslauthd -u user1@localhost.localdomain -p mypassword"
|
|
assert_success
|
|
}
|
|
|
|
@test "checking saslauthd: rimap smtp authentication" {
|
|
run docker exec mail_with_imap /bin/sh -c "nc -w 5 0.0.0.0 25 < /tmp/docker-mailserver-test/auth/smtp-auth-login.txt | grep 'Authentication successful'"
|
|
assert_success
|
|
}
|
|
|
|
@test "last" {
|
|
skip 'only used to call teardown_file from teardown'
|
|
}
|