| 
									
										
										
										
											2019-01-24 23:08:16 +01:00
										 |  |  | import ./make-test.nix ({ lib, ... }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | with lib; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-13 21:52:01 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-01-24 23:08:16 +01:00
										 |  |  |   name = "sonarr"; | 
					
						
							|  |  |  |   meta.maintainers = with maintainers; [ etu ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   nodes.machine = | 
					
						
							|  |  |  |     { pkgs, ... }: | 
					
						
							|  |  |  |     { services.sonarr.enable = true; }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							|  |  |  |     $machine->waitForUnit('sonarr.service'); | 
					
						
							|  |  |  |     $machine->waitForOpenPort('8989'); | 
					
						
							|  |  |  |     $machine->succeed("curl --fail http://localhost:8989/"); | 
					
						
							|  |  |  |   '';
 | 
					
						
							|  |  |  | }) |