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
24 lines
673 B
Bash
24 lines
673 B
Bash
load "${REPOSITORY_ROOT}/test/helper/setup"
|
|
load "${REPOSITORY_ROOT}/test/helper/common"
|
|
|
|
export TEST_NAME_PREFIX='default relay host:'
|
|
export CONTAINER_NAME='dms-test-default_relay_host'
|
|
|
|
function setup_file() {
|
|
init_with_defaults
|
|
|
|
local CUSTOM_SETUP_ARGUMENTS=(
|
|
--env DEFAULT_RELAY_HOST=default.relay.host.invalid:25 \
|
|
--env PERMIT_DOCKER=host \
|
|
)
|
|
|
|
common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
|
|
}
|
|
|
|
function teardown_file() { _default_teardown ; }
|
|
|
|
@test "${TEST_NAME_PREFIX} default relay host is added to main.cf" {
|
|
_run_in_container bash -c 'grep -e "^relayhost =" /etc/postfix/main.cf'
|
|
assert_output 'relayhost = default.relay.host.invalid:25'
|
|
}
|