2019-11-25 09:36:37 +01:00
|
|
|
import ./make-test-python.nix ({ lib, pkgs, ... }: let
|
2019-04-21 23:05:07 +02:00
|
|
|
|
|
|
|
testId = "7CFNTQM-IMTJBHJ-3UWRDIU-ZGQJFR6-VCXZ3NB-XUH3KZO-N52ITXR-LAIYUAU";
|
|
|
|
|
|
|
|
in {
|
|
|
|
name = "syncthing-init";
|
|
|
|
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ lassulus ];
|
|
|
|
|
|
|
|
machine = {
|
|
|
|
services.syncthing = {
|
|
|
|
enable = true;
|
|
|
|
declarative = {
|
|
|
|
devices.testDevice = {
|
|
|
|
id = testId;
|
|
|
|
};
|
|
|
|
folders.testFolder = {
|
|
|
|
path = "/tmp/test";
|
|
|
|
devices = [ "testDevice" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-11-25 09:36:37 +01:00
|
|
|
machine.wait_for_unit("syncthing-init.service")
|
|
|
|
config = machine.succeed("cat /var/lib/syncthing/.config/syncthing/config.xml")
|
2019-07-14 13:03:20 +02:00
|
|
|
|
2019-11-25 09:36:37 +01:00
|
|
|
assert "testFolder" in config
|
|
|
|
assert "${testId}" in config
|
2019-04-21 23:05:07 +02:00
|
|
|
'';
|
|
|
|
})
|
|
|
|
|