nixpkgs/nixos/tests/wine.nix

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

52 lines
1.8 KiB
Nix
Raw Normal View History

2021-11-04 22:20:06 +00:00
{ system ? builtins.currentSystem
, pkgs ? import ../.. { inherit system; config = { }; }
}:
let
inherit (pkgs.lib) concatMapStrings listToAttrs optionals optionalString;
inherit (import ../lib/testing-python.nix { inherit system pkgs; }) makeTest;
2021-05-31 06:52:14 +00:00
hello32 = "${pkgs.pkgsCross.mingw32.hello}/bin/hello.exe";
hello64 = "${pkgs.pkgsCross.mingwW64.hello}/bin/hello.exe";
makeWineTest = packageSet: exes: variant: rec {
name = "${packageSet}-${variant}";
value = makeTest {
inherit name;
meta = with pkgs.lib.maintainers; { maintainers = [ chkno ]; };
2022-03-20 23:15:30 +00:00
nodes.machine = { pkgs, ... }: {
2021-05-31 06:52:14 +00:00
environment.systemPackages = [ pkgs."${packageSet}"."${variant}" ];
2022-01-26 16:14:23 +00:00
virtualisation.diskSize = 800;
};
testScript = ''
machine.wait_for_unit("multi-user.target")
2021-05-31 06:52:14 +00:00
${concatMapStrings (exe: ''
greeting = machine.succeed(
"bash -c 'wine ${exe} 2> >(tee wine-stderr >&2)'"
2021-05-31 06:52:14 +00:00
)
assert 'Hello, world!' in greeting
''
# only the full version contains Gecko, but the error is not printed reliably in other variants
+ optionalString (variant == "full") ''
machine.fail(
"fgrep 'Could not find Wine Gecko. HTML rendering will be disabled.' wine-stderr"
)
2021-05-31 06:52:14 +00:00
'') exes}
'';
};
2021-05-31 06:52:14 +00:00
};
variants = [ "base" "full" "minimal" "staging" "unstable" "wayland" ];
2021-05-31 06:52:14 +00:00
in
listToAttrs (
map (makeWineTest "winePackages" [ hello32 ]) variants
++ optionals pkgs.stdenv.is64bit
(map (makeWineTest "wineWowPackages" [ hello32 hello64 ])
# This wayland combination times out after spending many hours.
# https://hydra.nixos.org/job/nixos/trunk-combined/nixos.tests.wine.wineWowPackages-wayland.x86_64-linux
(pkgs.lib.remove "wayland" variants))
)