| /** |
| * 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 configureStore from 'redux-mock-store'; |
| import thunk from 'redux-thunk'; |
| import { fireEvent, render } from 'spec/helpers/testing-library'; |
| import { Store } from 'redux'; |
| import { |
| initialState, |
| defaultQueryEditor, |
| extraQueryEditor1, |
| } from 'src/SqlLab/fixtures'; |
| |
| import EstimateQueryCostButton, { |
| EstimateQueryCostButtonProps, |
| } from 'src/SqlLab/components/EstimateQueryCostButton'; |
| |
| const middlewares = [thunk]; |
| const mockStore = configureStore(middlewares); |
| |
| jest.mock('@superset-ui/core/components/Select/Select', () => () => ( |
| <div data-test="mock-deprecated-select-select" /> |
| )); |
| jest.mock('@superset-ui/core/components/Select/AsyncSelect', () => () => ( |
| <div data-test="mock-deprecated-async-select" /> |
| )); |
| |
| const setup = (props: Partial<EstimateQueryCostButtonProps>, store?: Store) => |
| render( |
| <EstimateQueryCostButton |
| queryEditorId={defaultQueryEditor.id} |
| getEstimate={jest.fn()} |
| {...props} |
| />, |
| { |
| useRedux: true, |
| ...(store && { store }), |
| }, |
| ); |
| |
| describe('EstimateQueryCostButton', () => { |
| it('renders EstimateQueryCostButton', async () => { |
| const { queryByText } = setup({}, mockStore(initialState)); |
| |
| expect(queryByText('Estimate cost')).toBeInTheDocument(); |
| }); |
| |
| it('renders label for selected query', async () => { |
| const { queryByText } = setup( |
| { queryEditorId: extraQueryEditor1.id }, |
| mockStore(initialState), |
| ); |
| |
| expect(queryByText('Estimate selected query cost')).toBeInTheDocument(); |
| }); |
| |
| it('renders label for selected query from unsaved', async () => { |
| const { queryByText } = setup( |
| {}, |
| mockStore({ |
| ...initialState, |
| sqlLab: { |
| ...initialState.sqlLab, |
| unsavedQueryEditor: { |
| id: defaultQueryEditor.id, |
| selectedText: 'SELECT', |
| }, |
| }, |
| }), |
| ); |
| |
| expect(queryByText('Estimate selected query cost')).toBeInTheDocument(); |
| }); |
| |
| it('renders estimation error result', async () => { |
| const { queryByText, getByText } = setup( |
| {}, |
| mockStore({ |
| ...initialState, |
| sqlLab: { |
| ...initialState.sqlLab, |
| queryCostEstimates: { |
| [defaultQueryEditor.id]: { |
| error: 'Estimate error', |
| }, |
| }, |
| }, |
| }), |
| ); |
| |
| expect(queryByText('Estimate cost')).toBeInTheDocument(); |
| fireEvent.click(getByText('Estimate cost')); |
| |
| expect(queryByText('Estimate error')).toBeInTheDocument(); |
| }); |
| |
| it('renders estimation success result', async () => { |
| const { queryByText, getByText } = setup( |
| {}, |
| mockStore({ |
| ...initialState, |
| sqlLab: { |
| ...initialState.sqlLab, |
| queryCostEstimates: { |
| [defaultQueryEditor.id]: { |
| completed: true, |
| cost: [{ 'Total cost': '1.2' }], |
| }, |
| }, |
| }, |
| }), |
| ); |
| |
| expect(queryByText('Estimate cost')).toBeInTheDocument(); |
| fireEvent.click(getByText('Estimate cost')); |
| |
| expect(queryByText('Total cost')).toBeInTheDocument(); |
| }); |
| }); |