302 lines
7.6 KiB
JavaScript
Raw Normal View History

2021-09-10 06:43:06 +02:00
import React from 'react';
import { ThemeProvider, lightTheme } from '@strapi/parts';
import { render as renderTL } from '@testing-library/react';
2021-09-10 06:43:06 +02:00
import { QueryClientProvider, QueryClient } from 'react-query';
import { Provider } from 'react-redux';
import { combineReducers, createStore } from 'redux';
import en from '../../../translations/en.json';
import server from './server';
import reducers from '../../../hooks/reducers';
import LocaleSelect from '..';
jest.mock('../../../utils', () => ({
getTrad: x => x,
}));
jest.mock('react-intl', () => ({
FormattedMessage: ({ id }) => id,
useIntl: () => ({ formatMessage: jest.fn(({ id }) => en[id]) }),
}));
jest.mock('@strapi/helper-plugin', () => ({
...jest.requireActual('@strapi/helper-plugin'),
useNotification: jest.fn(),
}));
const queryClient = new QueryClient({
defaultOptions: {
queries: {
refetchOnWindowFocus: false,
},
},
});
const store = createStore(combineReducers(reducers));
const render = props =>
renderTL(
<QueryClientProvider client={queryClient}>
<Provider store={store}>
<ThemeProvider theme={lightTheme}>
<LocaleSelect {...props} />
</ThemeProvider>
</Provider>
</QueryClientProvider>,
{ container: document.body }
);
describe('LocaleSelect', () => {
beforeAll(() => server.listen());
afterEach(() => server.resetHandlers());
afterAll(() => server.close());
2021-09-27 15:34:11 +02:00
it('shows an aria-busy element when loading the data', async () => {
2021-09-10 06:43:06 +02:00
const { container } = render();
expect(container.firstChild).toMatchInlineSnapshot(`
2021-10-05 11:51:09 +02:00
.c4 {
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
width: 100%;
background: transparent;
border: none;
}
2021-10-05 11:51:09 +02:00
.c4:focus {
outline: none;
}
.c1 {
font-weight: 500;
font-size: 0.75rem;
line-height: 1.33;
color: #32324d;
}
.c8 {
font-weight: 400;
font-size: 0.875rem;
line-height: 1.43;
color: #666687;
}
.c7 {
padding-right: 16px;
padding-left: 16px;
}
.c9 {
2021-09-10 06:43:06 +02:00
padding-left: 12px;
}
2021-10-05 11:51:09 +02:00
.c2 {
2021-09-10 06:43:06 +02:00
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
2021-10-05 11:51:09 +02:00
.c5 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
2021-10-05 11:51:09 +02:00
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
2021-09-27 15:34:11 +02:00
}
.c0 {
2021-09-10 06:43:06 +02:00
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
2021-09-10 06:43:06 +02:00
}
.c0 > * {
margin-top: 0;
margin-bottom: 0;
2021-09-10 06:43:06 +02:00
}
.c0 > * + * {
margin-top: 4px;
2021-09-10 06:43:06 +02:00
}
2021-10-05 11:51:09 +02:00
.c3 {
2021-09-10 06:43:06 +02:00
position: relative;
border: 1px solid #dcdce4;
padding-right: 12px;
border-radius: 4px;
background: #ffffff;
overflow: hidden;
2021-10-05 11:51:09 +02:00
min-height: 2.5rem;
outline: none;
box-shadow: 0;
-webkit-transition-property: border-color,box-shadow,fill;
transition-property: border-color,box-shadow,fill;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
2021-09-10 06:43:06 +02:00
}
2021-10-05 11:51:09 +02:00
.c3:focus-within {
border: 1px solid #4945ff;
2021-10-05 11:51:09 +02:00
box-shadow: #4945ff 0px 0px 0px 2px;
2021-09-10 06:43:06 +02:00
}
.c10 {
background: transparent;
2021-09-10 06:43:06 +02:00
border: none;
position: relative;
z-index: 1;
2021-09-10 06:43:06 +02:00
}
.c10 svg {
height: 0.6875rem;
width: 0.6875rem;
2021-09-10 06:43:06 +02:00
}
.c10 svg path {
fill: #666687;
2021-09-10 06:43:06 +02:00
}
.c11 {
2021-09-10 06:43:06 +02:00
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background: none;
border: none;
2021-09-10 06:43:06 +02:00
}
.c11 svg {
width: 0.375rem;
2021-09-10 06:43:06 +02:00
}
2021-10-05 11:51:09 +02:00
.c6 {
width: 100%;
2021-09-10 06:43:06 +02:00
}
<div>
<div
class="c0"
>
<span
2021-09-10 06:43:06 +02:00
class="c1"
for="select-1"
id="select-1-label"
2021-09-10 06:43:06 +02:00
>
Locales
</span>
2021-09-10 06:43:06 +02:00
<div
2021-10-05 11:51:09 +02:00
class="c2 c3"
2021-09-10 06:43:06 +02:00
>
<button
2021-09-10 06:43:06 +02:00
aria-busy="true"
aria-disabled="false"
aria-expanded="false"
aria-haspopup="listbox"
aria-labelledby="select-1-label select-1-content"
2021-10-05 11:51:09 +02:00
class="c4"
id="select-1"
type="button"
2021-09-10 06:43:06 +02:00
/>
<div
2021-10-05 11:51:09 +02:00
class="c5 c6"
2021-09-10 06:43:06 +02:00
>
<div
2021-10-05 11:51:09 +02:00
class="c2"
>
<div
class="c7"
>
<span
class="c8"
id="select-1-content"
>
Select...
</span>
</div>
</div>
<div
2021-10-05 11:51:09 +02:00
class="c2"
2021-09-10 06:43:06 +02:00
>
<button
aria-hidden="true"
class="c9 c10 c11"
tabindex="-1"
type="button"
2021-09-10 06:43:06 +02:00
>
<svg
fill="none"
height="1em"
viewBox="0 0 14 8"
width="1em"
xmlns="http://www.w3.org/2000/svg"
>
<path
clip-rule="evenodd"
d="M14 .889a.86.86 0 01-.26.625L7.615 7.736A.834.834 0 017 8a.834.834 0 01-.615-.264L.26 1.514A.861.861 0 010 .889c0-.24.087-.45.26-.625A.834.834 0 01.875 0h12.25c.237 0 .442.088.615.264a.86.86 0 01.26.625z"
fill="#32324D"
fill-rule="evenodd"
/>
</svg>
</button>
</div>
2021-09-10 06:43:06 +02:00
</div>
</div>
</div>
</div>
`);
});
// it('only shows the locales that have not already been used', async () => {
// render();
2021-09-10 06:43:06 +02:00
// await waitFor(() =>
// expect(screen.queryByText('Loading the available locales...')).not.toBeInTheDocument()
// );
// fireEvent.click(screen.getByLabelText('Locales'));
// await waitFor(() => screen.getByText('Afrikaans (af)'));
2021-09-10 06:43:06 +02:00
// expect(screen.getByText('Afrikaans (af)')).toBeVisible();
// expect(screen.getByText('French (fr)')).toBeVisible();
// expect(screen.queryByText('English (en)')).toBeFalsy();
// });
2021-09-10 06:43:06 +02:00
// it('brings back an object of code and displayName keys when changing', async () => {
// const onLocaleChangeSpy = jest.fn();
// render({ onLocaleChange: onLocaleChangeSpy });
2021-09-10 06:43:06 +02:00
// await waitFor(() =>
// expect(screen.queryByText('Loading the available locales...')).not.toBeInTheDocument()
// );
// fireEvent.click(screen.getByLabelText('Locales'));
// await waitFor(() => screen.getByText('Afrikaans (af)'));
// fireEvent.click(screen.getByText('French (fr)'));
2021-09-10 06:43:06 +02:00
// expect(onLocaleChangeSpy).toBeCalledWith({ code: 'fr', displayName: 'French (fr)' });
// });
2021-09-10 06:43:06 +02:00
});