nixpkgs/nixos/tests/vengi-tools.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
591 B
Nix
Raw Normal View History

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