nixosTests.nghttpx: Port tests to python

gstqt5
Christian Kampka 2019-12-15 19:36:44 +01:00
parent 1f3f9fd3a2
commit e51673bb77
No known key found for this signature in database
GPG Key ID: B88E140DB4FE1AA5
1 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
let
nginxRoot = "/run/nginx";
in
import ./make-test.nix ({...}: {
import ./make-test-python.nix ({...}: {
name = "nghttpx";
nodes = {
webserver = {
@ -52,10 +52,10 @@ in
};
testScript = ''
startAll;
start_all()
$webserver->waitForOpenPort("80");
$proxy->waitForOpenPort("80");
$client->waitUntilSucceeds("curl -s --fail http://proxy/hello-world.txt");
webserver.wait_for_open_port("80")
proxy.wait_for_open_port("80")
client.wait_until_succeeds("curl -s --fail http://proxy/hello-world.txt")
'';
})