 25bef2d8f9
			
		
	
	
		25bef2d8f9
		
	
	
	
	
		
			
			The library does not depend on stdenv, that `stdenv` exposes `lib` is an artifact of the ancient origins of nixpkgs.
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| import ./make-test-python.nix ({ pkgs, ...} :
 | |
| 
 | |
| {
 | |
|   name = "signal-desktop";
 | |
|   meta = with pkgs.lib.maintainers; {
 | |
|     maintainers = [ flokli ];
 | |
|   };
 | |
| 
 | |
|   machine = { ... }:
 | |
| 
 | |
|   {
 | |
|     imports = [
 | |
|       ./common/user-account.nix
 | |
|       ./common/x11.nix
 | |
|     ];
 | |
| 
 | |
|     services.xserver.enable = true;
 | |
|     test-support.displayManager.auto.user = "alice";
 | |
|     environment.systemPackages = [ pkgs.signal-desktop ];
 | |
|     virtualisation.memorySize = 1024;
 | |
|   };
 | |
| 
 | |
|   enableOCR = true;
 | |
| 
 | |
|   testScript = { nodes, ... }: let
 | |
|     user = nodes.machine.config.users.users.alice;
 | |
|   in ''
 | |
|     start_all()
 | |
|     machine.wait_for_x()
 | |
| 
 | |
|     # start signal desktop
 | |
|     machine.execute("su - alice -c signal-desktop &")
 | |
| 
 | |
|     # Wait for the Signal window to appear. Since usually the tests
 | |
|     # are run sandboxed and therfore with no internet, we can not wait
 | |
|     # for the message "Link your phone ...". Nor should we wait for
 | |
|     # the "Failed to connect to server" message, because when manually
 | |
|     # running this test it will be not sandboxed.
 | |
|     machine.wait_for_text("Signal")
 | |
|     machine.wait_for_text("File Edit View Window Help")
 | |
|     machine.screenshot("signal_desktop")
 | |
|   '';
 | |
| })
 |