mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
20 lines
483 B
Nix
20 lines
483 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
{
|
|
name = "libreddit";
|
|
meta.maintainers = with lib.maintainers; [ fab ];
|
|
|
|
nodes.machine = {
|
|
services.libreddit.enable = true;
|
|
# Test CAP_NET_BIND_SERVICE
|
|
services.libreddit.port = 80;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("libreddit.service")
|
|
machine.wait_for_open_port(80)
|
|
# Query a page that does not require Internet access
|
|
machine.succeed("curl --fail http://localhost:80/settings")
|
|
'';
|
|
})
|