mirror of
https://github.com/apache/superset.git
synced 2026-04-09 03:16:07 +00:00
* [lint] turn no-undef back on, set browser, cypress, and mocha env's, and fix issues * [lint] fix undefined var in TimeTable.jsx
141 lines
3.9 KiB
JavaScript
141 lines
3.9 KiB
JavaScript
import { expect } from 'chai';
|
|
import URI from 'urijs';
|
|
import { getExploreUrlAndPayload, getExploreLongUrl } from '../../../src/explore/exploreUtils';
|
|
|
|
describe('exploreUtils', () => {
|
|
const location = window.location;
|
|
const formData = {
|
|
datasource: '1__table',
|
|
};
|
|
const sFormData = JSON.stringify(formData);
|
|
function compareURI(uri1, uri2) {
|
|
expect(uri1.toString()).to.equal(uri2.toString());
|
|
}
|
|
|
|
describe('getExploreUrlAndPayload', () => {
|
|
it('generates proper base url', () => {
|
|
// This assertion is to show clearly the value of location.href
|
|
// in the context of unit tests.
|
|
expect(location.href).to.equal('about:blank');
|
|
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'base',
|
|
force: false,
|
|
curUrl: 'http://superset.com',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore/'),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generates proper json url', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'json',
|
|
force: false,
|
|
curUrl: 'http://superset.com',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/'),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generates proper json forced url', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'json',
|
|
force: true,
|
|
curUrl: 'superset.com',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/')
|
|
.search({ force: 'true' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generates proper csv URL', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'csv',
|
|
force: false,
|
|
curUrl: 'superset.com',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/')
|
|
.search({ csv: 'true' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generates proper standalone URL', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'standalone',
|
|
force: false,
|
|
curUrl: 'superset.com',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore/')
|
|
.search({ standalone: 'true' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('preserves main URLs params', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'json',
|
|
force: false,
|
|
curUrl: 'superset.com?foo=bar',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/')
|
|
.search({ foo: 'bar' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generate proper save slice url', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'json',
|
|
force: false,
|
|
curUrl: 'superset.com?foo=bar',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/')
|
|
.search({ foo: 'bar' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
it('generate proper saveas slice url', () => {
|
|
const { url, payload } = getExploreUrlAndPayload({
|
|
formData,
|
|
endpointType: 'json',
|
|
force: false,
|
|
curUrl: 'superset.com?foo=bar',
|
|
});
|
|
compareURI(
|
|
URI(url),
|
|
URI('/superset/explore_json/')
|
|
.search({ foo: 'bar' }),
|
|
);
|
|
expect(payload).to.deep.equals(formData);
|
|
});
|
|
});
|
|
|
|
describe('getExploreLongUrl', () => {
|
|
it('generates proper base url with form_data', () => {
|
|
compareURI(
|
|
URI(getExploreLongUrl(formData, 'base')),
|
|
URI('/superset/explore/').search({ form_data: sFormData }),
|
|
);
|
|
});
|
|
});
|
|
});
|