X-Git-Url: http://git.scottworley.com/syncthing-autoregister/blobdiff_plain/e16b7079a4e2f5c8e9c1168667c8420e2a751626..1d5d76e472df2f4d24f153f0cd381d7b7d579f91:/tests/automatic-enrollment.nix?ds=inline diff --git a/tests/automatic-enrollment.nix b/tests/automatic-enrollment.nix index 803013d..951a415 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") @@ -60,6 +63,21 @@ import ({ pkgs, lib, ... }: ) + def getDeviceFile(machine): + machine.copy_from_vm("${deviceIDFilename}") + + + def putDeviceFile(machine): + hostDeviceIDFilename = os.path.join( + os.environ["out"], + os.path.basename("${deviceIDFilename}"), + ) + machine.copy_from_host( + hostDeviceIDFilename, "${deviceIDFilename}" + ) + machine.succeed("chown syncthing ${deviceIDFilename}") + + configurationWithDeviceIDs = ( "${configurationWithDeviceIDs}" ) @@ -67,5 +85,13 @@ import ({ pkgs, lib, ... }: a.wait_for_unit("syncthing-autoregister.service") setConfig(a, configurationWithDeviceIDs) verifyDeviceIDSet(a, "a") + getDeviceFile(a) + + putDeviceFile(b) + setConfig(b, configurationWithDeviceIDs) + verifyDeviceIDSet(b, "a") + b.wait_for_unit("syncthing-autoregister.service") + verifyDeviceIDSet(b, "a") + verifyDeviceIDSet(b, "b") ''; })