mirror of
https://github.com/apache/superset.git
synced 2026-04-09 11:25:23 +00:00
* [deps] add @superset-ui/core * [superset-client] initialize SupersetClient in app setup * [superset-client] add abortcontroller-polyfill * [superset-client] replace all chart ajax calls with SupersetClient * [tests] add fetch-mock dep and helpers/setupSupersetClient.js * [superset client][charts][tests] fix and improve chartActions_spec * [deps] @superset-ui/core@^0.0.4 * [common] add better SupersetClient initialization error * [cypress] add readResponseBlob helper, fix broken fetch-based tests * [cypress] fix tests from rebase * [deps] @superset-ui/core@^0.0.5 * [cypress][fetch] fix controls test for fetch * [cypress][dashboard][fetch] fix filter test for fetch * [superset-client] configure protocol on init * yarn.lock * undo Chart.jsx revert * yarn again * [superset-client] fix chartAction unit tests
124 lines
4.0 KiB
JavaScript
124 lines
4.0 KiB
JavaScript
import fetchMock from 'fetch-mock';
|
|
import sinon from 'sinon';
|
|
|
|
import { Logger } from '../../../src/logger';
|
|
import setupSupersetClient from '../../helpers/setupSupersetClient';
|
|
import * as exploreUtils from '../../../src/explore/exploreUtils';
|
|
import * as actions from '../../../src/chart/chartAction';
|
|
|
|
describe('chart actions', () => {
|
|
const MOCK_URL = '/mockURL';
|
|
let dispatch;
|
|
let urlStub;
|
|
let loggerStub;
|
|
|
|
const setupDefaultFetchMock = () => {
|
|
fetchMock.post(MOCK_URL, { json: {} }, { overwriteRoutes: true });
|
|
};
|
|
|
|
beforeAll(() => {
|
|
setupSupersetClient();
|
|
setupDefaultFetchMock();
|
|
});
|
|
|
|
afterAll(fetchMock.restore);
|
|
|
|
beforeEach(() => {
|
|
dispatch = sinon.spy();
|
|
urlStub = sinon
|
|
.stub(exploreUtils, 'getExploreUrlAndPayload')
|
|
.callsFake(() => ({ url: MOCK_URL, payload: {} }));
|
|
loggerStub = sinon.stub(Logger, 'append');
|
|
});
|
|
|
|
afterEach(() => {
|
|
urlStub.restore();
|
|
loggerStub.restore();
|
|
fetchMock.resetHistory();
|
|
});
|
|
|
|
it('should dispatch CHART_UPDATE_STARTED action before the query', () => {
|
|
const actionThunk = actions.runQuery({});
|
|
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, success
|
|
expect(dispatch.callCount).toBe(4);
|
|
expect(fetchMock.calls(MOCK_URL)).toHaveLength(1);
|
|
expect(dispatch.args[0][0].type).toBe(actions.CHART_UPDATE_STARTED);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('should dispatch TRIGGER_QUERY action with the query', () => {
|
|
const actionThunk = actions.runQuery({});
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, success
|
|
expect(dispatch.callCount).toBe(4);
|
|
expect(fetchMock.calls(MOCK_URL)).toHaveLength(1);
|
|
expect(dispatch.args[1][0].type).toBe(actions.TRIGGER_QUERY);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('should dispatch UPDATE_QUERY_FORM_DATA action with the query', () => {
|
|
const actionThunk = actions.runQuery({});
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, success
|
|
expect(dispatch.callCount).toBe(4);
|
|
expect(fetchMock.calls(MOCK_URL)).toHaveLength(1);
|
|
expect(dispatch.args[2][0].type).toBe(actions.UPDATE_QUERY_FORM_DATA);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('should dispatch CHART_UPDATE_SUCCEEDED action upon success', () => {
|
|
const actionThunk = actions.runQuery({});
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, success
|
|
expect(dispatch.callCount).toBe(4);
|
|
expect(fetchMock.calls(MOCK_URL)).toHaveLength(1);
|
|
expect(dispatch.args[3][0].type).toBe(actions.CHART_UPDATE_SUCCEEDED);
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('should CHART_UPDATE_TIMEOUT action upon query timeout', () => {
|
|
const unresolvingPromise = new Promise(() => {});
|
|
fetchMock.post(MOCK_URL, () => unresolvingPromise, { overwriteRoutes: true });
|
|
|
|
const timeoutInSec = 1 / 1000;
|
|
const actionThunk = actions.runQuery({}, false, timeoutInSec);
|
|
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, fail
|
|
expect(dispatch.callCount).toBe(4);
|
|
expect(dispatch.args[3][0].type).toBe(actions.CHART_UPDATE_TIMEOUT);
|
|
setupDefaultFetchMock();
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
|
|
it('should dispatch CHART_UPDATE_FAILED action upon non-timeout non-abort failure', () => {
|
|
fetchMock.post(MOCK_URL, { throws: { error: 'misc error' } }, { overwriteRoutes: true });
|
|
|
|
const timeoutInSec = 1 / 1000;
|
|
const actionThunk = actions.runQuery({}, false, timeoutInSec);
|
|
|
|
return actionThunk(dispatch).then(() => {
|
|
// chart update, trigger query, update form data, fail
|
|
expect(dispatch.callCount).toBe(4);
|
|
const updateFailedAction = dispatch.args[3][0];
|
|
expect(updateFailedAction.type).toBe(actions.CHART_UPDATE_FAILED);
|
|
expect(updateFailedAction.queryResponse.error).toBe('misc error');
|
|
setupDefaultFetchMock();
|
|
|
|
return Promise.resolve();
|
|
});
|
|
});
|
|
});
|