2019-11-05 15:27:07 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
2014-06-28 14:04:49 +00:00
|
|
|
name = "firefox";
|
2015-07-12 10:09:40 +00:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = [ eelco shlevy ];
|
2015-07-12 10:09:40 +00:00
|
|
|
};
|
2010-01-05 14:12:51 +00:00
|
|
|
|
2011-09-14 18:20:50 +00:00
|
|
|
machine =
|
2018-07-20 20:56:59 +00:00
|
|
|
{ pkgs, ... }:
|
2010-01-05 14:12:51 +00:00
|
|
|
|
2013-09-04 11:05:09 +00:00
|
|
|
{ imports = [ ./common/x11.nix ];
|
2017-03-15 15:49:08 +00:00
|
|
|
environment.systemPackages = [ pkgs.firefox pkgs.xdotool ];
|
2010-01-05 14:12:51 +00:00
|
|
|
};
|
|
|
|
|
2019-11-05 15:27:07 +00:00
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_x()
|
|
|
|
|
|
|
|
with subtest("wait until Firefox has finished loading the Valgrind docs page"):
|
|
|
|
machine.execute(
|
|
|
|
"xterm -e 'firefox file://${pkgs.valgrind.doc}/share/doc/valgrind/html/index.html' &"
|
|
|
|
)
|
|
|
|
machine.wait_for_window("Valgrind")
|
|
|
|
machine.sleep(40)
|
|
|
|
|
|
|
|
with subtest("Close default browser prompt"):
|
|
|
|
machine.execute("xdotool key space")
|
|
|
|
|
|
|
|
with subtest("Hide default browser window"):
|
|
|
|
machine.sleep(2)
|
|
|
|
machine.execute("xdotool key F12")
|
|
|
|
|
|
|
|
with subtest("wait until Firefox draws the developer tool panel"):
|
|
|
|
machine.sleep(10)
|
|
|
|
machine.succeed("xwininfo -root -tree | grep Valgrind")
|
|
|
|
machine.screenshot("screen")
|
2010-01-05 14:12:51 +00:00
|
|
|
'';
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-04-14 12:02:44 +00:00
|
|
|
})
|