60 lines
2.4 KiB
TypeScript
60 lines
2.4 KiB
TypeScript
// apps/desktop/git/__tests__/git-ipc.test.ts
|
|
import { describe, it, expect, vi } from 'vitest';
|
|
|
|
// The `electron` npm package's `index.js` resolves the binary path at import
|
|
// time and throws when its postinstall didn't run (path.txt missing). This
|
|
// file only exercises pure helpers, so we stub electron's ipc surface.
|
|
vi.mock('electron', () => ({ ipcMain: { handle: () => undefined } }));
|
|
|
|
import { GitError } from '../error';
|
|
import { serializeGitError, GIT_ERROR_MARKER } from '../ipc-handlers';
|
|
|
|
describe('serializeGitError', () => {
|
|
it('produces an Error whose message starts with the marker and round-trips fields', () => {
|
|
const original = new GitError('commit-empty', 'No changes', { recoverable: true });
|
|
const serialized = serializeGitError(original);
|
|
expect(serialized.message.startsWith(GIT_ERROR_MARKER)).toBe(true);
|
|
const payload = JSON.parse(serialized.message.slice(GIT_ERROR_MARKER.length));
|
|
expect(payload.code).toBe('commit-empty');
|
|
expect(payload.message).toBe('No changes');
|
|
expect(payload.recoverable).toBe(true);
|
|
});
|
|
|
|
it('preserves recoverable=false from the GitError', () => {
|
|
const original = new GitError('engine-crash', 'something blew up', { recoverable: false });
|
|
const serialized = serializeGitError(original);
|
|
const payload = JSON.parse(serialized.message.slice(GIT_ERROR_MARKER.length));
|
|
expect(payload.recoverable).toBe(false);
|
|
});
|
|
|
|
it('the marker is a stable, unique string the renderer can pattern-match', () => {
|
|
expect(GIT_ERROR_MARKER).toBe('__GIT_ERROR__');
|
|
});
|
|
|
|
it('serializes auth-related and network error codes', () => {
|
|
const codes = [
|
|
'auth-failed',
|
|
'auth-required',
|
|
'clone-failed',
|
|
'network',
|
|
'pull-non-fast-forward',
|
|
] as const;
|
|
for (const code of codes) {
|
|
const original = new GitError(code, `${code} test`);
|
|
const serialized = serializeGitError(original);
|
|
const payload = JSON.parse(serialized.message.slice(GIT_ERROR_MARKER.length));
|
|
expect(payload.code).toBe(code);
|
|
}
|
|
});
|
|
|
|
it('serializes merge-related error codes', () => {
|
|
const codes = ['merge-conflict', 'merge-still-conflicted', 'merge-abort-failed'] as const;
|
|
for (const code of codes) {
|
|
const original = new GitError(code, `${code} test`);
|
|
const serialized = serializeGitError(original);
|
|
const payload = JSON.parse(serialized.message.slice(GIT_ERROR_MARKER.length));
|
|
expect(payload.code).toBe(code);
|
|
}
|
|
});
|
|
});
|