superset/superset-frontend/temporary_superset_ui/superset-ui/packages/superset-ui-core/test/query/extractQueryFields.test.ts

82 lines
2.4 KiB
TypeScript
Raw Normal View History

/**
* 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 extractQueryFields from '@superset-ui/core/src/query/extractQueryFields';
describe('extractQueryFields', () => {
it('should return default object', () => {
expect(extractQueryFields({})).toEqual({
columns: [],
groupby: [],
metrics: [],
});
});
it('should group default metric controls to metrics', () => {
expect(extractQueryFields({ metric: 'my_metric' }).metrics).toEqual(['my_metric']);
});
it('should group custom metrics with default metrics', () => {
expect(
extractQueryFields(
{ metric: 'metric_1', my_custom_metric: 'metric_2' },
{ my_custom_metric: 'metrics' },
).metrics,
).toEqual(['metric_1', 'metric_2']);
});
it('should extract columns', () => {
expect(extractQueryFields({ columns: 'col_1' })).toEqual({
columns: ['col_1'],
groupby: [],
metrics: [],
});
});
it('should extract groupby', () => {
expect(extractQueryFields({ groupby: 'col_1' })).toEqual({
columns: [],
groupby: ['col_1'],
metrics: [],
});
});
it('should extract custom groupby', () => {
expect(
extractQueryFields({ series: 'col_1', metric: 'metric_1' }, { series: 'groupby' }),
).toEqual({
columns: [],
groupby: ['col_1'],
metrics: ['metric_1'],
});
});
it('should merge custom groupby with default group', () => {
expect(
extractQueryFields(
{ groupby: 'col_1', series: 'col_2', metric: 'metric_1' },
{ series: 'groupby' },
),
).toEqual({
columns: [],
groupby: ['col_1', 'col_2'],
metrics: ['metric_1'],
});
});
});