at 21.11-pre 1.4 kB view raw
1import ./make-test-python.nix ({ pkgs, ...} : 2 3{ 4 name = "cage"; 5 meta = with pkgs.lib.maintainers; { 6 maintainers = [ matthewbauer ]; 7 }; 8 9 machine = { ... }: 10 11 { 12 imports = [ ./common/user-account.nix ]; 13 services.cage = { 14 enable = true; 15 user = "alice"; 16 # Disable color and bold and use a larger font to make OCR easier: 17 program = "${pkgs.xterm}/bin/xterm -cm -pc -fa Monospace -fs 24"; 18 }; 19 20 virtualisation.memorySize = 1024; 21 # Need to switch to a different VGA card / GPU driver because Cage segfaults with the default one (std): 22 # machine # [ 14.355893] .cage-wrapped[736]: segfault at 20 ip 00007f035fa0d8c7 sp 00007ffce9e4a2f0 error 4 in libwlroots.so.8[7f035fa07000+5a000] 23 # machine # [ 14.358108] Code: 4f a8 ff ff eb aa 0f 1f 44 00 00 c3 0f 1f 80 00 00 00 00 41 54 49 89 f4 55 31 ed 53 48 89 fb 48 8d 7f 18 48 8d 83 b8 00 00 00 <80> 7f 08 00 75 0d 48 83 3f 00 0f 85 91 00 00 00 48 89 fd 48 83 c7 24 virtualisation.qemu.options = [ "-vga virtio" ]; 25 }; 26 27 enableOCR = true; 28 29 testScript = { nodes, ... }: let 30 user = nodes.machine.config.users.users.alice; 31 in '' 32 with subtest("Wait for cage to boot up"): 33 start_all() 34 machine.wait_for_file("/run/user/${toString user.uid}/wayland-0.lock") 35 machine.wait_until_succeeds("pgrep xterm") 36 machine.wait_for_text("alice@machine") 37 machine.screenshot("screen") 38 ''; 39})