mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
5803706662
Fix some fallout from de3e423
(PR #171280).
25 lines
686 B
Nix
25 lines
686 B
Nix
import ./make-test-python.nix ({ lib, ... }: {
|
|
name = "mailhog";
|
|
meta.maintainers = with lib.maintainers; [ jojosch ];
|
|
|
|
nodes.machine = { pkgs, ... }: {
|
|
services.mailhog.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [ swaks ];
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
|
|
machine.wait_for_unit("mailhog.service")
|
|
machine.wait_for_open_port(1025)
|
|
machine.wait_for_open_port(8025)
|
|
machine.succeed(
|
|
'echo "this is the body of the email" | swaks --to root@example.org --body - --server localhost:1025'
|
|
)
|
|
assert "this is the body of the email" in machine.succeed(
|
|
"curl --fail http://localhost:8025/api/v2/messages"
|
|
)
|
|
'';
|
|
})
|