summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAntoine Eiche <lewo@abesis.fr>2020-10-05 21:18:36 +0200
committerAntoine Eiche <lewo@abesis.fr>2020-10-05 21:18:36 +0200
commit4818b57a922cbf68e66d162c62116a2ab0005095 (patch)
treead4163803101db0fd38aa1a4ead8bf55f6cd025b /tests
parentbeba28ae14f2dc7adacf5a3a17ac70e3f0b83d57 (diff)
test.dovecot: ensure port 143 is closed when enableImap is not set
The test also checks the connection on the imap port 993 is a SSL connection.
Diffstat (limited to 'tests')
-rw-r--r--tests/intern.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/intern.nix b/tests/intern.nix
index b4f42db..0799fc0 100644
--- a/tests/intern.nix
+++ b/tests/intern.nix
@@ -62,6 +62,8 @@ pkgs.nixosTest {
vmailGroupName = "vmail";
vmailUID = 5000;
+
+ enableImap = false;
};
};
};
@@ -86,5 +88,12 @@ pkgs.nixosTest {
machine.succeed(
"${pkgs.curl}/bin/curl --unix-socket /run/rspamd/worker-controller.sock http://localhost/ | grep -q '<body>'"
)
+
+ with subtest("imap port 143 is closed and imaps is serving SSL"):
+ machine.wait_for_closed_port(143)
+ machine.wait_for_open_port(993)
+ machine.succeed(
+ "echo | ${pkgs.openssl}/bin/openssl s_client -connect localhost:993 | grep 'New, TLS'"
+ )
'';
}