| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /**
- * 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 {
- normalizeTimeColumn,
- QueryObject,
- SqlaFormData,
- VizType,
- } from '@superset-ui/core';
- test('should return original QueryObject if x_axis is empty', () => {
- const formData: SqlaFormData = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- time_grain_sqla: 'P1Y',
- time_range: '1 year ago : 2013',
- columns: ['col1'],
- metrics: ['count(*)'],
- };
- const query: QueryObject = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: {
- time_grain_sqla: 'P1Y',
- },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- columns: ['col1'],
- metrics: ['count(*)'],
- is_timeseries: true,
- };
- expect(normalizeTimeColumn(formData, query)).toEqual(query);
- });
- test('should support different columns for x-axis and granularity', () => {
- const formData: SqlaFormData = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- time_grain_sqla: 'P1Y',
- time_range: '1 year ago : 2013',
- x_axis: 'time_column_in_x_axis',
- columns: ['col1'],
- metrics: ['count(*)'],
- };
- const query: QueryObject = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: {
- time_grain_sqla: 'P1Y',
- where: '',
- having: '',
- },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- columns: ['time_column_in_x_axis', 'col1'],
- metrics: ['count(*)'],
- is_timeseries: true,
- };
- expect(normalizeTimeColumn(formData, query)).toEqual({
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: { where: '', having: '', time_grain_sqla: 'P1Y' },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- columns: [
- {
- timeGrain: 'P1Y',
- columnType: 'BASE_AXIS',
- sqlExpression: 'time_column_in_x_axis',
- label: 'time_column_in_x_axis',
- expressionType: 'SQL',
- },
- 'col1',
- ],
- metrics: ['count(*)'],
- });
- });
- test('should support custom SQL in x-axis', () => {
- const formData: SqlaFormData = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- time_grain_sqla: 'P1Y',
- time_range: '1 year ago : 2013',
- x_axis: {
- expressionType: 'SQL',
- label: 'Order Data + 1 year',
- sqlExpression: '"Order Date" + interval \'1 year\'',
- },
- columns: ['col1'],
- metrics: ['count(*)'],
- };
- const query: QueryObject = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: {
- time_grain_sqla: 'P1Y',
- where: '',
- having: '',
- },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- columns: [
- {
- expressionType: 'SQL',
- label: 'Order Data + 1 year',
- sqlExpression: '"Order Date" + interval \'1 year\'',
- },
- 'col1',
- ],
- metrics: ['count(*)'],
- is_timeseries: true,
- };
- expect(normalizeTimeColumn(formData, query)).toEqual({
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: { where: '', having: '', time_grain_sqla: 'P1Y' },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- columns: [
- {
- timeGrain: 'P1Y',
- columnType: 'BASE_AXIS',
- expressionType: 'SQL',
- label: 'Order Data + 1 year',
- sqlExpression: `"Order Date" + interval '1 year'`,
- },
- 'col1',
- ],
- metrics: ['count(*)'],
- });
- });
- test('fallback and invalid columns value', () => {
- const formData: SqlaFormData = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- time_grain_sqla: 'P1Y',
- time_range: '1 year ago : 2013',
- x_axis: {
- expressionType: 'SQL',
- label: 'Order Data + 1 year',
- sqlExpression: '"Order Date" + interval \'1 year\'',
- },
- columns: ['col1'],
- metrics: ['count(*)'],
- };
- const query: QueryObject = {
- datasource: '5__table',
- viz_type: VizType.Table,
- granularity: 'time_column',
- extras: {
- time_grain_sqla: 'P1Y',
- where: '',
- having: '',
- },
- time_range: '1 year ago : 2013',
- orderby: [['count(*)', true]],
- metrics: ['count(*)'],
- is_timeseries: true,
- };
- expect(normalizeTimeColumn(formData, query)).toEqual(query);
- });
|