From 4bbeac786cb79f6f54fb14f5d40fe074476be6e7 Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Tue, 12 Oct 2021 23:38:35 +1100 Subject: [PATCH] Add a manager-side test --- lib/api/src/tests/stories.test.js | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/lib/api/src/tests/stories.test.js b/lib/api/src/tests/stories.test.js index f7cb35fae98..94998ab3f59 100644 --- a/lib/api/src/tests/stories.test.js +++ b/lib/api/src/tests/stories.test.js @@ -18,7 +18,7 @@ const mockStories = jest.fn(); jest.mock('../lib/events'); jest.mock('global', () => ({ ...jest.requireActual('global'), - fetch: jest.fn(() => ({ json: () => ({ v: 3, stories: mockStories() }) })), + fetch: jest.fn(), })); beforeEach(() => { @@ -58,6 +58,9 @@ const provider = { getConfig: jest.fn() }; beforeEach(() => { provider.getConfig.mockReturnValue({}); global.EventSource.reset(); + global.fetch + .mockReset() + .mockReturnValue({ status: 200, json: () => ({ v: 3, stories: mockStories() }) }); }); describe('stories API', () => { @@ -877,7 +880,23 @@ describe('stories API', () => { }); }); - describe('fetchStoryList', () => { + describe('fetchStoryIndex', () => { + it('deals with 500 errors', async () => { + const navigate = jest.fn(); + const store = createMockStore(); + const fullAPI = Object.assign(new EventEmitter(), {}); + + global.fetch.mockReturnValue({ status: 500, text: async () => new Error('sorting error') }); + const { api, init } = initStories({ store, navigate, provider, fullAPI }); + Object.assign(fullAPI, api); + + await init(); + + const { storiesConfigured, storiesFailed } = store.getState(); + expect(storiesConfigured).toBe(true); + expect(storiesFailed.message).toMatch(/sorting error/); + }); + it('sets the initial set of stories in the stories hash', async () => { const navigate = jest.fn(); const store = createMockStore();