nixpkgs/nixos/tests/sympa.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
843 B
Nix
Raw Normal View History

2019-07-06 20:56:30 +02:00
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{
name = "sympa";
2025-02-12 18:36:24 +01:00
meta.maintainers = with lib.maintainers; [ ];
2019-07-06 20:56:30 +02:00
2022-03-21 00:15:30 +01:00
nodes.machine =
2019-07-06 20:56:30 +02:00
{ ... }:
{
services.sympa = {
enable = true;
domains = {
"lists.example.org" = {
webHost = "localhost";
};
};
listMasters = [ "bob@example.org" ];
2019-07-06 20:56:30 +02:00
web.enable = true;
web.https = false;
database = {
type = "PostgreSQL";
createLocally = true;
};
};
};
testScript = ''
start_all()
machine.wait_for_unit("sympa.service")
machine.wait_for_unit("wwsympa.service")
assert "Mailing lists service" in machine.succeed(
2020-09-16 08:48:44 -07:00
"curl --fail --insecure -L http://localhost/"
2019-07-06 20:56:30 +02:00
)
'';
}
)