summaryrefslogtreecommitdiffstats
path: root/nixos/tests/mailhog.nix
blob: 41d4a97abf3aa53e1563e4f61c76c65180f1fed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, ... }:
{
  name = "mailhog";
  meta.maintainers = with lib.maintainers; [
    jojosch
    RTUnreal
  ];

  nodes.machine = _: {
    services.mailhog.enable = true;
  };

  testScript = ''
    start_all()

    machine.wait_for_unit("mailhog.service")
    machine.wait_for_open_port(1025)
    machine.wait_for_open_port(8025)
    # Test sendmail wrapper (this uses smtp, which tests the connection)
    machine.succeed('printf "To: root@example.com\r\n\r\nthis is the body of the email" | sendmail -t -i -f sender@example.com')
    res = machine.succeed(
        "curl --fail http://localhost:8025/api/v2/messages"
    )
    assert all(msg in res for msg in ["this is the body of the email", "sender@example.com", "root@example.com"])
  '';
}