summary refs log blame commit diff
path: root/nixos/tests/keepassxc.nix
blob: 685a200b31878b1ee5936d2f0ecdaaad6630fa77 (plain) (tree)



























                                                    
                                                    




                                                                
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 >&2 &")

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