48 lines
2.1 KiB
JavaScript
48 lines
2.1 KiB
JavaScript
|
|
const assert = require("node:assert/strict");
|
||
|
|
const { readFileSync } = require("node:fs");
|
||
|
|
const test = require("node:test");
|
||
|
|
|
||
|
|
const source = readFileSync(require.resolve("./main.cjs"), "utf8");
|
||
|
|
|
||
|
|
function readFunction(name, nextName) {
|
||
|
|
const start = source.indexOf(`async function ${name}`);
|
||
|
|
const end = source.indexOf(`function ${nextName}`, start + 1);
|
||
|
|
assert.notEqual(start, -1, `${name} must exist`);
|
||
|
|
assert.notEqual(end, -1, `${nextName} must exist after ${name}`);
|
||
|
|
return source.slice(start, end);
|
||
|
|
}
|
||
|
|
|
||
|
|
test("locked startup launch intents wait for unlock instead of expiring", () => {
|
||
|
|
for (const [name, nextName] of [
|
||
|
|
["deliverJmsDeepLink", "flushPendingJmsDeepLinks"],
|
||
|
|
["deliverTelnetDeepLink", "flushPendingSshDeepLinks"],
|
||
|
|
["deliverOpenTerminalPath", "flushPendingOpenTerminalPaths"],
|
||
|
|
]) {
|
||
|
|
const functionSource = readFunction(name, nextName);
|
||
|
|
assert.match(functionSource, /timeoutMs: 0/);
|
||
|
|
assert.doesNotMatch(functionSource, /15000|30000/);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
test("failed locked launch-intent deliveries return to their queues", () => {
|
||
|
|
const jmsFlush = readFunction("flushPendingJmsDeepLinks", "deliverSshDeepLink");
|
||
|
|
const telnetFlush = readFunction("flushPendingTelnetDeepLinks", "deliverOpenTerminalPath");
|
||
|
|
const terminalFlush = readFunction("flushPendingOpenTerminalPaths", "hasPendingColdStartLaunchIntents");
|
||
|
|
|
||
|
|
assert.match(jmsFlush, /pendingJmsDeepLinkUrls\.unshift\(rawUrl\)/);
|
||
|
|
assert.match(telnetFlush, /pendingTelnetDeepLinkUrls\.unshift\(item\)/);
|
||
|
|
assert.match(terminalFlush, /pendingOpenTerminalPaths\.unshift\(targetPath\)/);
|
||
|
|
});
|
||
|
|
|
||
|
|
test("cold-start completion waits until the locked renderer is really ready", () => {
|
||
|
|
const start = source.indexOf("void createAndShowMainWindow().then(async (win) =>");
|
||
|
|
const end = source.indexOf("// Trigger auto-update check", start);
|
||
|
|
const startupSettleSource = source.slice(start, end);
|
||
|
|
|
||
|
|
assert.notEqual(start, -1);
|
||
|
|
assert.notEqual(end, -1);
|
||
|
|
assert.match(startupSettleSource, /waitForRendererReady\(win, \{\s*timeoutMs: 0/);
|
||
|
|
assert.match(startupSettleSource, /notifyColdStartIntentsSettled\(win\)/);
|
||
|
|
assert.doesNotMatch(startupSettleSource, /15000|30000/);
|
||
|
|
});
|