Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { PLUGINS_MOCK } from '@/models/mocks/pluginsMock';
import { INITIAL_STORE_STATE_MOCK } from '@/redux/root/root.fixtures';
import { StoreType } from '@/redux/store';
import { InitialStoreState } from '@/utils/testing/getReduxStoreActionsListener';
import { getReduxWrapperWithStore } from '@/utils/testing/getReduxWrapperWithStore';
import { render, screen } from '@testing-library/react';
import { AvailablePluginsDrawer } from './AvailablePluginsDrawer.component';
const renderComponent = (initialStore?: InitialStoreState): { store: StoreType } => {
const { Wrapper, store } = getReduxWrapperWithStore(initialStore);
return (
render(
<Wrapper>
<AvailablePluginsDrawer />
</Wrapper>,
),
{
store,
}
);
};
describe('AvailablePluginsDrawer - component', () => {
describe('when always', () => {
it('should render drawer heading', () => {
renderComponent(INITIAL_STORE_STATE_MOCK);
const drawerTitle = screen.getByText('Available plugins');
expect(drawerTitle).toBeInTheDocument();
});
it('should render load plugin from url', () => {
renderComponent(INITIAL_STORE_STATE_MOCK);
const loadPluginFromUrlInput = screen.getByTestId('load-plugin-input-url');
expect(loadPluginFromUrlInput).toBeInTheDocument();
});
it.each(PLUGINS_MOCK)('should render render all public plugins', currentPlugin => {
renderComponent({
...INITIAL_STORE_STATE_MOCK,
plugins: {
...INITIAL_STORE_STATE_MOCK.plugins,
list: {
...INITIAL_STORE_STATE_MOCK.plugins.list,
data: PLUGINS_MOCK,
},
},
});
const pluginLabel = screen.getByText(currentPlugin.name);
expect(pluginLabel).toBeInTheDocument();
});
});
});