@plone/volto
Version:
Volto
189 lines (178 loc) • 4.74 kB
JSX
import React from 'react';
import { Provider } from 'react-intl-redux';
import { MemoryRouter } from 'react-router-dom';
import { render } from '@testing-library/react';
import configureStore from 'redux-mock-store';
import config from '@plone/volto/registry';
import Controlpanels from './Controlpanels';
const mockStore = configureStore();
vi.mock('../../Toolbar/Toolbar', () => ({
default: vi.fn(() => <div id="Portal" />),
}));
vi.mock('@plone/volto/components/manage/Controlpanels', () => ({
VersionOverview: vi.fn(() => <div className="VersionOverview" />),
}));
describe('Controlpanels', () => {
it('renders a controlpanels component', () => {
const store = mockStore({
controlpanels: {
controlpanels: [
{
'@id': 'http://localhost:8080/Plone/@controlpanels/date-and-time',
group: 'General',
title: 'Date and Time',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/lang',
group: 'General',
title: 'Language',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/editing',
group: 'Content',
title: 'Editing',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/security',
group: 'Security',
title: 'test',
},
],
},
reduxAsyncConnect: {
// Mocked in redux async connect as it isn't fetch client-side.
controlpanels: [
{
'@id': 'http://localhost:8080/Plone/@controlpanels/date-and-time',
group: 'General',
title: 'Date and Time',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/lang',
group: 'General',
title: 'Language',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/editing',
group: 'Content',
title: 'Editing',
},
{
'@id': 'http://localhost:8080/Plone/@controlpanels/security',
group: 'Security',
title: 'test',
},
],
},
router: { location: '/blog' },
intl: {
locale: 'en',
messages: {},
},
actions: {
actions: {},
},
userSession: {
token: null,
},
content: {
data: {},
get: {
loading: false,
loaded: true,
},
},
types: {
types: [],
get: {
loading: false,
loaded: true,
},
},
});
store.dispatch = vi.fn(() => Promise.resolve());
const { container } = render(
<Provider store={store}>
<MemoryRouter>
<Controlpanels location={{ pathname: '/blog' }} />
<div id="toolbar"></div>
</MemoryRouter>
</Provider>,
);
expect(container).toMatchSnapshot();
});
it('renders an additional control panel', () => {
const store = mockStore({
controlpanels: {
controlpanels: [
{
'@id': 'http://localhost:8080/Plone/@controlpanels/security',
group: 'Security',
title: 'test',
},
],
},
reduxAsyncConnect: {
// Mocked in redux async connect as it isn't fetch client-side.
controlpanels: [
{
'@id': 'http://localhost:8080/Plone/@controlpanels/security',
group: 'Security',
title: 'test',
},
],
},
router: { location: '/blog' },
intl: {
locale: 'en',
messages: {},
},
actions: {
actions: {},
},
userSession: {
token: null,
},
content: {
data: {},
get: {
loading: false,
loaded: true,
},
},
types: {
types: [],
get: {
loading: false,
loaded: true,
},
},
});
const FooComponent = () => {
return <div>Foo</div>;
};
config.settings.controlpanels = [
{
'@id': '/manage-myaddon-foo',
group: 'Add-on Configuration',
title: 'Foo Management',
},
];
config.addonRoutes = [
{
path: '/controlpanel/manage-myaddon-foo',
component: FooComponent,
},
];
store.dispatch = vi.fn(() => Promise.resolve());
const { container } = render(
<Provider store={store}>
<MemoryRouter>
<Controlpanels location={{ pathname: '/blog' }} />
<div id="toolbar"></div>
</MemoryRouter>
</Provider>,
);
expect(container).toMatchSnapshot();
});
});