2014-04-14 05:02:44 -07:00
|
|
|
import ./make-test.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; {
|
|
|
|
maintainers = [ eelco chaoflow shlevy ];
|
|
|
|
};
|
2010-01-05 06:12:51 -08:00
|
|
|
|
2011-09-14 11:20:50 -07:00
|
|
|
machine =
|
2010-01-05 06:12:51 -08:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2013-09-04 04:05:09 -07:00
|
|
|
{ imports = [ ./common/x11.nix ];
|
2010-01-05 07:32:14 -08:00
|
|
|
environment.systemPackages = [ pkgs.firefox ];
|
2010-01-05 06:12:51 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
2010-01-05 15:59:29 -08:00
|
|
|
$machine->waitForX;
|
2015-08-28 04:27:51 -07:00
|
|
|
$machine->execute("firefox file://${pkgs.valgrind.doc}/share/doc/valgrind/html/index.html &");
|
2011-01-10 06:41:16 -08:00
|
|
|
$machine->waitForWindow(qr/Valgrind/);
|
|
|
|
$machine->sleep(40); # wait until Firefox has finished loading the page
|
2010-01-05 06:12:51 -08:00
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2014-04-14 05:02:44 -07:00
|
|
|
})
|