Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 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 | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 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/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 "use strict"; | 18 "use strict"; |
19 | 19 |
20 const FIREFOX_VERSION = "57.0"; | 20 const FIREFOX_VERSION = "57.0"; |
21 | 21 |
22 const path = require("path"); | 22 const path = require("path"); |
23 const webdriver = require("selenium-webdriver"); | 23 const webdriver = require("selenium-webdriver"); |
24 const {By, until} = webdriver; | 24 const {By, until} = webdriver; |
25 const firefox = require("selenium-webdriver/firefox"); | 25 const firefox = require("selenium-webdriver/firefox"); |
26 const {Command} = require("selenium-webdriver/lib/command"); | 26 const {Command} = require("selenium-webdriver/lib/command"); |
27 const {ensureFirefox} = require("../adblockpluscore/test/runners/" + | 27 const {ensureFirefox} = require("../adblockpluscore/test/runners/" + |
28 "firefox_download"); | 28 "firefox_download"); |
29 | 29 |
30 | |
31 function reportElements(test, driver, success) | 30 function reportElements(test, driver, success) |
32 { | 31 { |
33 return driver.findElements( | 32 return driver.findElements( |
34 By.css(`#qunit-tests ${success ? ".pass" : ".fail"} .test-name`)). | 33 By.css(`#qunit-tests ${success ? ".pass" : ".fail"} .test-name`) |
Sebastian Noack
2018/08/24 12:54:42
Nit: (Same like in Python) please put closing pare
tlucas
2018/08/24 13:10:14
Done.
| |
35 then(elements => Promise.all(elements.map(elem => | 34 ).then(elements => Promise.all(elements.map(elem => |
36 elem.getAttribute("innerHTML").then(data => test.ok(success, data))))); | 35 elem.getAttribute("innerHTML").then(data => test.ok(success, data)) |
36 ))); | |
37 } | 37 } |
38 | 38 |
39 exports.runFirefox = function(test) | 39 exports.runFirefox = function(test) |
40 { | 40 { |
41 // https://stackoverflow.com/a/45045036 | 41 // https://stackoverflow.com/a/45045036 |
42 function installWebExt(driver, extension) | 42 function installWebExt(driver, extension) |
43 { | 43 { |
44 let cmd = new Command("moz-install-web-ext") | 44 let cmd = new Command("moz-install-web-ext") |
45 .setParameter("path", path.resolve(extension)) | 45 .setParameter("path", path.resolve(extension)) |
46 .setParameter("temporary", true); | 46 .setParameter("temporary", true); |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
91 driver.findElement(By.id("qunit-testresult")) | 91 driver.findElement(By.id("qunit-testresult")) |
92 .getAttribute("innerHTML").then(data => | 92 .getAttribute("innerHTML").then(data => |
93 data.includes("Tests completed"))) | 93 data.includes("Tests completed"))) |
94 ).then(() => Promise.all([ | 94 ).then(() => Promise.all([ |
95 reportElements(test, driver, true), | 95 reportElements(test, driver, true), |
96 reportElements(test, driver, false) | 96 reportElements(test, driver, false) |
97 ])).then(() => | 97 ])).then(() => |
98 { | 98 { |
99 driver.quit(); | 99 driver.quit(); |
100 test.done(); | 100 test.done(); |
101 }).catch((err) => | 101 }, err => |
102 { | |
103 driver.quit().then(() => | 102 driver.quit().then(() => |
104 { | 103 { |
105 throw err; | 104 throw err; |
106 }); | 105 }) |
107 }); | 106 ); |
108 }); | 107 }); |
109 }; | 108 }; |
LEFT | RIGHT |