Left: | ||
Right: |
OLD | NEW |
---|---|
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 function executeScript(driver, name, script, scriptName, scriptArgs) | 20 function executeScript(driver, name, script, scriptName, scriptArgs) |
21 { | 21 { |
22 let realScript = `let f = ${script} | 22 let realScript = `let f = ${script} |
23 let callback = arguments[arguments.length - 1]; | 23 let callback = arguments[arguments.length - 1]; |
24 return Promise.resolve() | 24 return Promise.resolve() |
25 .then(() => f(...arguments)) | 25 .then(() => f(...arguments)) |
26 .then(() => callback());`; | 26 .then(() => callback());`; |
27 return driver.executeScript(`window.consoleLogs = []; | 27 return driver.executeScript(`let oldLog = console.log; |
28 let oldLog = console.log; | |
29 console.log = msg => { | 28 console.log = msg => { |
Sebastian Noack
2018/09/17 16:18:06
What is about console.error(), console.warn(), etc
hub
2018/09/18 22:23:36
Only console.log is used for reporting test result
| |
30 window.consoleLogs.push(msg); | 29 window.consoleLogs.log.push(msg); |
31 oldLog.call(this, msg); | 30 oldLog.call(this, msg); |
32 };`) | 31 };`) |
33 .then(() => driver.executeAsyncScript(realScript, scriptArgs)) | 32 .then(() => driver.executeAsyncScript(realScript, scriptArgs)) |
34 .then(() => driver.executeScript("return window.consoleLogs;")) | 33 .then(() => driver.executeScript("return window.consoleLogs;")) |
35 .then(result => | 34 .then(result => |
36 { | 35 { |
37 console.log(`\nBrowser tests in ${name}\n`); | 36 console.log(`\nBrowser tests in ${name}\n`); |
38 result.forEach(item => console.log(item)); | 37 result.log.forEach(item => console.log(item)); |
Sebastian Noack
2018/09/17 16:18:06
Nit: We generally prefer for..of loops of .forEach
hub
2018/09/18 22:23:36
Done.
| |
38 if (result.failures != 0) | |
39 return Promise.reject("Test failure"); | |
39 }) | 40 }) |
40 .then(() => driver.quit()) | 41 .finally(() => driver.quit()); |
Sebastian Noack
2018/09/17 16:18:06
.finally() requires Node.js 10, but we still suppo
hub
2018/09/18 22:23:36
I have run this on Node 7 and 8 and it did work. I
Sebastian Noack
2018/09/19 08:16:50
I'm on Node.js 8.5.0 and Promise.resolve().finally
| |
41 ; | |
42 } | 42 } |
43 | 43 |
44 module.exports.executeScript = executeScript; | 44 module.exports.executeScript = executeScript; |
OLD | NEW |