mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Merge pull request #74114 from andrew-d/andrew/syncthing-tests-python
nixosTests.syncthing*: port to python
This commit is contained in:
commit
71882102e3
|
@ -1,4 +1,4 @@
|
|||
import ./make-test.nix ({ lib, pkgs, ... }: let
|
||||
import ./make-test-python.nix ({ lib, pkgs, ... }: let
|
||||
|
||||
testId = "7CFNTQM-IMTJBHJ-3UWRDIU-ZGQJFR6-VCXZ3NB-XUH3KZO-N52ITXR-LAIYUAU";
|
||||
|
||||
|
@ -22,13 +22,11 @@ in {
|
|||
};
|
||||
|
||||
testScript = ''
|
||||
my $config;
|
||||
|
||||
$machine->waitForUnit("syncthing-init.service");
|
||||
$config = $machine->succeed("cat /var/lib/syncthing/.config/syncthing/config.xml");
|
||||
machine.wait_for_unit("syncthing-init.service")
|
||||
config = machine.succeed("cat /var/lib/syncthing/.config/syncthing/config.xml")
|
||||
|
||||
$config =~ /${testId}/ or die;
|
||||
$config =~ /testFolder/ or die;
|
||||
assert "testFolder" in config
|
||||
assert "${testId}" in config
|
||||
'';
|
||||
})
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import ./make-test.nix ({ lib, pkgs, ... }: {
|
||||
import ./make-test-python.nix ({ lib, pkgs, ... }: {
|
||||
name = "syncthing-relay";
|
||||
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ delroth ];
|
||||
|
||||
|
@ -14,9 +14,13 @@ import ./make-test.nix ({ lib, pkgs, ... }: {
|
|||
};
|
||||
|
||||
testScript = ''
|
||||
$machine->waitForUnit("syncthing-relay.service");
|
||||
$machine->waitForOpenPort(12345);
|
||||
$machine->waitForOpenPort(12346);
|
||||
$machine->succeed("curl http://localhost:12346/status | jq -r '.options.\"provided-by\"'") =~ /nixos-test/ or die;
|
||||
machine.wait_for_unit("syncthing-relay.service")
|
||||
machine.wait_for_open_port(12345)
|
||||
machine.wait_for_open_port(12346)
|
||||
|
||||
out = machine.succeed(
|
||||
"curl -sS http://localhost:12346/status | jq -r '.options.\"provided-by\"'"
|
||||
)
|
||||
assert "nixos-test" in out
|
||||
'';
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue