-
-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Lee Sheppard <[email protected]>
- Loading branch information
1 parent
4a0ffe8
commit d66d20c
Showing
1 changed file
with
192 additions
and
0 deletions.
There are no files selected for viewing
192 changes: 192 additions & 0 deletions
192
apps/skolplattformen-app-new/libs/hooks/src/__tests__/fake.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
import { act, renderHook, waitFor } from '@testing-library/react' | ||
import React from 'react' | ||
import { ApiProvider } from '../provider' | ||
import { | ||
useCalendar, | ||
useClassmates, | ||
useEtjanstChildren, | ||
useMenu, | ||
useNews, | ||
useNotifications, | ||
useSchedule, | ||
useUser, | ||
} from '../hooks' | ||
import store from '../store' | ||
import createStorage from '../__mocks__/AsyncStorage' | ||
|
||
const { default: init } = jest.requireActual( | ||
'../../../api-skolplattformen/lib/index.ts' | ||
) | ||
|
||
const wait = (ms: number) => new Promise((res) => setTimeout(res, ms)) | ||
|
||
describe('hooks with fake data', () => { | ||
let api: any | ||
let storage: any | ||
const wrapper = ({ children }: { children: React.ReactNode }) => ( | ||
<ApiProvider api={api} storage={storage}> | ||
{children} | ||
</ApiProvider> | ||
) | ||
beforeEach(async () => { | ||
api = init( | ||
() => { | ||
// noop | ||
}, | ||
() => { | ||
//noop | ||
} | ||
) | ||
await api.login('121212121212') | ||
|
||
storage = createStorage({}) | ||
}) | ||
it('does not use cache', async () => { | ||
storage.cache.user = JSON.stringify({ user: 'cached' }) | ||
// await act(async () => { | ||
const { result } = renderHook(() => useUser(), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
|
||
await waitFor(() => | ||
expect(result.current.data).toEqual({ | ||
firstName: 'Namn', | ||
lastName: 'Namnsson', | ||
isAuthenticated: true, | ||
personalNumber: '195001182046', | ||
}) | ||
) | ||
// }) | ||
}) | ||
it('returns user', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useUser(), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => | ||
expect(result.current.data).toEqual({ | ||
firstName: 'Namn', | ||
lastName: 'Namnsson', | ||
isAuthenticated: true, | ||
personalNumber: '195001182046', | ||
}) | ||
) | ||
|
||
// }) | ||
}) | ||
it('returns child list', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useEtjanstChildren(), { wrapper }) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data).toHaveLength(2)) | ||
|
||
// }) | ||
}) | ||
describe('data belonging to one child', () => { | ||
let child: any | ||
beforeEach(async () => { | ||
;[child] = await api.getChildren() | ||
}) | ||
it('returns calendar', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useCalendar(child), { wrapper }) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data.length).toBeGreaterThan(1)) | ||
|
||
// }) | ||
}) | ||
it('returns classmates', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useClassmates(child), { wrapper }) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data.length).toBeGreaterThan(1)) | ||
|
||
// }) | ||
}) | ||
it('returns menu', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useMenu(child), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data.length).toBeGreaterThan(1)) | ||
|
||
// }) | ||
}) | ||
it('returns news', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useNews(child), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data.length).toBeGreaterThan(1)) | ||
|
||
// }) | ||
}) | ||
it('returns notifications', async () => { | ||
// await act(async () => { | ||
const { result } = renderHook(() => useNotifications(child), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => expect(result.current.data.length).toBeGreaterThan(1)) | ||
|
||
// }) | ||
}) | ||
it('returns schedule', async () => { | ||
const from = '2021-01-01' | ||
const to = '2021-01-08' | ||
// await act(async () => { | ||
const { result } = renderHook(() => useSchedule(child, from, to), { | ||
wrapper, | ||
}) | ||
|
||
//await waitForNextUpdate() | ||
//await waitForNextUpdate() | ||
await waitFor(() => | ||
// No fake schedule in embedded-api yet | ||
expect(result.current.data.length).not.toBeGreaterThan(1) | ||
) | ||
|
||
// }) | ||
}) | ||
}) | ||
it('handles reloads', async () => { | ||
// await act(async () => { | ||
store.dispatch({ type: 'CLEAR' } as any) // fixes test for invalid type | ||
|
||
const [child] = await api.getChildren() | ||
|
||
const { result } = renderHook(() => useNotifications(child), { wrapper }) | ||
|
||
//await waitForNextUpdate() | ||
await waitFor(() => { | ||
expect(result.current.status).toEqual('loaded') | ||
}) | ||
|
||
result.current.reload() | ||
await waitFor(() => expect(result.current.status).toEqual('loaded')) | ||
|
||
// }) | ||
}) | ||
}) |