| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  | import ./make-test-python.nix ({ pkgs, lib, ... }: | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   name = "incron"; | 
					
						
							|  |  |  |   meta.maintainers = [ lib.maintainers.aanderse ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   machine = | 
					
						
							|  |  |  |     { ... }: | 
					
						
							|  |  |  |     { services.incron.enable = true; | 
					
						
							|  |  |  |       services.incron.extraPackages = [ pkgs.coreutils ]; | 
					
						
							|  |  |  |       services.incron.systab = ''
 | 
					
						
							|  |  |  |         /test IN_CREATE,IN_MODIFY,IN_CLOSE_WRITE,IN_MOVED_FROM,IN_MOVED_TO echo "$@/$# $%" >> /root/incron.log | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       # ensure the directory to be monitored exists before incron is started | 
					
						
							|  |  |  |       system.activationScripts.incronTest = ''
 | 
					
						
							|  |  |  |         mkdir /test | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     start_all() | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.wait_for_unit("multi-user.target") | 
					
						
							|  |  |  |     machine.wait_for_unit("incron.service") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("test -d /test") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  |     # create some activity for incron to monitor | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("touch /test/file") | 
					
						
							|  |  |  |     machine.succeed("echo foo >> /test/file") | 
					
						
							|  |  |  |     machine.succeed("mv /test/file /root") | 
					
						
							|  |  |  |     machine.succeed("mv /root/file /test") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.sleep(1) | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # touch /test/file | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("grep '/test/file IN_CREATE' /root/incron.log") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # echo foo >> /test/file | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("grep '/test/file IN_MODIFY' /root/incron.log") | 
					
						
							|  |  |  |     machine.succeed("grep '/test/file IN_CLOSE_WRITE' /root/incron.log") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # mv /test/file /root | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("grep '/test/file IN_MOVED_FROM' /root/incron.log") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # mv /root/file /test | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.succeed("grep '/test/file IN_MOVED_TO' /root/incron.log") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # ensure something unexpected is not present | 
					
						
							| 
									
										
										
										
											2019-11-09 20:18:42 +01:00
										 |  |  |     machine.fail("grep 'IN_OPEN' /root/incron.log") | 
					
						
							| 
									
										
										
										
											2018-11-10 17:37:22 -05:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |