mirror of
https://github.com/getredash/redash.git
synced 2026-03-22 01:00:14 -04:00
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
/* global cy */
|
|
|
|
import { createQuery } from '../../support/redash-api';
|
|
|
|
describe('Edit visualization dialog', () => {
|
|
beforeEach(() => {
|
|
cy.login();
|
|
createQuery().then(({ id }) => {
|
|
cy.visit(`queries/${id}/source`);
|
|
cy.getByTestId('ExecuteButton').click();
|
|
});
|
|
});
|
|
|
|
it('opens New Visualization dialog', () => {
|
|
cy.getByTestId('NewVisualization').should('exist').click();
|
|
cy.getByTestId('EditVisualizationDialog').should('exist');
|
|
// Default visualization should be selected
|
|
cy.getByTestId('VisualizationType').should('exist').should('contain', 'Chart');
|
|
cy.getByTestId('VisualizationName').should('exist').should('have.value', 'Chart');
|
|
});
|
|
|
|
it('opens Edit Visualization dialog', () => {
|
|
cy.getByTestId('EditVisualization').click();
|
|
cy.getByTestId('EditVisualizationDialog').should('exist');
|
|
// Default `Table` visualization should be selected
|
|
cy.getByTestId('VisualizationType').should('exist').should('contain', 'Table');
|
|
cy.getByTestId('VisualizationName').should('exist').should('have.value', 'Table');
|
|
});
|
|
|
|
it('creates visualization with custom name', () => {
|
|
const visualizationName = 'Custom name';
|
|
|
|
cy.clickThrough(`
|
|
NewVisualization
|
|
VisualizationType
|
|
VisualizationType.TABLE
|
|
`);
|
|
|
|
cy.getByTestId('VisualizationName').clear().type(visualizationName);
|
|
|
|
cy.getByTestId('EditVisualizationDialog').contains('button', 'Save').click();
|
|
cy.getByTestId('QueryPageVisualizationTabs').contains('li', visualizationName).should('exist');
|
|
});
|
|
});
|