| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- const test = require('node:test');
- const assert = require('node:assert/strict');
- const fs = require('node:fs');
- const helperSource = fs.readFileSync('background.js', 'utf8');
- function extractFunction(source, name) {
- const markers = [`async function ${name}(`, `function ${name}(`];
- const start = markers
- .map((marker) => source.indexOf(marker))
- .find((index) => index >= 0);
- if (start < 0) {
- throw new Error(`missing function ${name}`);
- }
- let parenDepth = 0;
- let signatureEnded = false;
- let braceStart = -1;
- for (let i = start; i < source.length; i += 1) {
- const ch = source[i];
- if (ch === '(') {
- parenDepth += 1;
- } else if (ch === ')') {
- parenDepth -= 1;
- if (parenDepth === 0) {
- signatureEnded = true;
- }
- } else if (ch === '{' && signatureEnded) {
- braceStart = i;
- break;
- }
- }
- if (braceStart < 0) {
- throw new Error(`missing body for function ${name}`);
- }
- let depth = 0;
- let end = braceStart;
- for (; end < source.length; end += 1) {
- const ch = source[end];
- if (ch === '{') depth += 1;
- if (ch === '}') {
- depth -= 1;
- if (depth === 0) {
- end += 1;
- break;
- }
- }
- }
- return source.slice(start, end);
- }
- const helperBundle = [
- extractFunction(helperSource, 'normalizeRunCount'),
- extractFunction(helperSource, 'normalizeAutoRunTimerKind'),
- extractFunction(helperSource, 'normalizeAutoRunSessionId'),
- extractFunction(helperSource, 'isCurrentAutoRunSessionId'),
- extractFunction(helperSource, 'normalizeAutoRunTimerPlan'),
- extractFunction(helperSource, 'getAutoRunTimerResumeOptions'),
- extractFunction(helperSource, 'launchAutoRunTimerPlan'),
- ].join('\n');
- test('launchAutoRunTimerPlan ignores stale timer plans after stop invalidates the session', async () => {
- const api = new Function(`
- const AUTO_RUN_TIMER_KIND_SCHEDULED_START = 'scheduled_start';
- const AUTO_RUN_TIMER_KIND_BETWEEN_ROUNDS = 'between_rounds';
- const AUTO_RUN_TIMER_KIND_BEFORE_RETRY = 'before_retry';
- const AUTO_RUN_MAX_RETRIES_PER_ROUND = 3;
- let autoRunTimerLaunching = false;
- let autoRunActive = false;
- let autoRunCurrentRun = 0;
- let autoRunTotalRuns = 1;
- let autoRunAttemptRun = 0;
- let autoRunSessionId = 0;
- const state = {
- autoRunDelayEnabled: false,
- autoRunTimerPlan: {
- kind: AUTO_RUN_TIMER_KIND_SCHEDULED_START,
- fireAt: Date.now() + 60_000,
- totalRuns: 2,
- autoRunSkipFailures: false,
- autoRunSessionId: 42,
- countdownTitle: '已计划自动运行',
- countdownNote: '等待启动',
- },
- };
- let startCalls = 0;
- let clearStopCalls = 0;
- let clearAlarmCalls = 0;
- async function getState() {
- return { ...state };
- }
- function getPendingAutoRunTimerPlan() {
- return state.autoRunTimerPlan;
- }
- async function clearAutoRunTimerAlarm() {
- clearAlarmCalls += 1;
- }
- async function broadcastAutoRunStatus() {}
- async function addLog() {}
- async function setAutoRunDelayEnabledState() {}
- function serializeAutoRunRoundSummaries(totalRuns, summaries = []) {
- return Array.isArray(summaries) ? summaries : [];
- }
- function clearStopRequest() {
- clearStopCalls += 1;
- }
- function startAutoRunLoop() {
- startCalls += 1;
- }
- ${helperBundle}
- return {
- launchAutoRunTimerPlan,
- snapshot() {
- return {
- startCalls,
- clearStopCalls,
- clearAlarmCalls,
- autoRunCurrentRun,
- autoRunTotalRuns,
- autoRunAttemptRun,
- };
- },
- };
- `)();
- const started = await api.launchAutoRunTimerPlan('alarm');
- const snapshot = api.snapshot();
- assert.equal(started, false);
- assert.equal(snapshot.startCalls, 0, 'stale timer plan should not restart auto-run');
- assert.equal(snapshot.clearStopCalls, 0, 'stale timer plan should not clear the stop flag for a cancelled run');
- assert.equal(snapshot.clearAlarmCalls, 0, 'stale timer plan should not clear a potentially newer alarm');
- assert.equal(snapshot.autoRunCurrentRun, 0);
- assert.equal(snapshot.autoRunTotalRuns, 1);
- assert.equal(snapshot.autoRunAttemptRun, 0);
- });
|