| /** |
| * 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 configureStore from 'redux-mock-store'; |
| import thunk from 'redux-thunk'; |
| import fetchMock from 'fetch-mock'; |
| import * as featureFlags from 'src/featureFlags'; |
| import { Provider } from 'react-redux'; |
| import { supersetTheme, ThemeProvider } from '@superset-ui/core'; |
| import { render, screen, act } from '@testing-library/react'; |
| import '@testing-library/jest-dom/extend-expect'; |
| import userEvent from '@testing-library/user-event'; |
| import * as utils from 'src/utils/common'; |
| import ShareSqlLabQuery from 'src/SqlLab/components/ShareSqlLabQuery'; |
| import { initialState } from 'src/SqlLab/fixtures'; |
| |
| const mockStore = configureStore([thunk]); |
| const defaultProps = { |
| queryEditorId: 'qe1', |
| addDangerToast: jest.fn(), |
| }; |
| const mockQueryEditor = { |
| id: defaultProps.queryEditorId, |
| dbId: 0, |
| name: 'query title', |
| schema: 'query_schema', |
| autorun: false, |
| sql: 'SELECT * FROM ...', |
| remoteId: 999, |
| }; |
| const disabled = { |
| id: 'disabledEditorId', |
| remoteId: undefined, |
| }; |
| |
| const mockState = { |
| ...initialState, |
| sqlLab: { |
| ...initialState.sqlLab, |
| queryEditors: [mockQueryEditor, disabled], |
| }, |
| }; |
| const store = mockStore(mockState); |
| let isFeatureEnabledMock: jest.SpyInstance; |
| |
| const standardProvider: React.FC = ({ children }) => ( |
| <ThemeProvider theme={supersetTheme}> |
| <Provider store={store}>{children}</Provider> |
| </ThemeProvider> |
| ); |
| |
| const unsavedQueryEditor = { |
| id: defaultProps.queryEditorId, |
| dbId: 9888, |
| name: 'query title changed', |
| schema: 'query_schema_updated', |
| sql: 'SELECT * FROM Updated Limit 100', |
| autorun: true, |
| templateParams: '{ "my_value": "foo" }', |
| }; |
| |
| const standardProviderWithUnsaved: React.FC = ({ children }) => ( |
| <ThemeProvider theme={supersetTheme}> |
| <Provider |
| store={mockStore({ |
| ...initialState, |
| sqlLab: { |
| ...initialState.sqlLab, |
| unsavedQueryEditor, |
| }, |
| })} |
| > |
| {children} |
| </Provider> |
| </ThemeProvider> |
| ); |
| |
| describe('ShareSqlLabQuery', () => { |
| const storeQueryUrl = 'glob:*/kv/store/'; |
| const storeQueryMockId = '123'; |
| |
| beforeEach(async () => { |
| fetchMock.post(storeQueryUrl, () => ({ id: storeQueryMockId }), { |
| overwriteRoutes: true, |
| }); |
| fetchMock.resetHistory(); |
| jest.clearAllMocks(); |
| }); |
| |
| afterAll(fetchMock.reset); |
| |
| describe('via /kv/store', () => { |
| beforeAll(() => { |
| isFeatureEnabledMock = jest |
| .spyOn(featureFlags, 'isFeatureEnabled') |
| .mockImplementation(() => true); |
| }); |
| |
| afterAll(() => { |
| isFeatureEnabledMock.mockReset(); |
| }); |
| |
| it('calls storeQuery() with the query when getCopyUrl() is called', async () => { |
| await act(async () => { |
| render(<ShareSqlLabQuery {...defaultProps} />, { |
| wrapper: standardProvider, |
| }); |
| }); |
| const button = screen.getByRole('button'); |
| const { id, remoteId, ...expected } = mockQueryEditor; |
| const storeQuerySpy = jest.spyOn(utils, 'storeQuery'); |
| userEvent.click(button); |
| expect(storeQuerySpy.mock.calls).toHaveLength(1); |
| expect(storeQuerySpy).toBeCalledWith(expected); |
| storeQuerySpy.mockRestore(); |
| }); |
| |
| it('calls storeQuery() with unsaved changes', async () => { |
| await act(async () => { |
| render(<ShareSqlLabQuery {...defaultProps} />, { |
| wrapper: standardProviderWithUnsaved, |
| }); |
| }); |
| const button = screen.getByRole('button'); |
| const { id, ...expected } = unsavedQueryEditor; |
| const storeQuerySpy = jest.spyOn(utils, 'storeQuery'); |
| userEvent.click(button); |
| expect(storeQuerySpy.mock.calls).toHaveLength(1); |
| expect(storeQuerySpy).toBeCalledWith(expected); |
| storeQuerySpy.mockRestore(); |
| }); |
| }); |
| |
| describe('via saved query', () => { |
| beforeAll(() => { |
| isFeatureEnabledMock = jest |
| .spyOn(featureFlags, 'isFeatureEnabled') |
| .mockImplementation(() => false); |
| }); |
| |
| afterAll(() => { |
| isFeatureEnabledMock.mockReset(); |
| }); |
| |
| it('does not call storeQuery() with the query when getCopyUrl() is called and feature is not enabled', async () => { |
| await act(async () => { |
| render(<ShareSqlLabQuery {...defaultProps} />, { |
| wrapper: standardProvider, |
| }); |
| }); |
| const storeQuerySpy = jest.spyOn(utils, 'storeQuery'); |
| const button = screen.getByRole('button'); |
| userEvent.click(button); |
| expect(storeQuerySpy.mock.calls).toHaveLength(0); |
| storeQuerySpy.mockRestore(); |
| }); |
| |
| it('button is disabled and there is a request to save the query', async () => { |
| const updatedProps = { |
| queryEditorId: disabled.id, |
| }; |
| |
| render(<ShareSqlLabQuery {...updatedProps} />, { |
| wrapper: standardProvider, |
| }); |
| const button = await screen.findByRole('button', { name: /copy link/i }); |
| expect(button).toBeDisabled(); |
| }); |
| }); |
| }); |