2019-11-05 07:27:07 -08:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
2014-06-28 07:04:49 -07:00
|
|
|
name = "firefox";
|
2015-07-12 03:09:40 -07:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
2019-02-22 07:14:13 -08:00
|
|
|
maintainers = [ eelco shlevy ];
|
2015-07-12 03:09:40 -07:00
|
|
|
};
|
2010-01-05 06:12:51 -08:00
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
machine =
|
2018-07-20 13:56:59 -07:00
|
|
|
{ pkgs, ... }:
|
2010-01-05 06:12:51 -08:00
|
|
|
|
2013-09-04 04:05:09 -07:00
|
|
|
{ imports = [ ./common/x11.nix ];
|
2017-03-15 08:49:08 -07:00
|
|
|
environment.systemPackages = [ pkgs.firefox pkgs.xdotool ];
|
2010-01-05 06:12:51 -08:00
|
|
|
};
|
|
|
|
|
2019-11-05 07:27:07 -08: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 06:12:51 -08:00
|
|
|
'';
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2014-04-14 05:02:44 -07:00
|
|
|
})
|