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

Side by Side Diff: test/runners/chromium_process.js

Issue 29720661: Issue 6391 - Allow running the browser unit tests with Firefox (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore/
Patch Set: Added firefox download Created March 19, 2018, 8:37 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 | « test/runners/chromium_download.js ('k') | test/runners/chromiumwd_process.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /* eslint-env node */ 18 /* eslint-env node */
19 /* eslint no-console: "off" */ 19 /* eslint no-console: "off" */
20 20
21 "use strict"; 21 "use strict";
22 22
23 const childProcess = require("child_process"); 23 const childProcess = require("child_process");
24 const fs = require("fs"); 24 const fs = require("fs");
25 const https = require("https");
26 const os = require("os"); 25 const os = require("os");
27 const path = require("path"); 26 const path = require("path");
28 27
29 const remoteInterface = require("chrome-remote-interface"); 28 const remoteInterface = require("chrome-remote-interface");
30 const extractZip = require("extract-zip");
31 29
30 const {ensureChromium} = require("./chromium_download");
31
32 // Chromium 60.0.3082.x
32 const CHROMIUM_REVISION = 467222; 33 const CHROMIUM_REVISION = 467222;
33 34
34 function rmdir(dirPath) 35 function rmdir(dirPath)
35 { 36 {
36 for (let file of fs.readdirSync(dirPath)) 37 for (let file of fs.readdirSync(dirPath))
37 { 38 {
38 let filePath = path.join(dirPath, file); 39 let filePath = path.join(dirPath, file);
39 try 40 try
40 { 41 {
41 if (fs.statSync(filePath).isDirectory()) 42 if (fs.statSync(filePath).isDirectory())
(...skipping 10 matching lines...) Expand all
52 try 53 try
53 { 54 {
54 fs.rmdirSync(dirPath); 55 fs.rmdirSync(dirPath);
55 } 56 }
56 catch (error) 57 catch (error)
57 { 58 {
58 console.error(error); 59 console.error(error);
59 } 60 }
60 } 61 }
61 62
62 function getChromiumExecutable(chromiumDir)
63 {
64 switch (process.platform)
65 {
66 case "win32":
67 return path.join(chromiumDir, "chrome-win32", "chrome.exe");
68 case "linux":
69 return path.join(chromiumDir, "chrome-linux", "chrome");
70 case "darwin":
71 return path.join(chromiumDir, "chrome-mac", "Chromium.app", "Contents",
72 "MacOS", "Chromium");
73 default:
74 throw new Error("Unexpected platform");
75 }
76 }
77
78 function ensureChromium()
79 {
80 let {platform} = process;
81 if (platform == "win32")
82 platform += "-" + process.arch;
83 let buildTypes = {
84 "win32-ia32": ["Win", "chrome-win32.zip"],
85 "win32-x64": ["Win_x64", "chrome-win32.zip"],
86 "linux": ["Linux_x64", "chrome-linux.zip"],
87 "darwin": ["Mac", "chrome-mac.zip"]
88 };
89
90 if (!buildTypes.hasOwnProperty(platform))
91 {
92 let err = new Error(`Cannot run browser tests, ${platform} is unsupported`);
93 return Promise.reject(err);
94 }
95
96
97 return Promise.resolve().then(() =>
98 {
99 let snapshotsDir = path.join(__dirname, "chromium-snapshots");
100 let chromiumDir = path.join(snapshotsDir,
101 `chromium-${platform}-${CHROMIUM_REVISION}`);
102 if (fs.existsSync(chromiumDir))
103 return chromiumDir;
104
105 if (!fs.existsSync(path.dirname(chromiumDir)))
106 fs.mkdirSync(path.dirname(chromiumDir));
107
108 let [dir, fileName] = buildTypes[platform];
109 let archive = path.join(snapshotsDir, "download-cache",
110 `${CHROMIUM_REVISION}-${fileName}`);
111
112 return Promise.resolve()
113 .then(() =>
114 {
115 if (!fs.existsSync(archive))
116 {
117 let url = `https://www.googleapis.com/download/storage/v1/b/chromium-b rowser-snapshots/o/${dir}%2F${CHROMIUM_REVISION}%2F${fileName}?alt=media`;
118 console.info("Downloading Chromium...");
119 return download(url, archive);
120 }
121 console.info(`Reusing cached archive ${archive}`);
122 })
123 .then(() => unzipArchive(archive, chromiumDir))
124 .then(() => chromiumDir);
125 }).then(dir => getChromiumExecutable(dir));
126 }
127
128 function download(url, destFile)
129 {
130 return new Promise((resolve, reject) =>
131 {
132 let cacheDir = path.dirname(destFile);
133 if (!fs.existsSync(cacheDir))
134 fs.mkdirSync(cacheDir);
135 let tempDest = destFile + "-" + process.pid;
136 let writable = fs.createWriteStream(tempDest);
137
138 https.get(url, response =>
139 {
140 if (response.statusCode != 200)
141 {
142 reject(
143 new Error(`Unexpected server response: ${response.statusCode}`));
144 response.resume();
145 return;
146 }
147
148 response.pipe(writable)
149 .on("error", error =>
150 {
151 writable.close();
152 fs.unlinkSync(tempDest);
153 reject(error);
154 })
155 .on("close", () =>
156 {
157 writable.close();
158 fs.renameSync(tempDest, destFile);
159 resolve();
160 });
161 }).on("error", reject);
162 });
163 }
164
165 function unzipArchive(archive, destDir)
166 {
167 return new Promise((resolve, reject) =>
168 {
169 extractZip(archive, {dir: destDir}, err =>
170 {
171 if (err)
172 reject(err);
173 else
174 resolve();
175 });
176 });
177 }
178
179 function startChromium(chromiumPath) 63 function startChromium(chromiumPath)
180 { 64 {
181 fs.chmodSync(chromiumPath, fs.constants.S_IRWXU); 65 fs.chmodSync(chromiumPath, fs.constants.S_IRWXU);
182 66
183 let dataDir = fs.mkdtempSync(path.join(os.tmpdir(), "chromium-data")); 67 let dataDir = fs.mkdtempSync(path.join(os.tmpdir(), "chromium-data"));
184 let child = null; 68 let child = null;
185 return { 69 return {
186 kill: () => child && child.kill(), 70 kill: () => child && child.kill(),
187 done: new Promise((resolve, reject) => 71 done: new Promise((resolve, reject) =>
188 { 72 {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 } 133 }
250 134
251 function runScript(script, scriptName, scriptArgs) 135 function runScript(script, scriptName, scriptArgs)
252 { 136 {
253 return connectRemoteInterface().then(async client => 137 return connectRemoteInterface().then(async client =>
254 { 138 {
255 try 139 try
256 { 140 {
257 let {Runtime, Log, Console} = client; 141 let {Runtime, Log, Console} = client;
258 142
143 console.log("\nTests in Chromium (Remote Interface)\n");
144
259 await Log.enable(); 145 await Log.enable();
260 Log.entryAdded(({entry}) => 146 Log.entryAdded(({entry}) =>
261 { 147 {
262 reportMessage(entry.text, entry.level); 148 reportMessage(entry.text, entry.level);
263 }); 149 });
264 150
265 await Console.enable(); 151 await Console.enable();
266 Console.messageAdded(({message}) => 152 Console.messageAdded(({message}) =>
267 { 153 {
268 reportMessage(message.text, message.level); 154 reportMessage(message.text, message.level);
(...skipping 30 matching lines...) Expand all
299 } 185 }
300 finally 186 finally
301 { 187 {
302 client.close(); 188 client.close();
303 } 189 }
304 }); 190 });
305 } 191 }
306 192
307 module.exports = function(script, scriptName, ...scriptArgs) 193 module.exports = function(script, scriptName, ...scriptArgs)
308 { 194 {
309 return ensureChromium().then(chromiumPath => 195 return ensureChromium(CHROMIUM_REVISION).then(chromiumPath =>
310 { 196 {
311 let child = startChromium(chromiumPath); 197 let child = startChromium(chromiumPath);
312 return Promise.race([ 198 return Promise.race([
313 child.done, 199 child.done,
314 runScript(script, scriptName, scriptArgs) 200 runScript(script, scriptName, scriptArgs)
315 ]).then(result => 201 ]).then(result =>
316 { 202 {
317 child.kill(); 203 child.kill();
318 return result; 204 return result;
319 }).catch(error => 205 }).catch(error =>
320 { 206 {
321 child.kill(); 207 child.kill();
322 throw error; 208 throw error;
323 }); 209 });
324 }); 210 });
325 }; 211 };
OLDNEW
« no previous file with comments | « test/runners/chromium_download.js ('k') | test/runners/chromiumwd_process.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld