nixpkgs/nixos/tests/realm.nix

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

45 lines
936 B
Nix
Raw Normal View History

2024-01-28 12:56:32 +08:00
import ./make-test-python.nix (
{ lib, pkgs, ... }:
{
name = "realm";
meta = {
maintainers = with lib.maintainers; [ ocfox ];
};
nodes.machine =
{ pkgs, ... }:
{
2024-01-28 12:56:32 +08:00
services.nginx = {
enable = true;
statusPage = true;
};
2024-01-28 12:56:32 +08:00
# realm need DNS resolv server to run or use config.dns.nameserver
services.resolved.enable = true;
2024-01-28 12:56:32 +08:00
services.realm = {
enable = true;
config = {
endpoints = [
{
listen = "0.0.0.0:1000";
remote = "127.0.0.1:80";
}
];
};
};
2024-01-28 12:56:32 +08:00
};
testScript = ''
machine.wait_for_unit("nginx.service")
machine.wait_for_unit("realm.service")
machine.wait_for_open_port(80)
machine.wait_for_open_port(1000)
machine.succeed("curl --fail http://localhost:1000/")
'';
}
)