Skip to content

Commit

Permalink
Added test for crontab and services
Browse files Browse the repository at this point in the history
  • Loading branch information
tomav committed Oct 18, 2015
1 parent c6ad590 commit 534b417
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.DS_Store
docker-compose.yml
postfix/ssl/*
assert.sh
assert.sh*
9 changes: 9 additions & 0 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
wget -q https://raw.github.com/lehmannro/assert.sh/master/assert.sh
source assert.sh

# Testing that services are running
assert_raises "docker exec mail ps aux --forest | grep '/usr/lib/postfix/master'" "true"
assert_raises "docker exec mail ps aux --forest | grep '/usr/sbin/saslauthd'" "true"
assert_raises "docker exec mail ps aux --forest | grep '/usr/sbin/clamd'" "true"
assert_raises "docker exec mail ps aux --forest | grep '/usr/sbin/amavisd-new'" "true"

# Testing user creation
assert "docker exec mail ls -A /var/mail/localhost.localdomain/user1" "cur\nnew\ntmp"
assert "docker exec mail ls /var/mail/otherdomain.tld/user2" "cur\nnew\ntmp"
Expand All @@ -12,5 +18,8 @@ assert "docker exec mail ls /var/mail/otherdomain.tld/user2" "cur\nnew\ntmp"
assert_raises "docker exec mail grep 'status=sent (delivered to maildir)' /var/log/mail.log" "false"
assert "docker exec mail ls -A /var/mail/localhost.localdomain/user1/new | wc -l" "1"

# Testing presence of freshclam CRON
assert "docker exec mail crontab -l" "0 1 * * * /usr/bin/freshclam --quiet"

# Ending tests
assert_end

0 comments on commit 534b417

Please sign in to comment.