mirror of
https://github.com/apache/superset.git
synced 2026-04-09 11:25:23 +00:00
* [sqllab] implement more robust share query button * [sqllab] fix Hotkeys react warnings * [CopyToClipboard] don't bind in render functions * [explorer] fix short url button position * [sqllab] remove share query item in tab dropdown menu * [sqllab] reference new ShareSqlLabQuery component * [sqllab][share query robustness] clean up * [sqllab] fix tests * [sqllab][share query] add unit tests
92 lines
2.7 KiB
JavaScript
92 lines
2.7 KiB
JavaScript
import React from 'react';
|
|
import configureStore from 'redux-mock-store';
|
|
import thunk from 'redux-thunk';
|
|
import { OverlayTrigger } from 'react-bootstrap';
|
|
import fetchMock from 'fetch-mock';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import * as utils from '../../../src/utils/common';
|
|
import Button from '../../../src/components/Button';
|
|
import ShareSqlLabQuery from '../../../src/SqlLab/components/ShareSqlLabQuery';
|
|
|
|
const mockStore = configureStore([thunk]);
|
|
const store = mockStore();
|
|
|
|
describe('ShareSqlLabQuery', () => {
|
|
const storeQueryUrl = 'glob:*/kv/store/';
|
|
const storeQueryMockId = '123';
|
|
|
|
beforeEach(() => {
|
|
fetchMock.post(storeQueryUrl, () => ({ id: storeQueryMockId }), {
|
|
overwriteRoutes: true,
|
|
});
|
|
fetchMock.resetHistory();
|
|
});
|
|
|
|
afterAll(fetchMock.reset);
|
|
|
|
const defaultProps = {
|
|
queryEditor: {
|
|
dbId: 0,
|
|
title: 'query title',
|
|
schema: 'query_schema',
|
|
autorun: false,
|
|
sql: 'SELECT * FROM ...',
|
|
},
|
|
};
|
|
|
|
function setup(overrideProps) {
|
|
const wrapper = shallow(<ShareSqlLabQuery {...defaultProps} {...overrideProps} />, {
|
|
context: { store },
|
|
}).dive(); // wrapped in withToasts HOC
|
|
|
|
return wrapper;
|
|
}
|
|
|
|
it('renders an OverlayTrigger with Button', () => {
|
|
const wrapper = setup();
|
|
const trigger = wrapper.find(OverlayTrigger);
|
|
const button = trigger.find(Button);
|
|
|
|
expect(trigger).toHaveLength(1);
|
|
expect(button).toHaveLength(1);
|
|
});
|
|
|
|
it('calls storeQuery() with the query when getCopyUrl() is called and saves the url', () => {
|
|
expect.assertions(4);
|
|
const storeQuerySpy = jest.spyOn(utils, 'storeQuery');
|
|
|
|
const wrapper = setup();
|
|
const instance = wrapper.instance();
|
|
|
|
return instance.getCopyUrl().then(() => {
|
|
expect(storeQuerySpy.mock.calls).toHaveLength(1);
|
|
expect(fetchMock.calls(storeQueryUrl)).toHaveLength(1);
|
|
expect(storeQuerySpy.mock.calls[0][0]).toMatchObject(defaultProps.queryEditor);
|
|
expect(instance.state.shortUrl).toContain(storeQueryMockId);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('dispatches an error toast upon fetching failure', () => {
|
|
expect.assertions(3);
|
|
const error = 'error';
|
|
const addDangerToastSpy = jest.fn();
|
|
fetchMock.post(storeQueryUrl, { throws: error }, { overwriteRoutes: true });
|
|
const wrapper = setup();
|
|
wrapper.setProps({ addDangerToast: addDangerToastSpy });
|
|
|
|
return wrapper
|
|
.instance()
|
|
.getCopyUrl()
|
|
.then(() => {
|
|
expect(fetchMock.calls(storeQueryUrl)).toHaveLength(1);
|
|
expect(addDangerToastSpy.mock.calls).toHaveLength(1);
|
|
expect(addDangerToastSpy.mock.calls[0][0]).toBe(error);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
});
|