feat(desktop): add boot-completion timer with packaged-only and URL-protocol guards

This commit is contained in:
Jannis Braun
2026-05-03 04:16:22 +02:00
parent a9122d1fdf
commit 323b9017d7
2 changed files with 115 additions and 2 deletions
+51 -1
View File
@@ -1,4 +1,4 @@
import { describe, it, expect, vi } from 'vitest';
import { describe, it, expect, vi, beforeEach } from 'vitest';
import type { MenuItemConstructorOptions } from 'electron';
import {
RecoveryStateStore,
@@ -6,8 +6,16 @@ import {
buildTrayMenuTemplate,
buildAppMenuTemplate,
type RecoveryState,
armBootTimer,
clearBootTimer,
isBootArmed,
} from './recovery';
// Mock electron with isPackaged=true so the real arm path executes in all tests below.
vi.mock('electron', () => ({
app: { isPackaged: true },
}));
describe('RecoveryStateStore', () => {
it('returns the initial state', () => {
const store = new RecoveryStateStore();
@@ -254,3 +262,45 @@ describe('buildAppMenuTemplate', () => {
expect(restartItem!.label).toBe('Restart to Install Update');
});
});
interface FakeWebContents { getURL: () => string }
interface FakeWindow { webContents: FakeWebContents; isDestroyed: () => boolean }
function fakeWin(url: string): FakeWindow {
return { webContents: { getURL: () => url }, isDestroyed: () => false };
}
describe('armBootTimer / clearBootTimer', () => {
beforeEach(() => {
clearBootTimer();
});
it('arms when URL is http://', () => {
armBootTimer(fakeWin('http://localhost:3005/') as never);
expect(isBootArmed()).toBe(true);
clearBootTimer();
});
it('arms when URL is https://', () => {
armBootTimer(fakeWin('https://example.com/') as never);
expect(isBootArmed()).toBe(true);
clearBootTimer();
});
it('skips file:// URLs', () => {
armBootTimer(fakeWin('file:///path/to/recovery.html') as never);
expect(isBootArmed()).toBe(false);
});
it('skips empty URLs', () => {
armBootTimer(fakeWin('') as never);
expect(isBootArmed()).toBe(false);
});
it('clearBootTimer disarms', () => {
armBootTimer(fakeWin('http://localhost/') as never);
expect(isBootArmed()).toBe(true);
clearBootTimer();
expect(isBootArmed()).toBe(false);
});
});