williaster commented on a change in pull request #7233: [dashboard] After update filter, trigger new queries when charts are visible URL: https://github.com/apache/incubator-superset/pull/7233#discussion_r280008389
########## File path: superset/assets/cypress/integration/dashboard/tabs.js ########## @@ -0,0 +1,157 @@ +/** + * 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 { TABBED_DASHBOARD } from './dashboard.helper'; + +export default () => describe('tabs', () => { + let filterId; + let treemapId; + let linechartId; + let boxplotId; + + // cypress can not handle window.scrollTo + // https://github.com/cypress-io/cypress/issues/2761 + // add this exception handler to pass test + const handleException = () => { + // return false to prevent the error from + // failing this test + cy.on('uncaught:exception', () => false); + }; + + beforeEach(() => { + cy.server(); + cy.login(); + + cy.visit(TABBED_DASHBOARD); + + cy.get('#app').then((data) => { + const bootstrapData = JSON.parse(data[0].dataset.bootstrap); + const dashboard = bootstrapData.dashboard_data; + filterId = dashboard.slices.find(slice => (slice.form_data.viz_type === 'filter_box')).slice_id; + boxplotId = dashboard.slices.find(slice => (slice.form_data.viz_type === 'box_plot')).slice_id; + treemapId = dashboard.slices.find(slice => (slice.form_data.viz_type === 'treemap')).slice_id; + linechartId = dashboard.slices.find(slice => (slice.form_data.viz_type === 'line')).slice_id; + + const filterFormdata = { + slice_id: filterId, + }; + const filterRequest = `/superset/explore_json/?form_data=${JSON.stringify(filterFormdata)}`; + cy.route('POST', filterRequest).as('filterRequest'); + + const treemapFormdata = { + slice_id: treemapId, + }; + const treemapRequest = `/superset/explore_json/?form_data=${JSON.stringify(treemapFormdata)}`; + cy.route('POST', treemapRequest).as('treemapRequest'); + + const linechartFormdata = { + slice_id: linechartId, + }; + const linechartRequest = `/superset/explore_json/?form_data=${JSON.stringify(linechartFormdata)}`; + cy.route('POST', linechartRequest).as('linechartRequest'); + + const boxplotFormdata = { + slice_id: boxplotId, + }; + const boxplotRequest = `/superset/explore_json/?form_data=${JSON.stringify(boxplotFormdata)}`; + cy.route('POST', boxplotRequest).as('boxplotRequest'); + }); + }); + + it('should load charts when tab is visible', () => { + // landing in first tab, should see 2 charts + cy.wait('@filterRequest'); + cy.get('.grid-container .filter_box').should('be.exist'); + cy.wait('@treemapRequest'); + cy.get('.grid-container .treemap').should('be.exist'); + cy.get('.grid-container .box_plot').should('not.be.exist'); + cy.get('.grid-container .line').should('not.be.exist'); + + // click row level tab, see 1 more chart + cy.get('.tab-content ul.nav.nav-tabs li') + .last() + .find('.editable-title input') + .click(); + cy.wait('@linechartRequest'); + cy.get('.grid-container .line').should('be.exist'); + + // click top level tab, see 1 more chart + handleException(); + cy.get('.dashboard-component-tabs') + .first() + .find('ul.nav.nav-tabs li') + .last() + .find('.editable-title input') + .click(); + cy.wait('@boxplotRequest'); + cy.get('.grid-container .box_plot').should('be.exist'); + }); + + it('should send new queries when tab becomes visible', () => { + // landing in first tab + cy.wait('@filterRequest'); + cy.wait('@treemapRequest'); + + // creating route and stubbing filtered route + cy.route('POST', '/superset/explore_json/*').as('updatedChartRequest'); + + // apply filter + cy.get('.Select-control') + .first() + .find('input') + .first() + .type('South Asia{enter}', { force: true }); + + // send new query from same tab + cy.wait('@updatedChartRequest') + .then((xhr) => { + const requestFormData = xhr.request.body; + const requestParams = JSON.parse(requestFormData.get('form_data')); + expect(requestParams.extra_filters[0]) + .deep.eq({ col: 'region', op: 'in', val: ['South Asia'] }); + }); + + // click row level tab, send 1 more query Review comment: ditto `"row"`? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
