mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
* feat: allow uploads in crud view * fix merge conflict and fix ts * fix import * fix tests * fix lint * remove unused var * fix underline flash and alignment * fix offset * fix icon alignment * fix labels and css issues * make drowdown primary all the time * make global * fix lables * add upload perms to utils * remove unused code * add suggested changes * update menuright
252 lines
7.2 KiB
JavaScript
252 lines
7.2 KiB
JavaScript
/**
|
|
* 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 thunk from 'redux-thunk';
|
|
import * as redux from 'react-redux';
|
|
import configureStore from 'redux-mock-store';
|
|
import fetchMock from 'fetch-mock';
|
|
import { Provider } from 'react-redux';
|
|
import { styledMount as mount } from 'spec/helpers/theming';
|
|
import { render, screen, cleanup } from 'spec/helpers/testing-library';
|
|
import userEvent from '@testing-library/user-event';
|
|
import { QueryParamProvider } from 'use-query-params';
|
|
import * as featureFlags from 'src/featureFlags';
|
|
|
|
import DatabaseList from 'src/views/CRUD/data/database/DatabaseList';
|
|
import DatabaseModal from 'src/views/CRUD/data/database/DatabaseModal';
|
|
import DeleteModal from 'src/components/DeleteModal';
|
|
import SubMenu from 'src/views/components/SubMenu';
|
|
import ListView from 'src/components/ListView';
|
|
import Filters from 'src/components/ListView/Filters';
|
|
import waitForComponentToPaint from 'spec/helpers/waitForComponentToPaint';
|
|
import { act } from 'react-dom/test-utils';
|
|
|
|
// store needed for withToasts(DatabaseList)
|
|
const mockStore = configureStore([thunk]);
|
|
const store = mockStore({});
|
|
|
|
const mockAppState = {
|
|
common: {
|
|
config: {
|
|
CSV_EXTENSIONS: ['csv'],
|
|
EXCEL_EXTENSIONS: ['xls', 'xlsx'],
|
|
COLUMNAR_EXTENSIONS: ['parquet', 'zip'],
|
|
ALLOWED_EXTENSIONS: ['parquet', 'zip', 'xls', 'xlsx', 'csv'],
|
|
},
|
|
},
|
|
};
|
|
|
|
const databasesInfoEndpoint = 'glob:*/api/v1/database/_info*';
|
|
const databasesEndpoint = 'glob:*/api/v1/database/?*';
|
|
const databaseEndpoint = 'glob:*/api/v1/database/*';
|
|
const databaseRelatedEndpoint = 'glob:*/api/v1/database/*/related_objects*';
|
|
|
|
const mockdatabases = [...new Array(3)].map((_, i) => ({
|
|
changed_by: {
|
|
first_name: `user`,
|
|
last_name: `${i}`,
|
|
},
|
|
database_name: `db ${i}`,
|
|
backend: 'postgresql',
|
|
allow_run_async: true,
|
|
allow_dml: false,
|
|
allow_file_upload: true,
|
|
expose_in_sqllab: false,
|
|
changed_on_delta_humanized: `${i} day(s) ago`,
|
|
changed_on: new Date().toISOString,
|
|
id: i,
|
|
}));
|
|
|
|
jest.mock('react-redux', () => ({
|
|
...jest.requireActual('react-redux'),
|
|
useSelector: jest.fn(),
|
|
}));
|
|
|
|
const mockUser = {
|
|
userId: 1,
|
|
};
|
|
|
|
fetchMock.get(databasesInfoEndpoint, {
|
|
permissions: ['can_write'],
|
|
});
|
|
fetchMock.get(databasesEndpoint, {
|
|
result: mockdatabases,
|
|
database_count: 3,
|
|
});
|
|
|
|
fetchMock.delete(databaseEndpoint, {});
|
|
fetchMock.get(databaseRelatedEndpoint, {
|
|
charts: {
|
|
count: 0,
|
|
result: [],
|
|
},
|
|
dashboards: {
|
|
count: 0,
|
|
result: [],
|
|
},
|
|
sqllab_tab_states: {
|
|
count: 0,
|
|
result: [],
|
|
},
|
|
});
|
|
|
|
const useSelectorMock = jest.spyOn(redux, 'useSelector');
|
|
|
|
describe('DatabaseList', () => {
|
|
useSelectorMock.mockReturnValue({
|
|
CSV_EXTENSIONS: ['csv'],
|
|
EXCEL_EXTENSIONS: ['xls', 'xlsx'],
|
|
COLUMNAR_EXTENSIONS: ['parquet', 'zip'],
|
|
ALLOWED_EXTENSIONS: ['parquet', 'zip', 'xls', 'xlsx', 'csv'],
|
|
});
|
|
|
|
const wrapper = mount(
|
|
<Provider store={store}>
|
|
<DatabaseList user={mockUser} />
|
|
</Provider>,
|
|
);
|
|
|
|
beforeAll(async () => {
|
|
await waitForComponentToPaint(wrapper);
|
|
});
|
|
|
|
it('renders', () => {
|
|
expect(wrapper.find(DatabaseList)).toExist();
|
|
});
|
|
|
|
it('renders a SubMenu', () => {
|
|
expect(wrapper.find(SubMenu)).toExist();
|
|
});
|
|
|
|
it('renders a DatabaseModal', () => {
|
|
expect(wrapper.find(DatabaseModal)).toExist();
|
|
});
|
|
|
|
it('renders a ListView', () => {
|
|
expect(wrapper.find(ListView)).toExist();
|
|
});
|
|
|
|
it('fetches Databases', () => {
|
|
const callsD = fetchMock.calls(/database\/\?q/);
|
|
expect(callsD).toHaveLength(1);
|
|
expect(callsD[0][0]).toMatchInlineSnapshot(
|
|
`"http://localhost/api/v1/database/?q=(order_column:changed_on_delta_humanized,order_direction:desc,page:0,page_size:25)"`,
|
|
);
|
|
});
|
|
|
|
it('deletes', async () => {
|
|
act(() => {
|
|
wrapper.find('[data-test="database-delete"]').first().props().onClick();
|
|
});
|
|
await waitForComponentToPaint(wrapper);
|
|
|
|
expect(wrapper.find(DeleteModal).props().description).toMatchInlineSnapshot(
|
|
`"The database db 0 is linked to 0 charts that appear on 0 dashboards and users have 0 SQL Lab tabs using this database open. Are you sure you want to continue? Deleting the database will break those objects."`,
|
|
);
|
|
|
|
act(() => {
|
|
wrapper
|
|
.find('#delete')
|
|
.first()
|
|
.props()
|
|
.onChange({ target: { value: 'DELETE' } });
|
|
});
|
|
await waitForComponentToPaint(wrapper);
|
|
act(() => {
|
|
wrapper.find('button').last().props().onClick();
|
|
});
|
|
|
|
await waitForComponentToPaint(wrapper);
|
|
|
|
expect(fetchMock.calls(/database\/0\/related_objects/, 'GET')).toHaveLength(
|
|
1,
|
|
);
|
|
expect(fetchMock.calls(/database\/0/, 'DELETE')).toHaveLength(1);
|
|
});
|
|
|
|
it('filters', async () => {
|
|
const filtersWrapper = wrapper.find(Filters);
|
|
act(() => {
|
|
filtersWrapper
|
|
.find('[name="expose_in_sqllab"]')
|
|
.first()
|
|
.props()
|
|
.onSelect({ label: 'Yes', value: true });
|
|
|
|
filtersWrapper
|
|
.find('[name="allow_run_async"]')
|
|
.first()
|
|
.props()
|
|
.onSelect({ label: 'Yes', value: false });
|
|
|
|
filtersWrapper
|
|
.find('[name="database_name"]')
|
|
.first()
|
|
.props()
|
|
.onSubmit('fooo');
|
|
});
|
|
await waitForComponentToPaint(wrapper);
|
|
|
|
expect(fetchMock.lastCall()[0]).toMatchInlineSnapshot(
|
|
`"http://localhost/api/v1/database/?q=(filters:!((col:expose_in_sqllab,opr:eq,value:!t),(col:allow_run_async,opr:eq,value:!f),(col:database_name,opr:ct,value:fooo)),order_column:changed_on_delta_humanized,order_direction:desc,page:0,page_size:25)"`,
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('RTL', () => {
|
|
async function renderAndWait() {
|
|
const mounted = act(async () => {
|
|
render(
|
|
<QueryParamProvider>
|
|
<DatabaseList user={mockUser} />
|
|
</QueryParamProvider>,
|
|
{ useRedux: true },
|
|
mockAppState,
|
|
);
|
|
});
|
|
|
|
return mounted;
|
|
}
|
|
|
|
let isFeatureEnabledMock;
|
|
beforeEach(async () => {
|
|
isFeatureEnabledMock = jest
|
|
.spyOn(featureFlags, 'isFeatureEnabled')
|
|
.mockImplementation(() => true);
|
|
await renderAndWait();
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
isFeatureEnabledMock.mockRestore();
|
|
});
|
|
|
|
it('renders an "Import Database" tooltip under import button', async () => {
|
|
const importButton = await screen.findByTestId('import-button');
|
|
userEvent.hover(importButton);
|
|
|
|
await screen.findByRole('tooltip');
|
|
const importTooltip = screen.getByRole('tooltip', {
|
|
name: 'Import databases',
|
|
});
|
|
|
|
expect(importTooltip).toBeInTheDocument();
|
|
});
|
|
});
|