X-Git-Url: http://git.scottworley.com/syncthing-autoregister/blobdiff_plain/e16b7079a4e2f5c8e9c1168667c8420e2a751626..ff8eb13963762138a5193811192cedad0a5c6172:/tests/automatic-enrollment.nix?ds=inline diff --git a/tests/automatic-enrollment.nix b/tests/automatic-enrollment.nix index 803013d..5ab4efa 100644 --- a/tests/automatic-enrollment.nix +++ b/tests/automatic-enrollment.nix @@ -49,6 +49,9 @@ import ({ pkgs, lib, ... }: }; testScript = '' + import os + + def setConfig(machine, config): machine.copy_from_host(config, "/etc/nixos/configuration.nix") @@ -64,8 +67,21 @@ import ({ pkgs, lib, ... }: "${configurationWithDeviceIDs}" ) + hostDeviceIDFilename = os.path.join( + os.environ["out"], + os.path.basename("${deviceIDFilename}"), + ) + a.wait_for_unit("syncthing-autoregister.service") setConfig(a, configurationWithDeviceIDs) verifyDeviceIDSet(a, "a") + a.copy_from_vm("${deviceIDFilename}") + + b.copy_from_host( + hostDeviceIDFilename, "${deviceIDFilename}" + ) + b.succeed("chown syncthing ${deviceIDFilename}") + setConfig(b, configurationWithDeviceIDs) + verifyDeviceIDSet(b, "a") ''; })