mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
4f9ad07d65
* test(frontend): expand harness for store/component/contract tests
- factories: makeSubsonicSong, makeServer, makeAuthState, makeQueueState
- storeReset.ts: per-test reset for player/auth/preview/orbit stores
- mocks/subsonic.ts: realistic fixtures + stream/cover URL helpers
- mocks/browser.ts: ResizeObserver/IntersectionObserver/matchMedia/clipboard/object URLs
- mocks/tauri.ts: tauriMockListenerCount for listener-lifecycle regression tests
- renderWithProviders: pin i18n language to 'en' by default; { language } opt-out
- vitest.config: pool 'forks' + isolate to avoid module-mock + Zustand-global flake
- README: documented patterns, store-reset policy, i18n rule, isolation rationale
* test(frontend): bump utility coverage + expand hot-path gate
serverMagicString: 71→100% (encode/decode rejection branches, clipboard
fallback paths). shareLink: 69→97% (all entity kinds, queue trim, orbit
decoder, findServerIdForShareUrl). dynamicColors: 44→100% (extractCoverColors
DOM paths via Image / canvas / fetch mocks).
Gate adds shareLink.ts and dynamicColors.ts — both stable above 95%.
Comments updated for the new floor and the M4 hard-gate handoff.
94 lines
3.2 KiB
TypeScript
94 lines
3.2 KiB
TypeScript
/**
|
|
* Tauri test harness — programmable `invoke()` + `listen()` mocks.
|
|
*
|
|
* Usage in a test:
|
|
*
|
|
* import { onInvoke, emitTauriEvent } from '@/test/mocks/tauri';
|
|
*
|
|
* beforeEach(() => {
|
|
* onInvoke('audio_play', () => undefined);
|
|
* onInvoke('audio_get_state', () => ({ playing: true }));
|
|
* });
|
|
*
|
|
* it('emits progress', () => {
|
|
* emitTauriEvent('audio:progress', { id: 't1', currentTime: 42 });
|
|
* });
|
|
*
|
|
* Handlers are auto-cleared between tests (`beforeEach` hook below).
|
|
* Unhandled invokes throw — keeps tests honest about which commands they touch.
|
|
*/
|
|
import { beforeEach, vi } from 'vitest';
|
|
import { invoke } from '@tauri-apps/api/core';
|
|
import { listen } from '@tauri-apps/api/event';
|
|
|
|
export type InvokeHandler = (args: unknown) => unknown | Promise<unknown>;
|
|
export type EventCallback = (payload: unknown) => void;
|
|
|
|
const invokeHandlers = new Map<string, InvokeHandler>();
|
|
const eventListeners = new Map<string, EventCallback[]>();
|
|
|
|
// Tauri's typed signatures are strict (InvokeArgs / Event<T>). Tests don't
|
|
// need that level of precision — cast the mocks to `any` so the helpers
|
|
// accept simple `{ payload }` envelopes and plain object args.
|
|
const invokeMock = vi.mocked(invoke) as unknown as ReturnType<typeof vi.fn>;
|
|
const listenMock = vi.mocked(listen) as unknown as ReturnType<typeof vi.fn>;
|
|
|
|
invokeMock.mockImplementation(async (cmd: string, args?: unknown) => {
|
|
const handler = invokeHandlers.get(cmd);
|
|
if (!handler) {
|
|
throw new Error(
|
|
`Unhandled invoke('${cmd}'). Register via onInvoke('${cmd}', …) in the test.`,
|
|
);
|
|
}
|
|
return await handler(args);
|
|
});
|
|
|
|
listenMock.mockImplementation(
|
|
async (event: string, cb: (e: { payload: unknown }) => void) => {
|
|
const wrapped: EventCallback = (payload) =>
|
|
cb({ payload } as { payload: unknown });
|
|
const arr = eventListeners.get(event) ?? [];
|
|
arr.push(wrapped);
|
|
eventListeners.set(event, arr);
|
|
return () => {
|
|
const list = eventListeners.get(event);
|
|
if (!list) return;
|
|
const i = list.indexOf(wrapped);
|
|
if (i >= 0) list.splice(i, 1);
|
|
};
|
|
},
|
|
);
|
|
|
|
/** Register a handler for `invoke('<cmd>', …)`. Last-write-wins per command. */
|
|
export function onInvoke(cmd: string, handler: InvokeHandler): void {
|
|
invokeHandlers.set(cmd, handler);
|
|
}
|
|
|
|
/** Synchronously deliver an `<event>` payload to every active listener. */
|
|
export function emitTauriEvent(event: string, payload: unknown): void {
|
|
for (const cb of eventListeners.get(event) ?? []) cb(payload);
|
|
}
|
|
|
|
/**
|
|
* How many `listen()` callbacks are currently registered for `<event>`.
|
|
*
|
|
* Use for regression tests of listener lifecycle — e.g. re-initializing a
|
|
* store should not double-register `audio:progress` handlers. See
|
|
* `feedback_global_shortcut_double_fire` for the canonical motivating bug.
|
|
*/
|
|
export function tauriMockListenerCount(event: string): number {
|
|
return eventListeners.get(event)?.length ?? 0;
|
|
}
|
|
|
|
/** Clear all handlers + listeners + call counts. Wired to `beforeEach` below. */
|
|
export function resetTauriMocks(): void {
|
|
invokeHandlers.clear();
|
|
eventListeners.clear();
|
|
invokeMock.mockClear();
|
|
listenMock.mockClear();
|
|
}
|
|
|
|
export { invokeMock, listenMock };
|
|
|
|
beforeEach(resetTauriMocks);
|