Merge pull request #238 from tomav/fix-expired-certs

Changed test regarding certificate which has expired. Can't generate …
This commit is contained in:
Thomas VIAL 2016-07-23 19:40:44 +02:00 committed by GitHub
commit 4a413e8e58

View file

@ -346,7 +346,7 @@
}
@test "checking ssl: letsencrypt cert works correctly" {
run docker exec mail_pop3 /bin/sh -c "timeout 1 openssl s_client -connect 0.0.0.0:587 -starttls smtp -CApath /etc/ssl/certs/ | grep 'Verify return code: 0 (ok)'"
run docker exec mail_pop3 /bin/sh -c "timeout 1 openssl s_client -connect 0.0.0.0:587 -starttls smtp -CApath /etc/ssl/certs/ | grep 'Verify return code: 10 (certificate has expired)'"
[ "$status" -eq 0 ]
}