vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / mailhog.nix
blobe3c2da37a3c8a84837ce10e7f7ec7a0a8124af2d
1 import ./make-test-python.nix ({ lib, ... }: {
2   name = "mailhog";
3   meta.maintainers = with lib.maintainers; [ jojosch ];
5   nodes.machine = { pkgs, ... }: {
6     services.mailhog.enable = true;
8     environment.systemPackages = with pkgs; [ swaks ];
9   };
11   testScript = ''
12     start_all()
14     machine.wait_for_unit("mailhog.service")
15     machine.wait_for_open_port(1025)
16     machine.wait_for_open_port(8025)
17     machine.succeed(
18         'echo "this is the body of the email" | swaks --to root@example.org --body - --server localhost:1025'
19     )
20     assert "this is the body of the email" in machine.succeed(
21         "curl --fail http://localhost:8025/api/v2/messages"
22     )
23   '';