4eeff46bbb
This change fixes ofborg eval error
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
let
|
|
tests = {
|
|
wayland = { pkgs, ... }: {
|
|
imports = [ ./common/wayland-cage.nix ];
|
|
services.cage.program = "${pkgs.freetube}/bin/freetube";
|
|
virtualisation.memorySize = 2047;
|
|
environment.variables.NIXOS_OZONE_WL = "1";
|
|
environment.variables.DISPLAY = "do not use";
|
|
};
|
|
xorg = { pkgs, ... }: {
|
|
imports = [ ./common/user-account.nix ./common/x11.nix ];
|
|
virtualisation.memorySize = 2047;
|
|
services.xserver.enable = true;
|
|
services.xserver.displayManager.sessionCommands = ''
|
|
${pkgs.freetube}/bin/freetube
|
|
'';
|
|
test-support.displayManager.auto.user = "alice";
|
|
};
|
|
};
|
|
|
|
mkTest = name: machine:
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
|
inherit name;
|
|
nodes = { "${name}" = machine; };
|
|
meta.maintainers = with pkgs.lib.maintainers; [ kirillrdy ];
|
|
enableOCR = true;
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit('graphical.target')
|
|
machine.wait_for_text('Your Subscription list is currently empty')
|
|
machine.send_key("ctrl-r")
|
|
machine.wait_for_text('Your Subscription list is currently empty')
|
|
machine.screenshot("main.png")
|
|
machine.send_key("ctrl-comma")
|
|
machine.wait_for_text('General Settings', timeout=30)
|
|
machine.screenshot("preferences.png")
|
|
'';
|
|
});
|
|
in
|
|
builtins.mapAttrs (k: v: mkTest k v { }) tests
|