2021-04-19 00:05:25 +01:00
|
|
|
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "libreddit";
|
|
|
|
meta.maintainers = with maintainers; [ fab ];
|
|
|
|
|
2021-08-13 14:47:24 +01:00
|
|
|
nodes.machine = {
|
|
|
|
services.libreddit.enable = true;
|
|
|
|
# Test CAP_NET_BIND_SERVICE
|
|
|
|
services.libreddit.port = 80;
|
|
|
|
};
|
2021-04-19 00:05:25 +01:00
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("libreddit.service")
|
2022-06-11 13:22:53 +01:00
|
|
|
machine.wait_for_open_port(80)
|
2021-08-13 14:47:24 +01:00
|
|
|
# Query a page that does not require Internet access
|
|
|
|
machine.succeed("curl --fail http://localhost:80/settings")
|
2021-04-19 00:05:25 +01:00
|
|
|
'';
|
|
|
|
})
|