2020-11-28 17:42:10 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
|
|
|
name = "minecraft";
|
|
|
|
meta = with lib.maintainers; { maintainers = [ nequissimus ]; };
|
|
|
|
|
|
|
|
nodes.client = { nodes, ... }:
|
|
|
|
let user = nodes.client.config.users.users.alice;
|
|
|
|
in {
|
|
|
|
imports = [ ./common/user-account.nix ./common/x11.nix ];
|
|
|
|
|
|
|
|
environment.systemPackages = [ pkgs.minecraft ];
|
|
|
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
test-support.displayManager.auto.user = user.name;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableOCR = true;
|
|
|
|
|
|
|
|
testScript = { nodes, ... }:
|
|
|
|
let user = nodes.client.config.users.users.alice;
|
|
|
|
in ''
|
|
|
|
client.wait_for_x()
|
2021-11-05 00:43:22 +00:00
|
|
|
client.execute("su - alice -c minecraft-launcher >&2 &")
|
2020-12-17 14:05:53 +00:00
|
|
|
client.wait_for_text("Create a new Microsoft account")
|
2020-11-28 17:42:10 +00:00
|
|
|
client.sleep(10)
|
|
|
|
client.screenshot("launcher")
|
|
|
|
'';
|
|
|
|
})
|