| 
									
										
										
										
											2019-12-15 18:24:45 +01:00
										 |  |  | import ./make-test-python.nix ({ lib, ... }: | 
					
						
							| 
									
										
										
										
											2019-01-24 23:08:16 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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 = ''
 | 
					
						
							| 
									
										
										
										
											2019-12-15 18:24:45 +01:00
										 |  |  |     machine.wait_for_unit("sonarr.service") | 
					
						
							|  |  |  |     machine.wait_for_open_port("8989") | 
					
						
							|  |  |  |     machine.succeed("curl --fail http://localhost:8989/") | 
					
						
							| 
									
										
										
										
											2019-01-24 23:08:16 +01:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |