nixos/nitter: test with CAP_NET_BIND_SERVICE

launchpad/nixpkgs/master
Alexandre Iooss 3 years ago
parent 9898f7e072
commit 2e8e8f2c92
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
  1. 6
      nixos/tests/nitter.nix

@ -6,11 +6,13 @@ import ./make-test-python.nix ({ pkgs, ... }:
nodes.machine = {
services.nitter.enable = true;
# Test CAP_NET_BIND_SERVICE
services.nitter.server.port = 80;
};
testScript = ''
machine.wait_for_unit("nitter.service")
machine.wait_for_open_port("8080")
machine.succeed("curl --fail http://localhost:8080/")
machine.wait_for_open_port("80")
machine.succeed("curl --fail http://localhost:80/")
'';
})

Loading…
Cancel
Save