nixosTests.sonarr: Port tests to python

gstqt5
Christian Kampka 2019-12-15 18:24:45 +01:00
parent aeeabe0b89
commit bcf6aa5519
No known key found for this signature in database
GPG Key ID: B88E140DB4FE1AA5
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import ./make-test.nix ({ lib, ... }:
import ./make-test-python.nix ({ lib, ... }:
with lib;
@ -11,8 +11,8 @@ with lib;
{ services.sonarr.enable = true; };
testScript = ''
$machine->waitForUnit('sonarr.service');
$machine->waitForOpenPort('8989');
$machine->succeed("curl --fail http://localhost:8989/");
machine.wait_for_unit("sonarr.service")
machine.wait_for_open_port("8989")
machine.succeed("curl --fail http://localhost:8989/")
'';
})