2021-08-07 06:02:28 +01:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
|
|
name = "isso";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
|
|
maintainers = [ asbachb ];
|
|
|
|
};
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = { config, pkgs, ... }: {
|
2021-08-07 07:32:06 +01:00
|
|
|
services.isso = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
general = {
|
|
|
|
dbpath = "/var/lib/isso/comments.db";
|
|
|
|
host = "http://localhost";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2021-08-07 06:02:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript = let
|
|
|
|
port = 8080;
|
|
|
|
in
|
|
|
|
''
|
2021-08-07 07:32:06 +01:00
|
|
|
machine.wait_for_unit("isso.service")
|
2021-08-07 06:02:28 +01:00
|
|
|
|
2022-06-11 13:22:53 +01:00
|
|
|
machine.wait_for_open_port(port)
|
2021-08-07 06:02:28 +01:00
|
|
|
|
|
|
|
machine.succeed("curl --fail http://localhost:${toString port}/?uri")
|
|
|
|
machine.succeed("curl --fail http://localhost:${toString port}/js/embed.min.js")
|
|
|
|
'';
|
|
|
|
})
|