mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
parent
bb93729372
commit
c643fa9615
2 changed files with 89 additions and 91 deletions
|
@ -524,7 +524,7 @@ in
|
||||||
glances = runTest ./glances.nix;
|
glances = runTest ./glances.nix;
|
||||||
glitchtip = runTest ./glitchtip.nix;
|
glitchtip = runTest ./glitchtip.nix;
|
||||||
glusterfs = handleTest ./glusterfs.nix { };
|
glusterfs = handleTest ./glusterfs.nix { };
|
||||||
gnome = handleTest ./gnome.nix { };
|
gnome = runTest ./gnome.nix;
|
||||||
gnome-extensions = handleTest ./gnome-extensions.nix { };
|
gnome-extensions = handleTest ./gnome-extensions.nix { };
|
||||||
gnome-flashback = handleTest ./gnome-flashback.nix { };
|
gnome-flashback = handleTest ./gnome-flashback.nix { };
|
||||||
gnome-xorg = handleTest ./gnome-xorg.nix { };
|
gnome-xorg = handleTest ./gnome-xorg.nix { };
|
||||||
|
|
|
@ -1,103 +1,101 @@
|
||||||
import ./make-test-python.nix (
|
{ pkgs, lib, ... }:
|
||||||
{ pkgs, lib, ... }:
|
{
|
||||||
{
|
name = "gnome";
|
||||||
name = "gnome";
|
meta.maintainers = lib.teams.gnome.members;
|
||||||
meta.maintainers = lib.teams.gnome.members;
|
|
||||||
|
|
||||||
nodes.machine =
|
nodes.machine =
|
||||||
{ ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./common/user-account.nix ];
|
imports = [ ./common/user-account.nix ];
|
||||||
|
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
|
|
||||||
services.xserver.displayManager = {
|
|
||||||
gdm.enable = true;
|
|
||||||
gdm.debug = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.displayManager.autoLogin = {
|
|
||||||
enable = true;
|
|
||||||
user = "alice";
|
|
||||||
};
|
|
||||||
|
|
||||||
services.xserver.desktopManager.gnome.enable = true;
|
|
||||||
services.xserver.desktopManager.gnome.debug = true;
|
|
||||||
|
|
||||||
systemd.user.services = {
|
|
||||||
"org.gnome.Shell@wayland" = {
|
|
||||||
serviceConfig = {
|
|
||||||
ExecStart = [
|
|
||||||
# Clear the list before overriding it.
|
|
||||||
""
|
|
||||||
# Eval API is now internal so Shell needs to run in unsafe mode.
|
|
||||||
# TODO: improve test driver so that it supports openqa-like manipulation
|
|
||||||
# that would allow us to drop this mess.
|
|
||||||
"${pkgs.gnome-shell}/bin/gnome-shell --unsafe-mode"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
services.xserver.displayManager = {
|
||||||
|
gdm.enable = true;
|
||||||
|
gdm.debug = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript =
|
services.displayManager.autoLogin = {
|
||||||
{ nodes, ... }:
|
enable = true;
|
||||||
let
|
user = "alice";
|
||||||
# Keep line widths somewhat manageable
|
};
|
||||||
user = nodes.machine.users.users.alice;
|
|
||||||
uid = toString user.uid;
|
|
||||||
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${uid}/bus";
|
|
||||||
# Run a command in the appropriate user environment
|
|
||||||
run = command: "su - ${user.name} -c '${bus} ${command}'";
|
|
||||||
|
|
||||||
# Call javascript in gnome shell, returns a tuple (success, output), where
|
services.xserver.desktopManager.gnome.enable = true;
|
||||||
# `success` is true if the dbus call was successful and output is what the
|
services.xserver.desktopManager.gnome.debug = true;
|
||||||
# javascript evaluates to.
|
|
||||||
eval =
|
|
||||||
command:
|
|
||||||
run "gdbus call --session -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval ${command}";
|
|
||||||
|
|
||||||
# False when startup is done
|
systemd.user.services = {
|
||||||
startingUp = eval "Main.layoutManager._startingUp";
|
"org.gnome.Shell@wayland" = {
|
||||||
|
serviceConfig = {
|
||||||
|
ExecStart = [
|
||||||
|
# Clear the list before overriding it.
|
||||||
|
""
|
||||||
|
# Eval API is now internal so Shell needs to run in unsafe mode.
|
||||||
|
# TODO: improve test driver so that it supports openqa-like manipulation
|
||||||
|
# that would allow us to drop this mess.
|
||||||
|
"${pkgs.gnome-shell}/bin/gnome-shell --unsafe-mode"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Start Console
|
};
|
||||||
launchConsole = run "gapplication launch org.gnome.Console";
|
|
||||||
|
|
||||||
# Hopefully Console's wm class
|
testScript =
|
||||||
wmClass = eval "global.display.focus_window.wm_class";
|
{ nodes, ... }:
|
||||||
in
|
let
|
||||||
''
|
# Keep line widths somewhat manageable
|
||||||
with subtest("Login to GNOME with GDM"):
|
user = nodes.machine.users.users.alice;
|
||||||
# wait for gdm to start
|
uid = toString user.uid;
|
||||||
machine.wait_for_unit("display-manager.service")
|
bus = "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${uid}/bus";
|
||||||
# wait for the wayland server
|
# Run a command in the appropriate user environment
|
||||||
machine.wait_for_file("/run/user/${uid}/wayland-0")
|
run = command: "su - ${user.name} -c '${bus} ${command}'";
|
||||||
# wait for alice to be logged in
|
|
||||||
machine.wait_for_unit("default.target", "${user.name}")
|
|
||||||
# check that logging in has given the user ownership of devices
|
|
||||||
assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
|
|
||||||
|
|
||||||
with subtest("Wait for GNOME Shell"):
|
# Call javascript in gnome shell, returns a tuple (success, output), where
|
||||||
# correct output should be (true, 'false')
|
# `success` is true if the dbus call was successful and output is what the
|
||||||
machine.wait_until_succeeds(
|
# javascript evaluates to.
|
||||||
"${startingUp} | grep -q 'true,..false'"
|
eval =
|
||||||
)
|
command:
|
||||||
|
run "gdbus call --session -d org.gnome.Shell -o /org/gnome/Shell -m org.gnome.Shell.Eval ${command}";
|
||||||
|
|
||||||
with subtest("Open Console"):
|
# False when startup is done
|
||||||
# Close the Activities view so that Shell can correctly track the focused window.
|
startingUp = eval "Main.layoutManager._startingUp";
|
||||||
machine.send_key("esc")
|
|
||||||
|
|
||||||
machine.succeed(
|
# Start Console
|
||||||
"${launchConsole}"
|
launchConsole = run "gapplication launch org.gnome.Console";
|
||||||
)
|
|
||||||
# correct output should be (true, '"org.gnome.Console"')
|
# Hopefully Console's wm class
|
||||||
machine.wait_until_succeeds(
|
wmClass = eval "global.display.focus_window.wm_class";
|
||||||
"${wmClass} | grep -q 'true,...org.gnome.Console'"
|
in
|
||||||
)
|
''
|
||||||
machine.sleep(20)
|
with subtest("Login to GNOME with GDM"):
|
||||||
machine.screenshot("screen")
|
# wait for gdm to start
|
||||||
'';
|
machine.wait_for_unit("display-manager.service")
|
||||||
}
|
# wait for the wayland server
|
||||||
)
|
machine.wait_for_file("/run/user/${uid}/wayland-0")
|
||||||
|
# wait for alice to be logged in
|
||||||
|
machine.wait_for_unit("default.target", "${user.name}")
|
||||||
|
# check that logging in has given the user ownership of devices
|
||||||
|
assert "alice" in machine.succeed("getfacl -p /dev/snd/timer")
|
||||||
|
|
||||||
|
with subtest("Wait for GNOME Shell"):
|
||||||
|
# correct output should be (true, 'false')
|
||||||
|
machine.wait_until_succeeds(
|
||||||
|
"${startingUp} | grep -q 'true,..false'"
|
||||||
|
)
|
||||||
|
|
||||||
|
with subtest("Open Console"):
|
||||||
|
# Close the Activities view so that Shell can correctly track the focused window.
|
||||||
|
machine.send_key("esc")
|
||||||
|
|
||||||
|
machine.succeed(
|
||||||
|
"${launchConsole}"
|
||||||
|
)
|
||||||
|
# correct output should be (true, '"org.gnome.Console"')
|
||||||
|
machine.wait_until_succeeds(
|
||||||
|
"${wmClass} | grep -q 'true,...org.gnome.Console'"
|
||||||
|
)
|
||||||
|
machine.sleep(20)
|
||||||
|
machine.screenshot("screen")
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue