| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  | import ./make-test-python.nix ({ pkgs, lib, ...} : { | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  |   name = "gotify-server"; | 
					
						
							|  |  |  |   meta = with pkgs.stdenv.lib.maintainers; { | 
					
						
							|  |  |  |     maintainers = [ ma27 ]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   machine = { pkgs, ... }: { | 
					
						
							|  |  |  |     environment.systemPackages = [ pkgs.jq ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     services.gotify = { | 
					
						
							|  |  |  |       enable = true; | 
					
						
							|  |  |  |       port = 3000; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     machine.start() | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     machine.wait_for_unit("gotify-server.service") | 
					
						
							|  |  |  |     machine.wait_for_open_port(3000) | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     token = machine.succeed( | 
					
						
							|  |  |  |         "curl --fail -sS -X POST localhost:3000/application -F name=nixos " | 
					
						
							|  |  |  |         + '-H "Authorization: Basic $(echo -ne "admin:admin" | base64 --wrap 0)" ' | 
					
						
							|  |  |  |         + "| jq .token | xargs echo -n" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     usertoken = machine.succeed( | 
					
						
							|  |  |  |         "curl --fail -sS -X POST localhost:3000/client -F name=nixos " | 
					
						
							|  |  |  |         + '-H "Authorization: Basic $(echo -ne "admin:admin" | base64 --wrap 0)" ' | 
					
						
							|  |  |  |         + "| jq .token | xargs echo -n" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     machine.succeed( | 
					
						
							|  |  |  |         f"curl --fail -sS -X POST 'localhost:3000/message?token={token}' -H 'Accept: application/json' " | 
					
						
							|  |  |  |         + "-F title=Gotify -F message=Works" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     title = machine.succeed( | 
					
						
							|  |  |  |         f"curl --fail -sS 'localhost:3000/message?since=0&token={usertoken}' | jq '.messages|.[0]|.title' | xargs echo -n" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-24 13:21:16 +01:00
										 |  |  |     assert title == "Gotify" | 
					
						
							| 
									
										
										
										
											2020-09-12 19:02:09 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Ensure that the UI responds with a successfuly code and that the | 
					
						
							|  |  |  |     # response is not empty | 
					
						
							|  |  |  |     result = machine.succeed("curl -fsS localhost:3000") | 
					
						
							|  |  |  |     assert result, "HTTP response from localhost:3000 must not be empty!" | 
					
						
							| 
									
										
										
										
											2019-10-25 15:14:57 +02:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |