2019-12-15 14:21:38 +00:00
|
|
|
import ./make-test-python.nix ({ lib, ... }:
|
2019-03-27 11:35:24 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
name = "mailcatcher";
|
|
|
|
meta.maintainers = [ lib.maintainers.aanderse ];
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine =
|
2019-03-27 11:35:24 +00:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.mailcatcher.enable = true;
|
|
|
|
|
2022-04-03 16:41:03 +01:00
|
|
|
programs.msmtp = {
|
|
|
|
enable = true;
|
|
|
|
accounts.default = {
|
|
|
|
host = "localhost";
|
|
|
|
port = 1025;
|
|
|
|
};
|
|
|
|
};
|
2019-03-27 11:35:24 +00:00
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.mailutils ];
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-12-15 14:21:38 +00:00
|
|
|
start_all()
|
2019-03-27 11:35:24 +00:00
|
|
|
|
2019-12-15 14:21:38 +00:00
|
|
|
machine.wait_for_unit("mailcatcher.service")
|
2022-06-11 13:22:53 +01:00
|
|
|
machine.wait_for_open_port(1025)
|
2019-12-15 14:21:38 +00:00
|
|
|
machine.succeed(
|
|
|
|
'echo "this is the body of the email" | mail -s "subject" root@example.org'
|
|
|
|
)
|
|
|
|
assert "this is the body of the email" in machine.succeed(
|
2020-09-16 15:44:27 +01:00
|
|
|
"curl -f http://localhost:1080/messages/1.source"
|
2019-12-15 14:21:38 +00:00
|
|
|
)
|
2019-03-27 11:35:24 +00:00
|
|
|
'';
|
|
|
|
})
|