mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
21 lines
645 B
Bash
21 lines
645 B
Bash
load 'test_helper/common'
|
|
|
|
function setup() {
|
|
CONTAINER=$(docker run -d \
|
|
-v "$(duplicate_config_for_container .)":/tmp/docker-mailserver \
|
|
-v "$(pwd)/test/test-files":/tmp/docker-mailserver-test:ro \
|
|
-e DMS_DEBUG=0 \
|
|
-h mail.my-domain.com -t ${NAME})
|
|
# using postfix availability as start indicator, this might be insufficient for postgrey
|
|
wait_for_smtp_port_in_container $CONTAINER
|
|
}
|
|
|
|
function teardown() {
|
|
docker rm -f $CONTAINER
|
|
}
|
|
|
|
@test "checking process: postgrey (disabled in default configuration)" {
|
|
run docker exec $CONTAINER /bin/bash -c "ps aux --forest | grep -v grep | grep 'postgrey'"
|
|
assert_failure
|
|
}
|