263 lines
8.0 KiB
JavaScript
263 lines
8.0 KiB
JavaScript
const test = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('node:fs');
|
|
|
|
test('background imports tab runtime module', () => {
|
|
const source = fs.readFileSync('background.js', 'utf8');
|
|
assert.match(source, /background\/tab-runtime\.js/);
|
|
});
|
|
|
|
test('tab runtime module exposes a factory', () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
|
|
assert.equal(typeof api?.createTabRuntime, 'function');
|
|
});
|
|
|
|
test('tab runtime caps per-attempt response timeout to the remaining resilient timeout budget', () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
chrome: {
|
|
tabs: {
|
|
get: async () => ({ id: 1, url: 'https://example.com', status: 'complete' }),
|
|
query: async () => [],
|
|
},
|
|
},
|
|
getSourceLabel: (source) => source || 'unknown',
|
|
getState: async () => ({ tabRegistry: {}, sourceLastUrls: {} }),
|
|
matchesSourceUrlFamily: () => false,
|
|
normalizeLocalCpaStep9Mode: () => 'submit',
|
|
parseUrlSafely: () => null,
|
|
registerTab: async () => {},
|
|
setState: async () => {},
|
|
shouldBypassStep9ForLocalCpa: () => false,
|
|
throwIfStopped: () => {},
|
|
});
|
|
|
|
assert.equal(
|
|
runtime.resolveResponseTimeoutMs({ type: 'PREPARE_SIGNUP_VERIFICATION' }, undefined, 30000),
|
|
30000
|
|
);
|
|
assert.equal(
|
|
runtime.resolveResponseTimeoutMs({ type: 'PREPARE_SIGNUP_VERIFICATION' }, 12000, 5000),
|
|
5000
|
|
);
|
|
});
|
|
|
|
test('tab runtime waitForTabComplete waits until tab status becomes complete', async () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
|
|
let getCalls = 0;
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
buildLocalhostCleanupPrefix: () => '',
|
|
chrome: {
|
|
tabs: {
|
|
get: async () => {
|
|
getCalls += 1;
|
|
return {
|
|
id: 9,
|
|
url: 'https://example.com',
|
|
status: getCalls >= 3 ? 'complete' : 'loading',
|
|
};
|
|
},
|
|
query: async () => [],
|
|
},
|
|
},
|
|
getSourceLabel: (source) => source || 'unknown',
|
|
getState: async () => ({ tabRegistry: {}, sourceLastUrls: {} }),
|
|
matchesSourceUrlFamily: () => false,
|
|
normalizeLocalCpaStep9Mode: () => 'submit',
|
|
parseUrlSafely: () => null,
|
|
registerTab: async () => {},
|
|
setState: async () => {},
|
|
shouldBypassStep9ForLocalCpa: () => false,
|
|
throwIfStopped: () => {},
|
|
});
|
|
|
|
const result = await runtime.waitForTabComplete(9, {
|
|
timeoutMs: 2000,
|
|
retryDelayMs: 1,
|
|
});
|
|
|
|
assert.equal(result?.status, 'complete');
|
|
assert.equal(getCalls, 3);
|
|
});
|
|
|
|
test('tab runtime waitForTabComplete aborts promptly when stop is requested', async () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
|
|
let throwCalls = 0;
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
chrome: {
|
|
tabs: {
|
|
get: async () => ({
|
|
id: 9,
|
|
url: 'https://example.com',
|
|
status: 'loading',
|
|
}),
|
|
query: async () => [],
|
|
},
|
|
},
|
|
getSourceLabel: (sourceName) => sourceName || 'unknown',
|
|
getState: async () => ({ tabRegistry: {}, sourceLastUrls: {} }),
|
|
matchesSourceUrlFamily: () => false,
|
|
setState: async () => {},
|
|
throwIfStopped: () => {
|
|
throwCalls += 1;
|
|
if (throwCalls >= 2) {
|
|
throw new Error('Flow stopped.');
|
|
}
|
|
},
|
|
});
|
|
|
|
await assert.rejects(
|
|
runtime.waitForTabComplete(9, {
|
|
timeoutMs: 2000,
|
|
retryDelayMs: 1,
|
|
}),
|
|
/Flow stopped\./
|
|
);
|
|
});
|
|
|
|
test('tab runtime waitForTabStableComplete waits through a late navigation after an initial complete state', async () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
|
|
let getCalls = 0;
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
chrome: {
|
|
tabs: {
|
|
get: async () => {
|
|
getCalls += 1;
|
|
if (getCalls === 1) {
|
|
return {
|
|
id: 9,
|
|
url: 'https://auth.openai.com/u/signup/profile',
|
|
status: 'complete',
|
|
};
|
|
}
|
|
if (getCalls === 2) {
|
|
return {
|
|
id: 9,
|
|
url: 'https://chatgpt.com/',
|
|
status: 'loading',
|
|
};
|
|
}
|
|
return {
|
|
id: 9,
|
|
url: 'https://chatgpt.com/',
|
|
status: 'complete',
|
|
};
|
|
},
|
|
query: async () => [],
|
|
},
|
|
},
|
|
getSourceLabel: (sourceName) => sourceName || 'unknown',
|
|
getState: async () => ({ tabRegistry: {}, sourceLastUrls: {} }),
|
|
matchesSourceUrlFamily: () => false,
|
|
setState: async () => {},
|
|
throwIfStopped: () => {},
|
|
});
|
|
|
|
const result = await runtime.waitForTabStableComplete(9, {
|
|
timeoutMs: 2000,
|
|
retryDelayMs: 5,
|
|
stableMs: 5,
|
|
initialDelayMs: 1,
|
|
});
|
|
|
|
assert.equal(result?.url, 'https://chatgpt.com/');
|
|
assert.equal(result?.status, 'complete');
|
|
assert.ok(getCalls >= 4);
|
|
});
|
|
|
|
test('tab runtime opens new automation tabs in the locked window', async () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
const created = [];
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
chrome: {
|
|
tabs: {
|
|
create: async (payload) => {
|
|
created.push(payload);
|
|
return { id: 17, windowId: payload.windowId, url: payload.url };
|
|
},
|
|
get: async () => ({ id: 17, windowId: 100, url: 'https://example.com' }),
|
|
query: async () => [],
|
|
onUpdated: {
|
|
addListener: () => {},
|
|
removeListener: () => {},
|
|
},
|
|
},
|
|
},
|
|
getSourceLabel: (sourceName) => sourceName || 'unknown',
|
|
getState: async () => ({
|
|
automationWindowId: 100,
|
|
tabRegistry: {},
|
|
sourceLastUrls: {},
|
|
}),
|
|
matchesSourceUrlFamily: () => false,
|
|
setState: async () => {},
|
|
throwIfStopped: () => {},
|
|
});
|
|
|
|
await runtime.reuseOrCreateTab('signup-page', 'https://example.com');
|
|
|
|
assert.equal(created.length, 1);
|
|
assert.equal(created[0].windowId, 100);
|
|
});
|
|
|
|
test('tab runtime scopes tab queries to the locked automation window', async () => {
|
|
const source = fs.readFileSync('background/tab-runtime.js', 'utf8');
|
|
const globalScope = {};
|
|
const api = new Function('self', `${source}; return self.MultiPageBackgroundTabRuntime;`)(globalScope);
|
|
const queries = [];
|
|
const runtime = api.createTabRuntime({
|
|
LOG_PREFIX: '[test]',
|
|
addLog: async () => {},
|
|
chrome: {
|
|
tabs: {
|
|
get: async () => ({ id: 1, windowId: 22, url: 'https://example.com' }),
|
|
query: async (queryInfo) => {
|
|
queries.push(queryInfo);
|
|
return [];
|
|
},
|
|
},
|
|
},
|
|
getSourceLabel: (sourceName) => sourceName || 'unknown',
|
|
getState: async () => ({
|
|
automationWindowId: 22,
|
|
tabRegistry: {},
|
|
sourceLastUrls: {},
|
|
}),
|
|
matchesSourceUrlFamily: () => false,
|
|
setState: async () => {},
|
|
throwIfStopped: () => {},
|
|
});
|
|
|
|
await runtime.queryTabsInAutomationWindow({ active: true, currentWindow: true });
|
|
|
|
assert.deepEqual(queries[0], { active: true, windowId: 22 });
|
|
});
|