 bb0ce819b3
			
		
	
	
		bb0ce819b3
		
			
		
	
	
	
	
		
			
			It turns out that "journalctl -f | grep -m 1 pattern" will block for one more line after "pattern" appears, which can take a long time.
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| import ./make-test.nix ({ pkgs, ...} : {
 | |
|   name = "gnome3";
 | |
|   meta = with pkgs.stdenv.lib.maintainers; {
 | |
|     maintainers = [ domenkozar eelco chaoflow lethalman ];
 | |
|   };
 | |
| 
 | |
|   machine =
 | |
|     { config, pkgs, ... }:
 | |
| 
 | |
|     { imports = [ ./common/user-account.nix ];
 | |
| 
 | |
|       services.xserver.enable = true;
 | |
| 
 | |
|       services.xserver.displayManager.auto.enable = true;
 | |
|       services.xserver.displayManager.auto.user = "alice";
 | |
|       services.xserver.desktopManager.gnome3.enable = true;
 | |
| 
 | |
|       virtualisation.memorySize = 512;
 | |
|     };
 | |
| 
 | |
|   testScript =
 | |
|     ''
 | |
|       $machine->waitForX;
 | |
|       $machine->sleep(15);
 | |
| 
 | |
|       # Check that logging in has given the user ownership of devices.
 | |
|       $machine->succeed("getfacl /dev/snd/timer | grep -q alice");
 | |
| 
 | |
|       $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'");
 | |
|       $machine->succeed("xauth merge ~alice/.Xauthority");
 | |
|       $machine->waitForWindow(qr/Terminal/);
 | |
|       $machine->succeed("timeout 900 bash -c 'while read msg; do if [[ \$msg =~ \"GNOME Shell started\" ]]; then break; fi; done < <(journalctl -f)'");
 | |
|       $machine->sleep(10);
 | |
|       $machine->screenshot("screen");
 | |
|     '';
 | |
| })
 |