summary refs log tree commit diff
path: root/nixos/tests/keepassxc.nix
blob: 98902187f6ac3631f28b15b960f1bc5d6cd0969b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import ./make-test-python.nix ({ pkgs, ...} :

{
  name = "keepassxc";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ turion ];
  };

  machine = { ... }:

  {
    imports = [
      ./common/user-account.nix
      ./common/x11.nix
    ];

    services.xserver.enable = true;
    test-support.displayManager.auto.user = "alice";
    environment.systemPackages = [ pkgs.keepassxc ];
  };

  enableOCR = true;

  testScript = { nodes, ... }: ''
    start_all()
    machine.wait_for_x()

    # start KeePassXC window
    machine.execute("su - alice -c keepassxc &")

    machine.wait_for_text("KeePassXC ${pkgs.keepassxc.version}")
    machine.screenshot("KeePassXC")
  '';
})