nixpkgs/nixos/tests/syncthing-init.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
789 B
Nix
Raw Permalink Normal View History

2019-11-25 11:36:37 +03:00
import ./make-test-python.nix ({ lib, pkgs, ... }: let
testId = "7CFNTQM-IMTJBHJ-3UWRDIU-ZGQJFR6-VCXZ3NB-XUH3KZO-N52ITXR-LAIYUAU";
in {
name = "syncthing-init";
meta.maintainers = with pkgs.lib.maintainers; [ lassulus ];
2022-03-21 02:15:30 +03:00
nodes.machine = {
services.syncthing = {
enable = true;
settings.devices.testDevice = {
id = testId;
};
settings.folders.testFolder = {
path = "/tmp/test";
devices = [ "testDevice" ];
};
settings.gui.user = "guiUser";
};
};
testScript = ''
2019-11-25 11:36:37 +03:00
machine.wait_for_unit("syncthing-init.service")
config = machine.succeed("cat /var/lib/syncthing/.config/syncthing/config.xml")
2020-08-02 12:25:04 +03:00
2019-11-25 11:36:37 +03:00
assert "testFolder" in config
assert "${testId}" in config
assert "guiUser" in config
'';
})