Skip to content

Commit

Permalink
Merge pull request #826 from wheresrhys/rhys/vitest-tests
Browse files Browse the repository at this point in the history
test: tested @fetch-mock/vitest's lifecycle management methods
  • Loading branch information
wheresrhys committed Aug 30, 2024
2 parents 6f2b9b2 + 3e7ba9d commit bbf88b7
Showing 1 changed file with 159 additions and 0 deletions.
159 changes: 159 additions & 0 deletions packages/vitest/src/__tests__/reset-methods.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
import {
describe,
it,
beforeAll,
afterAll,
expect,
afterEach,
vi,
} from 'vitest';

import fetchMock, { manageFetchMockGlobally } from '../index';

describe('reset methods', () => {
describe('new fetch-mock methods', () => {
afterEach(() => {
fetchMock.removeRoutes({ includeSticky: true, includeFallback: true });
fetchMock.clearHistory();
fetchMock.unmockGlobal();
});
it('mockClear() clears history', () => {
fetchMock.mockGlobal().route('http://a.com', 200);
fetchMock.fetchHandler('http://a.com');
expect(fetchMock.callHistory.called()).toBe(true);
fetchMock.mockClear();
expect(fetchMock.callHistory.called()).toBe(false);
expect(fetchMock.router.routes.length).toBe(1);
expect(fetch).toEqual(fetchMock.fetchHandler);
});
it('mockReset() clears history and removes non-sticky routes and fallbacks, but leaves fetch mocked', () => {
fetchMock
.mockGlobal()
.route('http://a.com', 200)
.route('http://b.com', 200, { sticky: true })
.catch();
fetchMock.fetchHandler('http://a.com');
expect(fetchMock.callHistory.called()).toBe(true);
expect(fetchMock.router.routes.length).toBe(2);
expect(fetchMock.router.fallbackRoute).not.toBeUndefined();
fetchMock.mockReset();
expect(fetchMock.callHistory.called()).toBe(false);
expect(fetchMock.router.routes.length).toBe(1);
expect(fetchMock.router.fallbackRoute).toBeUndefined();
expect(fetch).toEqual(fetchMock.fetchHandler);
});
it('mockReset({ includeSticky: true }) clears history and removes all routes and fallbacks', () => {
fetchMock
.mockGlobal()
.route('http://a.com', 200)

.route('http://b.com', 200, { sticky: true })
.catch();
fetchMock.fetchHandler('http://a.com');
expect(fetchMock.callHistory.called()).toBe(true);
expect(fetchMock.router.routes.length).toBe(2);
expect(fetchMock.router.fallbackRoute).not.toBeUndefined();
fetchMock.mockReset({ includeSticky: true });
expect(fetchMock.callHistory.called()).toBe(false);
expect(fetchMock.router.routes.length).toBe(0);
expect(fetchMock.router.fallbackRoute).toBeUndefined();
expect(fetch).toEqual(fetchMock.fetchHandler);
});
it('mockRestore() carries out mockReset and unmocks fetch', () => {
fetchMock
.mockGlobal()
.route('http://a.com', 200)
.route('http://b.com', 200, { sticky: true })
.catch();
fetchMock.fetchHandler('http://a.com');
expect(fetchMock.callHistory.called()).toBe(true);
expect(fetchMock.router.routes.length).toBe(2);
expect(fetchMock.router.fallbackRoute).not.toBeUndefined();
expect(fetch).toEqual(fetchMock.fetchHandler);
fetchMock.mockRestore();
expect(fetchMock.callHistory.called()).toBe(false);
expect(fetchMock.router.routes.length).toBe(1);
expect(fetchMock.router.fallbackRoute).toBeUndefined();
expect(fetch).not.toEqual(fetchMock.fetchHandler);
});
it('mockRestore({ includeSticky: true }) carries out mockReset({ includeSticky: true }) and unmocks fetch ', () => {
fetchMock
.mockGlobal()
.route('http://a.com', 200)
.route('http://b.com', 200, { sticky: true })
.catch();
fetchMock.fetchHandler('http://a.com');
expect(fetchMock.callHistory.called()).toBe(true);
expect(fetchMock.router.routes.length).toBe(2);
expect(fetchMock.router.fallbackRoute).not.toBeUndefined();
expect(fetch).toEqual(fetchMock.fetchHandler);
fetchMock.mockRestore({ includeSticky: true });
expect(fetchMock.callHistory.called()).toBe(false);
expect(fetchMock.router.routes.length).toBe(0);
expect(fetchMock.router.fallbackRoute).toBeUndefined();
expect(fetch).not.toEqual(fetchMock.fetchHandler);
});
});

describe('manageFetchMockGlobally', () => {
const originalMethods = {};
beforeAll(() => {
// cannot use vi.spyOn as that is part of the functionality we are
// aiming to test!
originalMethods.mockClear = fetchMock.mockClear;
fetchMock.mockClear = vi.fn();
originalMethods.mockReset = fetchMock.mockReset;
fetchMock.mockReset = vi.fn();
originalMethods.mockRestore = fetchMock.mockRestore;
fetchMock.mockRestore = vi.fn();
});
afterEach(() => {
fetchMock.mockClear.mockClear();
fetchMock.mockReset.mockClear();
fetchMock.mockRestore.mockClear();
});

afterAll(() => {
Object.assign(fetchMock, originalMethods);
});
it('by default does not hook into vitest global mock management', () => {
vi.clearAllMocks();
expect(fetchMock.mockClear).not.toHaveBeenCalled();
vi.resetAllMocks();
expect(fetchMock.mockReset).not.toHaveBeenCalled();
vi.restoreAllMocks();
expect(fetchMock.mockRestore).not.toHaveBeenCalled();
vi.unstubAllGlobals();
expect(fetchMock.mockRestore).not.toHaveBeenCalled();
});
describe('when enabled', () => {
beforeAll(() => {
manageFetchMockGlobally();
});
it('vi.clearAllMocks() calls .mockClear()', () => {
vi.clearAllMocks();
expect(fetchMock.mockClear).toHaveBeenCalled();
expect(fetchMock.mockReset).not.toHaveBeenCalled();
expect(fetchMock.mockRestore).not.toHaveBeenCalled();
});
it('vi.resetAllMocks() calls .mockReset()', () => {
vi.resetAllMocks();
expect(fetchMock.mockClear).not.toHaveBeenCalled();
expect(fetchMock.mockReset).toHaveBeenCalled();
expect(fetchMock.mockRestore).not.toHaveBeenCalled();
});
it('vi.restoreAllMocks() calls .mockRestore()', () => {
vi.restoreAllMocks();
expect(fetchMock.mockClear).not.toHaveBeenCalled();
expect(fetchMock.mockReset).not.toHaveBeenCalled();
expect(fetchMock.mockRestore).toHaveBeenCalled();
});
it('vi.unstubAllGlobals() calls .mockRestore()', () => {
vi.unstubAllGlobals();
expect(fetchMock.mockClear).not.toHaveBeenCalled();
expect(fetchMock.mockReset).not.toHaveBeenCalled();
expect(fetchMock.mockRestore).toHaveBeenCalled();
});
});
});
});

0 comments on commit bbf88b7

Please sign in to comment.