nixosTests.pantheon: port to python
This commit is contained in:
parent
aa6fb602a0
commit
e15c4e48a2
1 changed files with 26 additions and 25 deletions
|
@ -1,9 +1,10 @@
|
||||||
import ./make-test.nix ({ pkgs, ...} :
|
import ./make-test-python.nix ({ pkgs, ...} :
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "pantheon";
|
name = "pantheon";
|
||||||
|
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
maintainers = [ worldofpeace ];
|
maintainers = pkgs.pantheon.maintainers;
|
||||||
};
|
};
|
||||||
|
|
||||||
machine = { ... }:
|
machine = { ... }:
|
||||||
|
@ -23,35 +24,35 @@ import ./make-test.nix ({ pkgs, ...} :
|
||||||
user = nodes.machine.config.users.users.alice;
|
user = nodes.machine.config.users.users.alice;
|
||||||
in ''
|
in ''
|
||||||
# Wait for display manager to start
|
# Wait for display manager to start
|
||||||
$machine->waitForUnit("display-manager.service");
|
machine.wait_for_unit("display-manager.service")
|
||||||
|
|
||||||
# Test we can see username in elementary-greeter
|
# Test we can see username in elementary-greeter
|
||||||
$machine->waitForText(qr/${user.description}/);
|
machine.wait_for_text("${user.description}")
|
||||||
$machine->screenshot("elementary_greeter_lightdm");
|
machine.screenshot("elementary_greeter_lightdm")
|
||||||
|
|
||||||
# Log in
|
# Log in with elementary-greeter
|
||||||
$machine->sendChars("${user.password}\n");
|
machine.send_chars("${user.password}\n")
|
||||||
$machine->waitForUnit("default.target","alice");
|
machine.wait_for_unit("default.target", "${user.name}")
|
||||||
$machine->waitForFile("${user.home}/.Xauthority");
|
machine_wait_for_x()
|
||||||
$machine->succeed("xauth merge ${user.home}/.Xauthority");
|
machine.wait_for_file("${user.home}/.Xauthority")
|
||||||
|
machine.succeed("xauth merge ${user.home}/.Xauthority")
|
||||||
|
|
||||||
# Check if "pantheon-shell" components actually start
|
# Check that logging in has given the user ownership of devices
|
||||||
$machine->waitUntilSucceeds("pgrep gala");
|
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
|
||||||
$machine->waitForWindow(qr/gala/);
|
|
||||||
$machine->waitUntilSucceeds("pgrep wingpanel");
|
|
||||||
$machine->waitForWindow("wingpanel");
|
|
||||||
$machine->waitUntilSucceeds("pgrep plank");
|
|
||||||
$machine->waitForWindow(qr/plank/);
|
|
||||||
|
|
||||||
# Check that logging in has given the user ownership of devices.
|
# TODO: DBus API could eliminate this?
|
||||||
$machine->succeed("getfacl -p /dev/snd/timer | grep -q alice");
|
# Check if pantheon-shell components actually start
|
||||||
|
machine.wait_until_succeeds("pgrep gala")
|
||||||
|
machine.wait_for_window("gala")
|
||||||
|
machine.wait_until_succeeds("pgrep wingpanel")
|
||||||
|
machine.wait_for_window("wingpanel")
|
||||||
|
machine.wait_until_succeeds("pgrep plank")
|
||||||
|
machine.wait_for_window("plank")
|
||||||
|
|
||||||
# Open elementary terminal
|
# Open elementary terminal
|
||||||
$machine->execute("su - alice -c 'DISPLAY=:0.0 io.elementary.terminal &'");
|
machine.execute("su - ${user.name} -c 'DISPLAY=:0 io.elementary.terminal &'")
|
||||||
$machine->waitForWindow(qr/io.elementary.terminal/);
|
machine.wait_for_window("io.elementary.terminal")
|
||||||
|
machine.sleep(20)
|
||||||
# Take a screenshot of the desktop
|
machine.screenshot("screen")
|
||||||
$machine->sleep(20);
|
|
||||||
$machine->screenshot("screen");
|
|
||||||
'';
|
'';
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue