nixosTests.plotinus: Port to Python
This commit is contained in:
parent
0a33a4ab11
commit
acef369bc3
|
@ -1,4 +1,4 @@
|
||||||
import ./make-test.nix ({ pkgs, ... }: {
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
name = "plotinus";
|
name = "plotinus";
|
||||||
meta = {
|
meta = {
|
||||||
maintainers = pkgs.plotinus.meta.maintainers;
|
maintainers = pkgs.plotinus.meta.maintainers;
|
||||||
|
@ -12,16 +12,17 @@ import ./make-test.nix ({ pkgs, ... }: {
|
||||||
environment.systemPackages = [ pkgs.gnome3.gnome-calculator pkgs.xdotool ];
|
environment.systemPackages = [ pkgs.gnome3.gnome-calculator pkgs.xdotool ];
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript =
|
testScript = ''
|
||||||
''
|
machine.wait_for_x()
|
||||||
$machine->waitForX;
|
machine.succeed("gnome-calculator &")
|
||||||
$machine->succeed("gnome-calculator &");
|
machine.wait_for_window("gnome-calculator")
|
||||||
$machine->waitForWindow(qr/gnome-calculator/);
|
machine.succeed(
|
||||||
$machine->succeed("xdotool search --sync --onlyvisible --class gnome-calculator windowfocus --sync key ctrl+shift+p");
|
"xdotool search --sync --onlyvisible --class gnome-calculator "
|
||||||
$machine->sleep(5); # wait for the popup
|
+ "windowfocus --sync key --clearmodifiers --delay 1 'ctrl+shift+p'"
|
||||||
$machine->succeed("xdotool key --delay 100 p r e f e r e n c e s Return");
|
)
|
||||||
$machine->waitForWindow(qr/Preferences/);
|
machine.sleep(5) # wait for the popup
|
||||||
$machine->screenshot("screen");
|
machine.succeed("xdotool key --delay 100 p r e f e r e n c e s Return")
|
||||||
'';
|
machine.wait_for_window("Preferences")
|
||||||
|
machine.screenshot("screen")
|
||||||
|
'';
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user