mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
nixosTests.envoy: use port 80 to test CAP_NET_BIND_SERVICE
This commit is contained in:
parent
8fff553f7e
commit
a36fc1d72a
@ -13,7 +13,7 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : {
|
||||
socket_address = {
|
||||
protocol = "TCP";
|
||||
address = "127.0.0.1";
|
||||
port_value = 9901;
|
||||
port_value = 80;
|
||||
};
|
||||
};
|
||||
};
|
||||
@ -27,7 +27,7 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : {
|
||||
testScript = ''
|
||||
machine.start()
|
||||
machine.wait_for_unit("envoy.service")
|
||||
machine.wait_for_open_port(9901)
|
||||
machine.wait_until_succeeds("curl -fsS localhost:9901/ready")
|
||||
machine.wait_for_open_port(80)
|
||||
machine.wait_until_succeeds("curl -fsS localhost:80/ready")
|
||||
'';
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user