checks: Add assertion that the module defaults work

pull/21/head
Tristan Daniël Maat 2022-10-14 12:06:33 +01:00
parent 6c29bc5db0
commit 3155d665ff
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 16 additions and 10 deletions

View File

@ -4,32 +4,38 @@
}: }:
nixosTest { nixosTest {
nodes = { nodes = {
# Host with just the default configuration
defaults = {
imports = [self.nixosModules.default];
services.tlaternet-webserver.enable = true;
};
host = { host = {
config,
lib,
pkgs,
...
}: {
imports = [self.nixosModules.default]; imports = [self.nixosModules.default];
services.tlaternet-webserver = { services.tlaternet-webserver = {
enable = true; enable = true;
listen = { listen = {
addr = "0.0.0.0"; addr = "0.0.0.0";
port = 8000; port = 8080;
}; };
}; };
networking.firewall.allowedTCPPorts = [8000]; networking.firewall.allowedTCPPorts = [8080];
}; };
client = {pkgs, ...}: {}; client = {};
}; };
testScript = '' testScript = ''
start_all() start_all()
host.wait_for_unit("default.target") # Assert that the defaults work
client.succeed("curl --fail http://host:8000/ >&2") defaults.wait_for_unit("tlaternet-webserver.service")
defaults.succeed("curl --fail http://localhost:8000 >&2")
# Assert that we can listen on a public interface
host.wait_for_unit("tlaternet-webserver.service")
client.succeed("curl --fail http://host:8080 >&2")
''; '';
} }