mirror of
https://github.com/apache/superset.git
synced 2026-04-22 09:35:23 +00:00
SIP-32: Moving frontend code to the base of the repo (#9098)
* move assets out, get webpack dev working * update docs to reference superset-frontend * draw the rest of the owl * fix docs * fix webpack script * rats * correct docs * fix tox dox
This commit is contained in:
committed by
GitHub
parent
0cf354cc88
commit
2913063924
191
superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx
Normal file
191
superset-frontend/spec/javascripts/explore/controlUtils_spec.jsx
Normal file
@@ -0,0 +1,191 @@
|
||||
/**
|
||||
* 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 { getChartControlPanelRegistry } from '@superset-ui/chart';
|
||||
import { t } from '@superset-ui/translation';
|
||||
import {
|
||||
getControlConfig,
|
||||
getControlState,
|
||||
applyMapStateToPropsToControl,
|
||||
} from '../../../src/explore/controlUtils';
|
||||
|
||||
describe('controlUtils', () => {
|
||||
const state = {
|
||||
datasource: {
|
||||
columns: ['a', 'b', 'c'],
|
||||
metrics: [{ metric_name: 'first' }, { metric_name: 'second' }],
|
||||
},
|
||||
};
|
||||
|
||||
beforeAll(() => {
|
||||
getChartControlPanelRegistry()
|
||||
.registerValue('test-chart', {
|
||||
requiresTime: true,
|
||||
controlPanelSections: [
|
||||
{
|
||||
label: t('Chart Options'),
|
||||
expanded: true,
|
||||
controlSetRows: [
|
||||
[
|
||||
'color_scheme',
|
||||
{
|
||||
name: 'rose_area_proportion',
|
||||
config: {
|
||||
type: 'CheckboxControl',
|
||||
label: t('Use Area Proportions'),
|
||||
description: t(
|
||||
'Check if the Rose Chart should use segment area instead of ' +
|
||||
'segment radius for proportioning',
|
||||
),
|
||||
default: false,
|
||||
renderTrigger: true,
|
||||
},
|
||||
},
|
||||
],
|
||||
],
|
||||
},
|
||||
],
|
||||
})
|
||||
.registerValue('test-chart-override', {
|
||||
requiresTime: true,
|
||||
controlPanelSections: [
|
||||
{
|
||||
label: t('Chart Options'),
|
||||
expanded: true,
|
||||
controlSetRows: [['color_scheme']],
|
||||
},
|
||||
],
|
||||
controlOverrides: {
|
||||
color_scheme: {
|
||||
label: t('My beautiful colors'),
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
afterAll(() => {
|
||||
getChartControlPanelRegistry()
|
||||
.remove('test-chart')
|
||||
.remove('test-chart-override');
|
||||
});
|
||||
|
||||
describe('getControlConfig', () => {
|
||||
it('returns a valid spatial controlConfig', () => {
|
||||
const spatialControl = getControlConfig('color_scheme', 'test-chart');
|
||||
expect(spatialControl.type).toEqual('ColorSchemeControl');
|
||||
});
|
||||
|
||||
it('overrides according to vizType', () => {
|
||||
let control = getControlConfig('color_scheme', 'test-chart');
|
||||
expect(control.label).toEqual('Color Scheme');
|
||||
|
||||
// deck_polygon overrides and removes validators
|
||||
control = getControlConfig('color_scheme', 'test-chart-override');
|
||||
expect(control.label).toEqual('My beautiful colors');
|
||||
});
|
||||
|
||||
it(
|
||||
'returns correct control config when control config is defined ' +
|
||||
'in the control panel definition',
|
||||
() => {
|
||||
const roseAreaProportionControlConfig = getControlConfig(
|
||||
'rose_area_proportion',
|
||||
'test-chart',
|
||||
);
|
||||
expect(roseAreaProportionControlConfig).toEqual({
|
||||
type: 'CheckboxControl',
|
||||
label: t('Use Area Proportions'),
|
||||
description: t(
|
||||
'Check if the Rose Chart should use segment area instead of ' +
|
||||
'segment radius for proportioning',
|
||||
),
|
||||
default: false,
|
||||
renderTrigger: true,
|
||||
});
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
describe('applyMapStateToPropsToControl,', () => {
|
||||
it('applies state to props as expected', () => {
|
||||
let control = getControlConfig('all_columns', 'table');
|
||||
control = applyMapStateToPropsToControl(control, state);
|
||||
expect(control.options).toEqual(['a', 'b', 'c']);
|
||||
});
|
||||
|
||||
it('removes the mapStateToProps key from the object', () => {
|
||||
let control = getControlConfig('all_columns', 'table');
|
||||
control = applyMapStateToPropsToControl(control, state);
|
||||
expect(control.mapStateToProps).toBe(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
describe('getControlState', () => {
|
||||
it('to be function free', () => {
|
||||
const control = getControlState('all_columns', 'table', state, ['a']);
|
||||
expect(control.mapStateToProps).toBe(undefined);
|
||||
expect(control.validators).toBe(undefined);
|
||||
});
|
||||
|
||||
it('to fix multi with non-array values', () => {
|
||||
const control = getControlState('all_columns', 'table', state, 'a');
|
||||
expect(control.value).toEqual(['a']);
|
||||
});
|
||||
|
||||
it('removes missing/invalid choice', () => {
|
||||
let control = getControlState('stacked_style', 'area', state, 'stack');
|
||||
expect(control.value).toBe('stack');
|
||||
|
||||
control = getControlState('stacked_style', 'area', state, 'FOO');
|
||||
expect(control.value).toBe(null);
|
||||
});
|
||||
|
||||
it('applies the default function for metrics', () => {
|
||||
const control = getControlState('metrics', 'table', state);
|
||||
expect(control.default).toEqual(['first']);
|
||||
});
|
||||
|
||||
it('applies the default function for metric', () => {
|
||||
const control = getControlState('metric', 'table', state);
|
||||
expect(control.default).toEqual('first');
|
||||
});
|
||||
|
||||
it('applies the default function, prefers count if it exists', () => {
|
||||
const stateWithCount = {
|
||||
...state,
|
||||
datasource: {
|
||||
...state.datasource,
|
||||
metrics: [
|
||||
{ metric_name: 'first' },
|
||||
{ metric_name: 'second' },
|
||||
{ metric_name: 'count' },
|
||||
],
|
||||
},
|
||||
};
|
||||
const control = getControlState('metrics', 'table', stateWithCount);
|
||||
expect(control.default).toEqual(['count']);
|
||||
});
|
||||
});
|
||||
|
||||
describe('validateControl', () => {
|
||||
it('validates the control, returns an error if empty', () => {
|
||||
const control = getControlState('metric', 'table', state, null);
|
||||
expect(control.validationErrors).toEqual(['cannot be empty']);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user