mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
2caec2cdf6
* refactor `mail_pop3.bats` * refactor `mail_with_imap.bats` * refactor `mail_with_relays.bats` * moved test that that did not belong into POP3 test * slightly clean up `no_container.bats` Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
load "${REPOSITORY_ROOT}/test/helper/setup"
|
|
load "${REPOSITORY_ROOT}/test/helper/common"
|
|
|
|
# ! ATTENTION: Must be run in serial mode, as no existing containers should be present.
|
|
|
|
# Tests the `setup.sh` companion script.
|
|
# Only test coverage below is that the config path `-p` and image `-i` options work as intended.
|
|
BATS_TEST_NAME_PREFIX='[No Existing Container] '
|
|
|
|
function setup_file() {
|
|
run docker ps # fail early if the testing image is already running:
|
|
assert_success
|
|
refute_output --partial "${IMAGE_NAME}"
|
|
|
|
export TEST_TMP_CONFIG
|
|
TEST_TMP_CONFIG=$(_duplicate_config_for_container . 'no_container')
|
|
}
|
|
|
|
@test "'setup.sh -p <PATH> -i <IMAGE>' should correctly use options" {
|
|
# Create a `postfix-virtual.cf` config to verify the container can access it:
|
|
local MAIL_ALIAS='no_container@example.test no_container@forward.test'
|
|
echo "${MAIL_ALIAS}" > "${TEST_TMP_CONFIG}/postfix-virtual.cf"
|
|
|
|
# Should run the testing image with a volume mount to the provided path:
|
|
run ./setup.sh -p "${TEST_TMP_CONFIG}" -i "${IMAGE_NAME}" alias list
|
|
assert_success
|
|
assert_output --partial "* ${MAIL_ALIAS}"
|
|
}
|