| 
									
										
										
										
											2019-03-27 07:35:24 -04:00
										 |  |  | import ./make-test.nix ({ lib, ... }: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   name = "mailcatcher"; | 
					
						
							|  |  |  |   meta.maintainers = [ lib.maintainers.aanderse ]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   machine = | 
					
						
							|  |  |  |     { pkgs, ... }: | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       services.mailcatcher.enable = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       networking.defaultMailServer.directDelivery = true; | 
					
						
							|  |  |  |       networking.defaultMailServer.hostName = "localhost:1025"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       environment.systemPackages = [ pkgs.mailutils ]; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   testScript = ''
 | 
					
						
							|  |  |  |     startAll; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $machine->waitForUnit('mailcatcher.service'); | 
					
						
							|  |  |  |     $machine->waitForOpenPort('1025'); | 
					
						
							|  |  |  |     $machine->succeed('echo "this is the body of the email" | mail -s "subject" root@example.org'); | 
					
						
							| 
									
										
										
										
											2019-03-28 11:15:20 -04:00
										 |  |  |     $machine->succeed('curl http://localhost:1080/messages/1.source') =~ /this is the body of the email/ or die; | 
					
						
							| 
									
										
										
										
											2019-03-27 07:35:24 -04:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | }) |