Files
tasklist/test.nix
2023-10-05 16:47:24 +02:00

23 lines
749 B
Nix

# ./tests/hello-world-server.nix
(import ./lib.nix) {
name = "from-nixos";
nodes = {
# `self` here is set by using specialArgs in `lib.nix`
node1 = { self, pkgs, ... }: {
imports = [ self.nixosModules.malobeo-tasklist ];
services.malobeo-tasklist.enable = true;
environment.systemPackages = [ pkgs.curl ];
};
};
# This is the test code that will check if our service is running correctly:
testScript = ''
start_all()
# wait for our service to start
node1.wait_for_unit("malobeo-tasklist")
output = node1.succeed("curl localhost:8000/index.html")
# Check if our webserver returns the expected result
assert "Hello world" in output, f"'{output}' does not contain 'Hello world'"
'';
}