mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
75ee0c1145
- Introduced `CONTAINER_NAME` and `TEST_NAME_PREFIX` as new vars for better managing test consistency (DRY). - `CONTAINER_NAME` replaces any repeated container name with the variable. The value will differ slightly as the prior prefix (`mail_`) has been changed to `dms-test-`. - `TEST_NAME_PREFIX` provides a prefix value for each `@test` description string. --- chore: Add a reference template for tests
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
load "${REPOSITORY_ROOT}/test/helper/setup"
|
|
load "${REPOSITORY_ROOT}/test/helper/common"
|
|
|
|
TEST_NAME_PREFIX='Dovecot protocols:'
|
|
|
|
@test "${TEST_NAME_PREFIX} dual-stack IP configuration" {
|
|
local CONTAINER_NAME='dms-test-dovecot_protocols_all'
|
|
local CUSTOM_SETUP_ARGUMENTS=(--env DOVECOT_INET_PROTOCOLS=)
|
|
|
|
init_with_defaults
|
|
common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
|
|
|
_run_in_container grep '^#listen = \*, ::' /etc/dovecot/dovecot.conf
|
|
assert_success
|
|
assert_output '#listen = *, ::'
|
|
|
|
docker rm -f "${CONTAINER_NAME}"
|
|
}
|
|
|
|
@test "${TEST_NAME_PREFIX} IPv4 configuration" {
|
|
local CONTAINER_NAME='dms-test-dovecot_protocols_ipv4'
|
|
local CUSTOM_SETUP_ARGUMENTS=(--env DOVECOT_INET_PROTOCOLS=ipv4)
|
|
|
|
init_with_defaults
|
|
common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
|
|
|
_run_in_container grep '^listen = \*$' /etc/dovecot/dovecot.conf
|
|
assert_success
|
|
assert_output 'listen = *'
|
|
|
|
docker rm -f "${CONTAINER_NAME}"
|
|
}
|
|
|
|
@test "${TEST_NAME_PREFIX} IPv6 configuration" {
|
|
local CONTAINER_NAME='dms-test-dovecot_protocols_ipv6'
|
|
local CUSTOM_SETUP_ARGUMENTS=(--env DOVECOT_INET_PROTOCOLS=ipv6)
|
|
|
|
init_with_defaults
|
|
common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
|
|
|
_run_in_container grep '^listen = \[::\]$' /etc/dovecot/dovecot.conf
|
|
assert_success
|
|
assert_output 'listen = [::]'
|
|
|
|
docker rm -f "${CONTAINER_NAME}"
|
|
}
|