2014-04-14 13:02:44 +01:00
|
|
|
import ./make-test.nix ({ pkgs, ... }: {
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "firefox";
|
2015-07-12 11:09:40 +01:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = [ eelco shlevy ];
|
2015-07-12 11:09:40 +01:00
|
|
|
};
|
2010-01-05 14:12:51 +00:00
|
|
|
|
2011-09-14 19:20:50 +01:00
|
|
|
machine =
|
2018-07-20 21:56:59 +01:00
|
|
|
{ pkgs, ... }:
|
2010-01-05 14:12:51 +00:00
|
|
|
|
2013-09-04 12:05:09 +01: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
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
2010-01-05 23:59:29 +00:00
|
|
|
$machine->waitForX;
|
2017-03-15 15:49:08 +00:00
|
|
|
$machine->execute("xterm -e 'firefox file://${pkgs.valgrind.doc}/share/doc/valgrind/html/index.html' &");
|
2011-01-10 14:41:16 +00:00
|
|
|
$machine->waitForWindow(qr/Valgrind/);
|
|
|
|
$machine->sleep(40); # wait until Firefox has finished loading the page
|
2017-03-15 15:49:08 +00:00
|
|
|
$machine->execute("xdotool key space"); # do I want to make Firefox the
|
|
|
|
# default browser? I just want to close the dialog
|
|
|
|
$machine->sleep(2); # wait until Firefox hides the default browser window
|
|
|
|
$machine->execute("xdotool key F12");
|
|
|
|
$machine->sleep(10); # wait until Firefox draws the developer tool panel
|
|
|
|
$machine->succeed("xwininfo -root -tree | grep Valgrind");
|
2010-01-05 14:12:51 +00:00
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
2011-09-14 19:20:50 +01:00
|
|
|
|
2014-04-14 13:02:44 +01:00
|
|
|
})
|