nixpkgs/nixos/tests/vengi-tools.nix

32 lines
645 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "vengi-tools";
meta = with pkgs.lib.maintainers; {
maintainers = [ fgaz ];
};
2021-11-21 18:09:17 +01:00
nodes.machine =
{ config, pkgs, ... }:
{
imports = [
./common/x11.nix
];
2021-11-21 18:09:17 +01:00
services.xserver.enable = true;
environment.systemPackages = [ pkgs.vengi-tools ];
};
2021-11-21 18:09:17 +01:00
enableOCR = true;
2021-11-21 18:09:17 +01:00
testScript = ''
2021-11-21 18:09:17 +01:00
machine.wait_for_x()
machine.execute("vengi-voxedit >&2 &")
machine.wait_for_window("voxedit")
2022-09-06 08:28:22 +02:00
# Let the window load fully
2021-11-21 18:09:17 +01:00
machine.sleep(15)
machine.screenshot("screen")
'';
}
)