forked from philc/vimium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.js
executable file
·256 lines (222 loc) · 9.4 KB
/
make.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run --unstable
// --unstable is required for Puppeteer.
// Usage: ./make.js command. Use -l to list commands.
// This is a set of tasks for building and testing Vimium in development.
import * as fs from "https://deno.land/[email protected]/fs/mod.ts";
import * as fsCopy from "https://deno.land/[email protected]/fs/copy.ts";
import * as path from "https://deno.land/[email protected]/path/mod.ts";
import { desc, run, task } from "https://deno.land/x/[email protected]/mod.ts";
import puppeteer from "https://deno.land/x/[email protected]/mod.ts";
import * as shoulda from "./tests/vendor/shoulda.js";
import JSON5 from "https://deno.land/x/[email protected]/mod.ts";
const projectPath = new URL(".", import.meta.url).pathname;
async function shell(procName, argsArray = []) {
// NOTE(philc): Does drake's `sh` function work on Windows? If so, that can replace this function.
if (Deno.build.os == "windows") {
// if win32, prefix arguments with "/c {original command}"
// e.g. "mkdir c:\git\vimium" becomes "cmd.exe /c mkdir c:\git\vimium"
optArray.unshift("/c", procName);
procName = "cmd.exe";
}
const p = Deno.run({ cmd: [procName].concat(argsArray) });
const status = await p.status();
if (!status.success) {
throw new Error(`${procName} ${argsArray} exited with status ${status.code}`);
}
}
// Clones and augments the manifest.json that we use for Chrome with the keys needed for Firefox.
function createFirefoxManifest(manifest) {
manifest = JSON.parse(JSON.stringify(manifest)); // Deep clone.
manifest.permissions = manifest.permissions
// The favicon permission is not yet supported by Firefox.
.filter((p) => p != "favicon")
// Firefox needs clipboardRead and clipboardWrite for commands like "copyCurrentUrl", but Chrome
// does not. See #4186.
.concat(["clipboardRead", "clipboardWrite"]);
// As of 2023-07-08 Firefox doesn't yet support background.service_worker.
delete manifest.background["service_worker"];
Object.assign(manifest.background, {
"scripts": ["background_scripts/background.js"],
});
// This key is only supported by Firefox.
Object.assign(manifest.action, {
"default_area": "navbar",
});
Object.assign(manifest, {
"browser_specific_settings": {
"gecko": {
// This ID was generated by the Firefox store upon first submission. It's needed in
// development mode, or many extension APIs don't work.
"id": "{d7742d87-e61d-4b78-b8a1-b469842139fa}",
"strict_min_version": "112.0",
},
},
});
return manifest;
}
async function parseManifestFile() {
// Chrome's manifest.json supports JavaScript comment syntax. However, the Chrome Store rejects
// manifests with JavaScript comments in them! So here we use the JSON5 library, rather than JSON
// library, to parse our manifest.json and remove its comments.
return JSON5.parse(await Deno.readTextFile("./manifest.json"));
}
// Builds a zip file for submission to the Chrome and Firefox stores. The output is in dist/.
async function buildStorePackage() {
const excludeList = [
"*.md",
".*",
"CREDITS",
"MIT-LICENSE.txt",
"dist",
"make.js",
"deno.json",
"deno.lock",
"test_harnesses",
"tests",
];
const chromeManifest = await parseManifestFile();
const rsyncOptions = ["-r", ".", "dist/vimium"].concat(
...excludeList.map((item) => ["--exclude", item]),
);
const vimiumVersion = chromeManifest["version"];
const writeDistManifest = async (manifest) => {
await Deno.writeTextFile("dist/vimium/manifest.json", JSON.stringify(manifest, null, 2));
};
// cd into "dist/vimium" before building the zip, so that the files in the zip don't each have the
// path prefix "dist/vimium".
// --filesync ensures that files in the archive which are no longer on disk are deleted. It's
// equivalent to removing the zip file before the build.
const zipCommand = "cd dist/vimium && zip -r --filesync ";
await shell("rm", ["-rf", "dist/vimium"]);
await shell("mkdir", [
"-p",
"dist/vimium",
"dist/chrome-canary",
"dist/chrome-store",
"dist/firefox",
]);
await shell("rsync", rsyncOptions);
const firefoxManifest = createFirefoxManifest(chromeManifest);
await writeDistManifest(firefoxManifest);
await shell("bash", ["-c", `${zipCommand} ../firefox/vimium-firefox-${vimiumVersion}.zip .`]);
// Build the Chrome Store package.
await writeDistManifest(chromeManifest);
await shell("bash", [
"-c",
`${zipCommand} ../chrome-store/vimium-chrome-store-${vimiumVersion}.zip .`,
]);
// Build the Chrome Store dev package.
await writeDistManifest(Object.assign({}, chromeManifest, {
name: "Vimium Canary",
description: "This is the development branch of Vimium (it is beta software).",
}));
await shell("bash", [
"-c",
`${zipCommand} ../chrome-canary/vimium-canary-${vimiumVersion}.zip .`,
]);
}
const runUnitTests = async () => {
// Import every test file.
const dir = path.join(projectPath, "tests/unit_tests");
const files = Array.from(Deno.readDirSync(dir)).map((f) => f.name).sort();
for (let f of files) {
if (f.endsWith("_test.js")) {
await import(path.join(dir, f));
}
}
await shoulda.run();
};
const runDomTests = async () => {
const testFile = `${projectPath}/tests/dom_tests/dom_tests.html`;
await (async () => {
const browser = await puppeteer.launch({
// NOTE(philc): "Disabling web security" is required for vomnibar_test.js, because we have a
// file:// page accessing an iframe, and Chrome prevents this because it's a cross-origin
// request.
args: ["--disable-web-security"],
});
const page = await browser.newPage();
let receivedErrorOutput = false;
page.on("console", async (msg) => {
const args = await Promise.all(msg.args().map((a) => a.jsonValue()));
console.log(...args);
});
page.on("error", (err) => {
// As far as I can tell, this handler never gets executed.
console.error(err);
});
// pageerror catches the same events that window.onerror would, like JavaScript parsing errors.
page.on("pageerror", (error) => {
receivedErrorOutput = true;
// Whatever type error is, it requires toString() to print the message.
console.log(error.toString());
});
page.on(
"requestfailed",
(request) => console.log(console.log(`${request.failure().errorText} ${request.url()}`)),
);
// Shoulda.js is an ECMAScript module, and those cannot be loaded over file:/// protocols due to
// a Chrome security restriction, and this test suite loads the dom_tests.html page from the
// local file system. To (painfully) work around this, we're injecting the contents of
// shoulda.js into the page. We munge the file contents and assign it to a string
// (`shouldaJsContents`), and then have the page itself document.write that string during load
// (the document.write call is in dom_tests.html). Another workaround would be to spin up a
// local file server here and load dom_tests from the network.
// Discussion: https://bugs.chromium.org/p/chromium/issues/detail?id=824651
let shouldaJsContents = (await Deno.readTextFile("./tests/vendor/shoulda.js")) +
"\n" +
// Export the module contents to window.shoulda, which is what the tests expect.
"window.shoulda = {assert, context, ensureCalled, getStats, reset, run, setup, should, stub, teardown};";
// Remove the `export` statement from the shoulda.js module. Because we're using document.write
// to add this, an export statement will cause a JS error and halt further parsing.
shouldaJsContents = shouldaJsContents.replace(/export {[^}]+}/, "");
await page.evaluateOnNewDocument((content) => {
window.shouldaJsContents = content;
}, shouldaJsContents);
page.goto("file://" + testFile);
await page.waitForNavigation({ waitUntil: "load" });
const testsFailed = await page.evaluate(async () => {
await shoulda.run();
return shoulda.getStats().failed;
});
// NOTE(philc): At one point in development, I noticed that the output from Deno would suddenly
// pause, prior to the tests fully finishing, so closing the browser here may be racy. If it
// occurs again, we may need to add "await delay(200)".
await browser.close();
if (receivedErrorOutput) {
throw "The tests fail because there was a page-level error.";
}
return testsFailed;
})();
};
desc("Run unit tests");
task("test-unit", [], async () => {
const failed = await runUnitTests();
if (failed > 0) {
console.log("Failed:", failed);
}
});
desc("Run DOM tests");
task("test-dom", [], async () => {
const failed = await runDomTests();
if (failed > 0) {
console.log("Failed:", failed);
}
});
desc("Run unit and DOM tests");
task("test", [], async () => {
const failed = (await runUnitTests()) + (await runDomTests());
if (failed > 0) {
console.log("Failed:", failed);
}
});
desc("Builds a zip file for submission to the Chrome and Firefox stores. The output is in dist/");
task("package", [], async () => {
await buildStorePackage();
});
desc("Replaces manifest.json with a Firefox-compatible version, for development");
task("write-firefox-manifest", [], async () => {
const firefoxManifest = createFirefoxManifest(await parseManifestFile());
await Deno.writeTextFile("./manifest.json", JSON.stringify(firefoxManifest, null, 2));
});
run();