mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Tests: Extract mail_fetchmail into own .bats file
This commit is contained in:
parent
a03c741e1b
commit
d05255cb04
8
Makefile
8
Makefile
|
@ -129,14 +129,6 @@ run:
|
||||||
--cap-add=NET_ADMIN \
|
--cap-add=NET_ADMIN \
|
||||||
-h mail.my-domain.com -t $(NAME)
|
-h mail.my-domain.com -t $(NAME)
|
||||||
sleep 15
|
sleep 15
|
||||||
docker run --rm -d --name mail_fetchmail \
|
|
||||||
-v "`pwd`/test/config":/tmp/docker-mailserver \
|
|
||||||
-v "`pwd`/test/test-files":/tmp/docker-mailserver-test:ro \
|
|
||||||
-e ENABLE_FETCHMAIL=1 \
|
|
||||||
--cap-add=NET_ADMIN \
|
|
||||||
-e DMS_DEBUG=0 \
|
|
||||||
-h mail.my-domain.com -t $(NAME)
|
|
||||||
sleep 15
|
|
||||||
docker run --rm -d --name mail_disabled_clamav_spamassassin \
|
docker run --rm -d --name mail_disabled_clamav_spamassassin \
|
||||||
-v "`pwd`/test/config":/tmp/docker-mailserver \
|
-v "`pwd`/test/config":/tmp/docker-mailserver \
|
||||||
-v "`pwd`/test/test-files":/tmp/docker-mailserver-test:ro \
|
-v "`pwd`/test/test-files":/tmp/docker-mailserver-test:ro \
|
||||||
|
|
64
test/mail_fetchmail.bats
Normal file
64
test/mail_fetchmail.bats
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
load 'test_helper/common'
|
||||||
|
|
||||||
|
function setup() {
|
||||||
|
run_setup_file_if_necessary
|
||||||
|
}
|
||||||
|
|
||||||
|
function teardown() {
|
||||||
|
run_teardown_file_if_necessary
|
||||||
|
}
|
||||||
|
|
||||||
|
function setup_file() {
|
||||||
|
docker run -d --name mail_fetchmail \
|
||||||
|
-v "`pwd`/test/config":/tmp/docker-mailserver \
|
||||||
|
-v "`pwd`/test/test-files":/tmp/docker-mailserver-test:ro \
|
||||||
|
-e ENABLE_FETCHMAIL=1 \
|
||||||
|
--cap-add=NET_ADMIN \
|
||||||
|
-e DMS_DEBUG=0 \
|
||||||
|
-h mail.my-domain.com -t ${NAME}
|
||||||
|
wait_for_finished_setup_in_container mail_fetchmail
|
||||||
|
}
|
||||||
|
|
||||||
|
function teardown_file() {
|
||||||
|
docker rm -f mail_fetchmail
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "first" {
|
||||||
|
skip 'this test must come first to reliably identify when to run setup_file'
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# processes
|
||||||
|
#
|
||||||
|
|
||||||
|
@test "checking process: fetchmail (fetchmail server enabled)" {
|
||||||
|
run docker exec mail_fetchmail /bin/bash -c "ps aux --forest | grep -v grep | grep '/usr/bin/fetchmail'"
|
||||||
|
assert_success
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# fetchmail
|
||||||
|
#
|
||||||
|
|
||||||
|
@test "checking fetchmail: gerneral options in fetchmailrc are loaded" {
|
||||||
|
run docker exec mail_fetchmail grep 'set syslog' /etc/fetchmailrc
|
||||||
|
assert_success
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "checking fetchmail: fetchmail.cf is loaded" {
|
||||||
|
run docker exec mail_fetchmail grep 'pop3.example.com' /etc/fetchmailrc
|
||||||
|
assert_success
|
||||||
|
}
|
||||||
|
|
||||||
|
#
|
||||||
|
# supervisor
|
||||||
|
#
|
||||||
|
|
||||||
|
@test "checking restart of process: fetchmail" {
|
||||||
|
run docker exec mail_fetchmail /bin/bash -c "pkill fetchmail && sleep 10 && ps aux --forest | grep -v grep | grep '/usr/bin/fetchmail'"
|
||||||
|
assert_success
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "last" {
|
||||||
|
skip 'this test is only there to reliably mark the end for the teardown_file'
|
||||||
|
}
|
|
@ -119,11 +119,6 @@ function count_processed_changes() {
|
||||||
assert_failure
|
assert_failure
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "checking process: fetchmail (fetchmail server enabled)" {
|
|
||||||
run docker exec mail_fetchmail /bin/bash -c "ps aux --forest | grep -v grep | grep '/usr/bin/fetchmail'"
|
|
||||||
assert_success
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "checking process: clamav (clamav disabled by ENABLED_CLAMAV=0)" {
|
@test "checking process: clamav (clamav disabled by ENABLED_CLAMAV=0)" {
|
||||||
run docker exec mail_disabled_clamav_spamassassin /bin/bash -c "ps aux --forest | grep -v grep | grep '/usr/sbin/clamd'"
|
run docker exec mail_disabled_clamav_spamassassin /bin/bash -c "ps aux --forest | grep -v grep | grep '/usr/sbin/clamd'"
|
||||||
assert_failure
|
assert_failure
|
||||||
|
@ -840,20 +835,6 @@ function count_processed_changes() {
|
||||||
assert_failure
|
assert_failure
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
|
||||||
# fetchmail
|
|
||||||
#
|
|
||||||
|
|
||||||
@test "checking fetchmail: gerneral options in fetchmailrc are loaded" {
|
|
||||||
run docker exec mail_fetchmail grep 'set syslog' /etc/fetchmailrc
|
|
||||||
assert_success
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "checking fetchmail: fetchmail.cf is loaded" {
|
|
||||||
run docker exec mail_fetchmail grep 'pop3.example.com' /etc/fetchmailrc
|
|
||||||
assert_success
|
|
||||||
}
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# system
|
# system
|
||||||
#
|
#
|
||||||
|
@ -1482,11 +1463,6 @@ function count_processed_changes() {
|
||||||
assert_success
|
assert_success
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "checking restart of process: fetchmail" {
|
|
||||||
run docker exec mail_fetchmail /bin/bash -c "pkill fetchmail && sleep 10 && ps aux --forest | grep -v grep | grep '/usr/bin/fetchmail'"
|
|
||||||
assert_success
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "checking restart of process: clamav (clamav disabled by ENABLED_CLAMAV=0)" {
|
@test "checking restart of process: clamav (clamav disabled by ENABLED_CLAMAV=0)" {
|
||||||
run docker exec mail_disabled_clamav_spamassassin /bin/bash -c "pkill -f clamd && sleep 10 && ps aux --forest | grep -v grep | grep '/usr/sbin/clamd'"
|
run docker exec mail_disabled_clamav_spamassassin /bin/bash -c "pkill -f clamd && sleep 10 && ps aux --forest | grep -v grep | grep '/usr/sbin/clamd'"
|
||||||
assert_failure
|
assert_failure
|
||||||
|
|
Loading…
Reference in a new issue