25 lines
		
	
	
		
			556 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			556 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| 
								 | 
							
								import ./make-test.nix ({ pkgs, lib, ... }:
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								with lib;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  name = "xautolock";
							 | 
						||
| 
								 | 
							
								  meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ma27 ];
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  nodes.machine = {
							 | 
						||
| 
								 | 
							
								    imports = [ ./common/x11.nix ./common/user-account.nix ];
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    services.xserver.displayManager.auto.user = "bob";
							 | 
						||
| 
								 | 
							
								    services.xserver.xautolock.enable = true;
							 | 
						||
| 
								 | 
							
								    services.xserver.xautolock.time = 1;
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  testScript = ''
							 | 
						||
| 
								 | 
							
								    $machine->start;
							 | 
						||
| 
								 | 
							
								    $machine->waitForX;
							 | 
						||
| 
								 | 
							
								    $machine->mustFail("pgrep xlock");
							 | 
						||
| 
								 | 
							
								    $machine->sleep(120);
							 | 
						||
| 
								 | 
							
								    $machine->mustSucceed("pgrep xlock");
							 | 
						||
| 
								 | 
							
								  '';
							 | 
						||
| 
								 | 
							
								})
							 |