Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: test/firefox.js

Issue 29860555: Issue 6717 - Part 2: run qunit in headless firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluschrome/file/3270e924ba9f
Patch Set: Created Aug. 22, 2018, 8:12 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « package.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH
4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation.
8 *
9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 "use strict";
19
20 const {ensureFirefox} = require("../adblockpluscore/test/runners/" +
21 "firefox_download");
22 const webdriver = require("selenium-webdriver");
23 const By = webdriver.By;
24 const until = webdriver.until;
25
26 const FIREFOX_VERSION = "57.0";
27
28 const Command = require("selenium-webdriver/lib/command").Command;
29 const path = require("path");
30 const firefox = require("selenium-webdriver/firefox");
31
32 exports.runFirefox = function(test)
33 {
34 test.expect(14);
35 // https://stackoverflow.com/a/45045036
36 function installWebExt(driver, extension)
37 {
38 let cmd = new Command("moz-install-web-ext")
39 .setParameter("path", path.resolve(extension))
40 .setParameter("temporary", true);
41
42 driver.getExecutor()
43 .defineCommand(cmd.getName(), "POST",
44 "/session/:sessionId/moz/addon/install");
45
46 return driver.schedule(cmd, "installWebExt(" + extension + ")");
47 }
48
49 ensureFirefox(FIREFOX_VERSION).then(firefoxPath =>
50 {
51 let binary = new firefox.Binary(firefoxPath);
52
53 binary.addArguments("-headless");
54
55 let options = new firefox.Options()
56 .setBinary(binary);
57
58 let driver = new webdriver.Builder()
59 .forBrowser("firefox")
60 .setFirefoxOptions(options)
61 .build();
62
63 installWebExt(driver, "./devenv.gecko");
64
65 driver.wait(() =>
66 {
67 // Wait for the firstrun-page to be loaded
68 return driver.getAllWindowHandles().then(handles =>
69 {
70 if (handles.length > 1)
71 {
72 driver.switchTo().window(handles[1]);
73 return true;
74 }
75 return false;
76 });
77 }).then(() =>
78 {
79 // Navigate to the qunit index
80 driver.executeScript("location.href = \"qunit/index.html\";");
81 }).then(() =>
82 {
83 // Wait for qunit-results to be present
84 driver.wait(until.elementLocated(By.id("qunit-testresult")));
85 }).then(() =>
86 {
87 // Wait for tests to finish
88 driver.wait(() =>
89 {
90 return driver.findElement(By.id("qunit-testresult"))
91 .getAttribute("innerHTML").then(data =>
92 {
93 return data.search("Tests completed") >= 0;
94 });
95 });
96 }).then(() =>
97 {
98 // Find passed tests
99 driver.findElements(By.css("#qunit-tests .pass .test-name"))
100 .then(elements =>
101 {
102 for (let elem of elements)
103 {
104 elem.getAttribute("innerHTML").then(data =>
105 {
106 test.ok(true, data);
107 });
108 }
109 });
110 // Find failed tests
111 driver.findElements(By.css("#qunit-tests .fail .test-name"))
112 .then(elements =>
113 {
114 for (let elem of elements)
115 {
116 elem.getAttribute("innerHTML").then(data =>
117 {
118 test.ok(false, "Undefined error in " + data);
119 });
120 }
121 });
122 }).then(() =>
123 {
124 driver.quit();
125 test.done();
126 });
127 });
128 };
OLDNEW
« no previous file with comments | « package.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld