123 lines
3.5 KiB
TypeScript
123 lines
3.5 KiB
TypeScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
import React from 'react';
|
|
import { render, screen } from 'spec/helpers/testing-library';
|
|
import { Provider } from 'react-redux';
|
|
import fetchMock from 'fetch-mock';
|
|
import { storeWithState } from 'spec/fixtures/mockStore';
|
|
import ToastContainer from 'src/components/MessageToasts/ToastContainer';
|
|
import TableLoader, { TableLoaderProps } from '.';
|
|
|
|
const NO_DATA_TEXT = 'No data available';
|
|
const MOCK_GLOB = 'glob:*/api/v1/mock';
|
|
|
|
fetchMock.get(MOCK_GLOB, [
|
|
{ id: 1, name: 'John Doe' },
|
|
{ id: 2, name: 'Jane Doe' },
|
|
]);
|
|
|
|
const defaultProps: TableLoaderProps = {
|
|
dataEndpoint: '/api/v1/mock',
|
|
addDangerToast: jest.fn(),
|
|
noDataText: NO_DATA_TEXT,
|
|
};
|
|
|
|
function renderWithProps(props: TableLoaderProps = defaultProps) {
|
|
return render(
|
|
<Provider store={storeWithState({})}>
|
|
<TableLoader {...props} />
|
|
<ToastContainer />
|
|
</Provider>,
|
|
);
|
|
}
|
|
|
|
test('renders loading and table', async () => {
|
|
renderWithProps();
|
|
|
|
expect(screen.getByRole('status')).toBeInTheDocument();
|
|
expect(await screen.findByRole('table')).toBeInTheDocument();
|
|
});
|
|
|
|
test('renders with column names', async () => {
|
|
renderWithProps({
|
|
...defaultProps,
|
|
columns: ['id_modified', 'name_modified'],
|
|
});
|
|
|
|
const columnHeaders = await screen.findAllByRole('columnheader');
|
|
|
|
expect(columnHeaders[0]).toHaveTextContent('id_modified');
|
|
expect(columnHeaders[1]).toHaveTextContent('name_modified');
|
|
});
|
|
|
|
test('renders without mutator', async () => {
|
|
renderWithProps();
|
|
|
|
expect(await screen.findAllByRole('row')).toHaveLength(3);
|
|
expect(await screen.findAllByRole('columnheader')).toHaveLength(2);
|
|
expect(await screen.findAllByRole('cell')).toHaveLength(4);
|
|
});
|
|
|
|
test('renders with mutator', async () => {
|
|
const mutator = function (data: { id: number; name: string }[]) {
|
|
return data.map(row => ({
|
|
id: row.id,
|
|
name: <h4>{row.name}</h4>,
|
|
}));
|
|
};
|
|
|
|
renderWithProps({ ...defaultProps, mutator });
|
|
|
|
expect(await screen.findAllByRole('heading', { level: 4 })).toHaveLength(2);
|
|
});
|
|
|
|
test('renders empty message', async () => {
|
|
fetchMock.mock(MOCK_GLOB, [], {
|
|
overwriteRoutes: true,
|
|
});
|
|
|
|
renderWithProps();
|
|
|
|
expect(await screen.findByText('No data available')).toBeInTheDocument();
|
|
});
|
|
|
|
test('renders blocked message', async () => {
|
|
fetchMock.mock(MOCK_GLOB, 403, {
|
|
overwriteRoutes: true,
|
|
});
|
|
|
|
renderWithProps();
|
|
|
|
expect(
|
|
await screen.findByText('Access to user activity data is restricted'),
|
|
).toBeInTheDocument();
|
|
expect(screen.queryByRole('alert')).not.toBeInTheDocument();
|
|
});
|
|
|
|
test('renders error message', async () => {
|
|
fetchMock.mock(MOCK_GLOB, 500, {
|
|
overwriteRoutes: true,
|
|
});
|
|
|
|
renderWithProps();
|
|
|
|
expect(await screen.findByText(NO_DATA_TEXT)).toBeInTheDocument();
|
|
expect(await screen.findByRole('alert')).toBeInTheDocument();
|
|
});
|