Merge pull request #74061 from flokli/nixos-test-port-uwsgi
nixosTests.uwsgi: port to python
This commit is contained in:
commit
a76eae4220
@ -1,4 +1,4 @@
|
|||||||
import ./make-test.nix ({ pkgs, ... }:
|
import ./make-test-python.nix ({ pkgs, ... }:
|
||||||
{
|
{
|
||||||
name = "uwsgi";
|
name = "uwsgi";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
@ -30,9 +30,9 @@ import ./make-test.nix ({ pkgs, ... }:
|
|||||||
|
|
||||||
testScript =
|
testScript =
|
||||||
''
|
''
|
||||||
$machine->waitForUnit('multi-user.target');
|
machine.wait_for_unit("multi-user.target")
|
||||||
$machine->waitForUnit('uwsgi.service');
|
machine.wait_for_unit("uwsgi.service")
|
||||||
$machine->waitForOpenPort(8000);
|
machine.wait_for_open_port(8000)
|
||||||
$machine->succeed('curl -v 127.0.0.1:8000 | grep "Hello World!"');
|
assert "Hello World" in machine.succeed("curl -v 127.0.0.1:8000")
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user