mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
* Add ignore dsstore node_modules * Rename to typescript rnr -r '(.*)\.js$' '$1.ts' ./src ./test rnr -rf '(.*)\.jsx$' '$1.tsx' ./src ./test * Remove package lock * Fix extension of tsx at context * init typescript * . * Compiles, moved to vite * lint new files * check dashboard * Add dist to ignore file
118 lines
3.4 KiB
TypeScript
118 lines
3.4 KiB
TypeScript
import React, { useState, useEffect, useContext } from 'react';
|
|
import {render, act, screen, waitFor, fireEvent} from '@testing-library/react'
|
|
import { ProfileContextProvider, ProfileContext } from 'context/ProfileContext';
|
|
import * as fetchUtil from 'api/fetchUtil';
|
|
|
|
let profileContext = null;
|
|
function ProfileView() {
|
|
const [renderCount, setRenderCount] = useState(0);
|
|
const profile = useContext(ProfileContext);
|
|
profileContext = profile;
|
|
|
|
useEffect(() => {
|
|
setRenderCount(renderCount + 1);
|
|
}, [profile.state]);
|
|
|
|
return (
|
|
<div>
|
|
<span data-testid="count">{ renderCount }</span>
|
|
<span data-testid="guid">{ profile.state.identity?.guid }</span>
|
|
<span data-testid="handle">{ profile.state.identity?.handle }</span>
|
|
<span data-testid="name">{ profile.state.identity?.name }</span>
|
|
<span data-testid="description">{ profile.state.identity?.description }</span>
|
|
<span data-testid="location">{ profile.state.identity?.location }</span>
|
|
<span data-testid="image">{ profile.state.identity?.image }</span>
|
|
<span data-testid="revision">{ profile.state.identity?.revision }</span>
|
|
<span data-testid="seal">{ profile.state.identity?.seal }</span>
|
|
<span data-testid="version">{ profile.state.identity?.version }</span>
|
|
<span data-testid="node">{ profile.state.identity?.node }</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ProfileTestApp() {
|
|
return (
|
|
<ProfileContextProvider>
|
|
<ProfileView />
|
|
</ProfileContextProvider>
|
|
)
|
|
}
|
|
|
|
const realFetchWithTimeout = fetchUtil.fetchWithTimeout;
|
|
const realFetchWithCustomTimeout = fetchUtil.fetchWithCustomTimeout;
|
|
let identity = { };
|
|
|
|
beforeEach(() => {
|
|
const mockFetch = jest.fn().mockImplementation((url, options) => {
|
|
if (options.method === 'PUT') {
|
|
identity = JSON.parse(options.body);
|
|
}
|
|
return Promise.resolve({
|
|
json: () => Promise.resolve(identity)
|
|
});
|
|
});
|
|
//@ts-ignore
|
|
fetchUtil.fetchWithTimeout = mockFetch;
|
|
//@ts-ignore
|
|
fetchUtil.fetchWithCustomTimeout = mockFetch;
|
|
});
|
|
|
|
afterEach(() => {
|
|
//@ts-ignore
|
|
fetchUtil.fetchWithTimeout = realFetchWithTimeout;
|
|
//@ts-ignore
|
|
fetchUtil.fetchWithCustomTimeout = realFetchWithCustomTimeout;
|
|
});
|
|
|
|
test('testing profile sync', async () => {
|
|
render(<ProfileTestApp />);
|
|
|
|
await waitFor(async () => {
|
|
expect(profileContext).not.toBe(null);
|
|
});
|
|
|
|
await waitFor(async () => {
|
|
expect(screen.getByTestId('name').textContent).toBe("");
|
|
});
|
|
|
|
await act(async () => {
|
|
identity = { name: 'jester' };
|
|
await profileContext.actions.setToken({ guid: 'abc', server: 'test.org', appToken: '123' });
|
|
await profileContext.actions.setRevision(1);
|
|
});
|
|
|
|
await waitFor(async () => {
|
|
expect(screen.getByTestId('name').textContent).toBe("jester");
|
|
});
|
|
|
|
await act(async () => {
|
|
identity = { name: 'tester' };
|
|
await profileContext.actions.setRevision(2);
|
|
});
|
|
|
|
await waitFor(async () => {
|
|
expect(screen.getByTestId('name').textContent).toBe("tester");
|
|
});
|
|
|
|
const count = screen.getByTestId('count').textContent;
|
|
|
|
await act(async () => {
|
|
identity = { name: 'renderer' };
|
|
await profileContext.actions.setRevision(3);
|
|
});
|
|
|
|
await waitFor(async () => {
|
|
const renderCount = parseInt(screen.getByTestId('count').textContent);
|
|
const nextCount = parseInt(count) + 1;
|
|
expect(nextCount).toBe(renderCount);
|
|
});
|
|
|
|
await act(async () => {
|
|
await profileContext.actions.clearToken();
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|