mirror of
https://github.com/apache/superset.git
synced 2026-04-22 01:24:43 +00:00
* Add integration test for world map * add pie chart * add area * use should for assertion * update area test * update it message * remove null params * add pivot tests * remove urlparams * add dual_line * add sunburst test * add big number * add sankey * add bubble * add box plot * add treemap tests * combine all vis under single test
67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
export default () => describe('Sunburst', () => {
|
|
const SUNBURST_FORM_DATA = {
|
|
datasource: '2__table',
|
|
viz_type: 'sunburst',
|
|
slice_id: 47,
|
|
granularity_sqla: 'year',
|
|
time_grain_sqla: 'P1D',
|
|
time_range: '2011-01-01+:+2011-01-01',
|
|
groupby: ['region'],
|
|
metric: 'sum__SP_POP_TOTL',
|
|
adhoc_filters: [],
|
|
row_limit: 50000,
|
|
color_scheme: 'bnbColors',
|
|
};
|
|
|
|
function verify(formData) {
|
|
cy.visitChartByParams(JSON.stringify(formData));
|
|
cy.verifySliceSuccess({ waitAlias: '@getJson', chartSelector: 'svg' });
|
|
}
|
|
|
|
beforeEach(() => {
|
|
cy.server();
|
|
cy.login();
|
|
cy.route('POST', '/superset/explore_json/**').as('getJson');
|
|
});
|
|
|
|
it('should work without secondary metric', () => {
|
|
verify(SUNBURST_FORM_DATA);
|
|
// There should be 7 visible arcs + 1 hidden
|
|
cy.get('.chart-container svg g#arcs path').should('have.length', 8);
|
|
});
|
|
|
|
it('should work with secondary metric', () => {
|
|
verify({
|
|
...SUNBURST_FORM_DATA,
|
|
secondary_metric: 'sum__SP_RUR_TOTL',
|
|
});
|
|
cy.get('.chart-container svg g#arcs path').should('have.length', 8);
|
|
});
|
|
|
|
it('should work with multiple groupbys', () => {
|
|
verify({
|
|
...SUNBURST_FORM_DATA,
|
|
groupby: ['region', 'country_name'],
|
|
});
|
|
cy.get('.chart-container svg g#arcs path').should('have.length', 118);
|
|
});
|
|
|
|
it('should work with filter', () => {
|
|
verify({
|
|
...SUNBURST_FORM_DATA,
|
|
adhoc_filters: [{
|
|
expressionType: 'SIMPLE',
|
|
subject: 'region',
|
|
operator: 'in',
|
|
comparator: ['South Asia', 'North America'],
|
|
clause: 'WHERE',
|
|
sqlExpression: null,
|
|
fromFormData: true,
|
|
filterOptionName: 'filter_txje2ikiv6_wxmn0qwd1xo',
|
|
}],
|
|
});
|
|
cy.get('.chart-container svg g#arcs path').should('have.length', 3);
|
|
});
|
|
|
|
});
|