notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / breitbandmessung.nix
blob78df0d5017eb094c8d8da9f490c426fb23e0d2ef
1 import ./make-test-python.nix ({ lib, ... }: {
2   name = "breitbandmessung";
3   meta.maintainers = with lib.maintainers; [ b4dm4n ];
5   nodes.machine = { pkgs, ... }: {
6     imports = [
7       ./common/user-account.nix
8       ./common/x11.nix
9     ];
11     # increase screen size to make the whole program visible
12     virtualisation.resolution = { x = 1280; y = 1024; };
14     test-support.displayManager.auto.user = "alice";
16     environment.systemPackages = with pkgs; [ breitbandmessung ];
17     environment.variables.XAUTHORITY = "/home/alice/.Xauthority";
19     # breitbandmessung is unfree
20     nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "breitbandmessung" ];
21   };
23   enableOCR = true;
25   testScript = ''
26     machine.wait_for_x()
27     machine.execute("su - alice -c breitbandmessung >&2  &")
28     machine.wait_for_window("Breitbandmessung")
29     machine.wait_for_text("Breitbandmessung")
30     machine.wait_for_text("Datenschutz")
31     machine.screenshot("breitbandmessung")
32   '';