mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
114 lines
3.3 KiB
JavaScript
114 lines
3.3 KiB
JavaScript
import React, { useState, useEffect, useContext } from 'react';
|
|
import { prettyDOM } from '@testing-library/dom'
|
|
import {render, act, screen, waitFor, fireEvent} from '@testing-library/react'
|
|
import { ChannelContextProvider, ChannelContext } from 'context/ChannelContext';
|
|
import * as fetchUtil from 'api/fetchUtil';
|
|
|
|
let channelContext = null;
|
|
function ChannelView() {
|
|
const [renderCount, setRenderCount] = useState(0);
|
|
const [channels, setChannels] = useState([]);
|
|
const channel = useContext(ChannelContext);
|
|
channelContext = channel;
|
|
|
|
useEffect(() => {
|
|
const rendered = []
|
|
const entries = Array.from(channel.state.channels.values());
|
|
entries.forEach(entry => {
|
|
rendered.push(
|
|
<div key={entry.id} data-testid="channel">
|
|
<span data-testid="detail">{ entry.data.channelDetail.data }</span>
|
|
<span data-testid="summary">{ entry.data.channelSummary.data }</span>
|
|
</div>);
|
|
});
|
|
setChannels(rendered);
|
|
setRenderCount(renderCount + 1);
|
|
}, [channel.state])
|
|
|
|
return (
|
|
<div data-testid="channels" count={renderCount}>
|
|
{ channels }
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ChannelTestApp() {
|
|
return (
|
|
<ChannelContextProvider>
|
|
<ChannelView />
|
|
</ChannelContextProvider>
|
|
)
|
|
}
|
|
|
|
const realFetchWithTimeout = fetchUtil.fetchWithTimeout;
|
|
const realFetchWithCustomTimeout = fetchUtil.fetchWithCustomTimeout;
|
|
|
|
let fetching = (url, options) => Promise.resolve({ json: () => Promise.resolve([])});
|
|
|
|
beforeEach(() => {
|
|
const mockFetch = jest.fn().mockImplementation((url, options) => fetching(url, options));
|
|
fetchUtil.fetchWithTimeout = mockFetch;
|
|
fetchUtil.fetchWithCustomTimeout = mockFetch;
|
|
});
|
|
|
|
afterEach(() => {
|
|
fetchUtil.fetchWithTimeout = realFetchWithTimeout;
|
|
fetchUtil.fetchWithCustomTimeout = realFetchWithCustomTimeout;
|
|
});
|
|
|
|
test('testing channel sync', async () => {
|
|
|
|
fetching = (url, options) => {
|
|
if (url.startsWith('/content/channels/123/detail')) {
|
|
return Promise.resolve({
|
|
status: 200,
|
|
json: () => Promise.resolve({ dataType: 'superbasic', data: 'testdata' }),
|
|
});
|
|
}
|
|
else if (url.startsWith('/content/channels/123/summary')) {
|
|
return Promise.resolve({
|
|
status: 200,
|
|
json: () => Promise.resolve({ guid: '11', dataType: 'superbasictopic', data: 'testdata' }),
|
|
});
|
|
}
|
|
else {
|
|
return Promise.resolve({
|
|
status: 200,
|
|
json: () => Promise.resolve([
|
|
{ id: '123', revision: 2, data: {
|
|
detailRevision: 3,
|
|
topicRevision: 5,
|
|
channelSummary: { guid: '11', dataType: 'superbasictopic', data: 'testdata' },
|
|
channelDetail: { dataType: 'superbasic', data: 'testdata' },
|
|
}
|
|
},
|
|
])
|
|
});
|
|
}
|
|
}
|
|
|
|
render(<ChannelTestApp />);
|
|
|
|
await waitFor(async () => {
|
|
expect(channelContext).not.toBe(null);
|
|
});
|
|
|
|
await act( async () => {
|
|
channelContext.actions.setToken('abc123');
|
|
await channelContext.actions.setRevision(1);
|
|
});
|
|
|
|
//screen.getByTestId('count').attributes.count.value
|
|
//console.log(prettyDOM(screen.getByTestId('channels')));
|
|
|
|
await waitFor(async () => {
|
|
expect(screen.getByTestId('channels').children).toHaveLength(1);
|
|
expect(screen.getByTestId('detail').textContent).toBe('testdata');
|
|
expect(screen.getByTestId('summary').textContent).toBe('testdata');
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|