python312Packages.homematicip: 1.1.2 -> 1.1.3 (#356780)
[NixPkgs.git] / nixos / tests / incron.nix
blobd016360ba0ef812711bad53a529f79259f04ea8f
1 import ./make-test-python.nix ({ pkgs, lib, ... }:
4   name = "incron";
5   meta.maintainers = [ lib.maintainers.aanderse ];
7   nodes.machine =
8     { ... }:
9     { services.incron.enable = true;
10       services.incron.extraPackages = [ pkgs.coreutils ];
11       services.incron.systab = ''
12         /test IN_CREATE,IN_MODIFY,IN_CLOSE_WRITE,IN_MOVED_FROM,IN_MOVED_TO echo "$@/$# $%" >> /root/incron.log
13       '';
15       # ensure the directory to be monitored exists before incron is started
16       systemd.tmpfiles.settings.incron-test = {
17         "/test".d = { };
18       };
19     };
21   testScript = ''
22     start_all()
24     machine.wait_for_unit("multi-user.target")
25     machine.wait_for_unit("incron.service")
27     machine.succeed("test -d /test")
28     # create some activity for incron to monitor
29     machine.succeed("touch /test/file")
30     machine.succeed("echo foo >> /test/file")
31     machine.succeed("mv /test/file /root")
32     machine.succeed("mv /root/file /test")
34     machine.sleep(1)
36     # touch /test/file
37     machine.succeed("grep '/test/file IN_CREATE' /root/incron.log")
39     # echo foo >> /test/file
40     machine.succeed("grep '/test/file IN_MODIFY' /root/incron.log")
41     machine.succeed("grep '/test/file IN_CLOSE_WRITE' /root/incron.log")
43     # mv /test/file /root
44     machine.succeed("grep '/test/file IN_MOVED_FROM' /root/incron.log")
46     # mv /root/file /test
47     machine.succeed("grep '/test/file IN_MOVED_TO' /root/incron.log")
49     # ensure something unexpected is not present
50     machine.fail("grep 'IN_OPEN' /root/incron.log")
51   '';