1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/nixos/tests/nitter.nix

19 lines
425 B
Nix
Raw Normal View History

2021-07-26 11:00:05 +01:00
import ./make-test-python.nix ({ pkgs, ... }:
{
name = "nitter";
meta.maintainers = with pkgs.lib.maintainers; [ erdnaxe ];
nodes.machine = {
services.nitter.enable = true;
# Test CAP_NET_BIND_SERVICE
services.nitter.server.port = 80;
2021-07-26 11:00:05 +01:00
};
testScript = ''
machine.wait_for_unit("nitter.service")
machine.wait_for_open_port("80")
machine.succeed("curl --fail http://localhost:80/")
2021-07-26 11:00:05 +01:00
'';
})