| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- /**
- * 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 { interceptChart } from 'cypress/utils';
- describe('Visualization > Big Number with Trendline', () => {
- beforeEach(() => {
- interceptChart({ legacy: false }).as('chartData');
- });
- const BIG_NUMBER_FORM_DATA = {
- datasource: '2__table',
- viz_type: 'big_number',
- slice_id: 42,
- granularity_sqla: 'year',
- time_grain_sqla: 'P1D',
- time_range: '2000 : 2014-01-02',
- metric: 'sum__SP_POP_TOTL',
- adhoc_filters: [],
- compare_lag: '10',
- compare_suffix: 'over 10Y',
- y_axis_format: '.3s',
- show_trend_line: true,
- start_y_axis_at_zero: true,
- color_picker: {
- r: 0,
- g: 122,
- b: 135,
- a: 1,
- },
- };
- function verify(formData) {
- cy.visitChartByParams(formData);
- cy.verifySliceSuccess({
- waitAlias: '@chartData',
- chartSelector: '.superset-legacy-chart-big-number',
- });
- }
- it('should work', () => {
- verify(BIG_NUMBER_FORM_DATA);
- cy.get('.chart-container .header-line');
- cy.get('.chart-container canvas');
- });
- it('should work without subheader', () => {
- verify({
- ...BIG_NUMBER_FORM_DATA,
- compare_lag: null,
- });
- cy.get('.chart-container .header-line');
- cy.get('.chart-container .subtitle-line').should('not.exist');
- cy.get('.chart-container canvas');
- });
- it('should not render trendline when hidden', () => {
- verify({
- ...BIG_NUMBER_FORM_DATA,
- show_trend_line: false,
- });
- cy.get('[data-test="chart-container"] .header-line');
- cy.get('[data-test="chart-container"] canvas').should('not.exist');
- });
- });
|