nixpkgs/nixos/tests/libresprite.nix
Haylin Moore 2575320814 nixosTests.libresprite: improve test consistency
The larger font and shorter test word is making the test far more frequently locally and should stop the hour long runs on hydra
2025-09-08 14:43:13 +02:00

33 lines
723 B
Nix

{ pkgs, ... }:
{
name = "libresprite";
meta = with pkgs.lib.maintainers; {
maintainers = [ fgaz ];
};
nodes.machine =
{ config, pkgs, ... }:
{
imports = [
./common/x11.nix
];
services.xserver.enable = true;
environment.systemPackages = [
pkgs.imagemagick
pkgs.libresprite
];
};
enableOCR = true;
testScript = ''
machine.wait_for_x()
machine.succeed("convert -font DejaVu-Sans -pointsize 48 +antialias label:'WORKS' image.png")
machine.execute("libresprite image.png >&2 &")
machine.wait_for_window("LibreSprite ${pkgs.libresprite.version}-dev")
machine.wait_for_text("WORKS")
machine.screenshot("screen")
'';
}