mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
db122e9b2c
* Split suite1 to multiple e2e test suites * Update drone yaml * Add missing arg * Extract cypress install step * Change image on e2e tests step * Sync with main * Add cypress cache volume * Try with grafana/ci-e2e:12.19.0-1 image * Update grabpl version to 2.7.2 * Revert a11y failure back to 'always'
186 lines
7.2 KiB
TypeScript
186 lines
7.2 KiB
TypeScript
import { e2e } from '@grafana/e2e';
|
|
|
|
const PAGE_UNDER_TEST = '-Y-tnEDWk/templating-nested-template-variables';
|
|
|
|
describe('Variables - Add variable', () => {
|
|
it('query variable should be default and default fields should be correct', () => {
|
|
e2e.flows.login('admin', 'admin');
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.List.newButton().should('be.visible').click();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalNameInput()
|
|
.should('be.visible')
|
|
.within((input) => {
|
|
expect(input.attr('placeholder')).equals('name');
|
|
expect(input.val()).equals('query0');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelect()
|
|
.should('be.visible')
|
|
.within((select) => {
|
|
e2e.components.Select.singleValue().should('be.visible').should('have.text', 'Query');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalLabelInput()
|
|
.should('be.visible')
|
|
.within((input) => {
|
|
expect(input.attr('placeholder')).equals('optional display name');
|
|
expect(input.val()).equals('');
|
|
});
|
|
e2e()
|
|
.get('#Description')
|
|
.should('be.visible')
|
|
.within((input) => {
|
|
expect(input.attr('placeholder')).equals('descriptive text');
|
|
expect(input.val()).equals('');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalHideSelect()
|
|
.should('be.visible')
|
|
.within((select) => {
|
|
e2e.components.Select.singleValue().should('have.text', '');
|
|
});
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsDataSourceSelect()
|
|
.should('be.visible')
|
|
.within((select) => {
|
|
e2e.components.Select.singleValue().should('have.text', 'gdev-testdata');
|
|
});
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsRefreshSelect()
|
|
.should('be.visible')
|
|
.within((select) => {
|
|
e2e.components.Select.singleValue().should('have.text', 'On dashboard load');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsRegExInput()
|
|
.should('be.visible')
|
|
.within((input) => {
|
|
const placeholder = '/.*-(?<text>.*)-(?<value>.*)-.*/';
|
|
expect(input.attr('placeholder')).equals(placeholder);
|
|
expect(input.val()).equals('');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsSortSelect()
|
|
.should('be.visible')
|
|
.within((select) => {
|
|
e2e.components.Select.singleValue().should('have.text', 'Disabled');
|
|
});
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsMultiSwitch().should('not.be.checked');
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsIncludeAllSwitch().should('not.be.checked');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.previewOfValuesOption().should('not.exist');
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsCustomAllInput().should('not.exist');
|
|
});
|
|
|
|
it('adding a single value query variable', () => {
|
|
e2e.flows.login('admin', 'admin');
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.List.newButton().should('be.visible').click();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalLabelInput()
|
|
.should('be.visible')
|
|
.clear()
|
|
.type('a label');
|
|
|
|
e2e().get('#Description').should('be.visible').clear().type('a description');
|
|
|
|
e2e.components.DataSourcePicker.inputV2().should('be.visible').type('gdev-testdata{enter}');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsQueryInput()
|
|
.should('be.visible')
|
|
.type('*')
|
|
.blur();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsRegExInput()
|
|
.should('be.visible')
|
|
.type('/.*C.*/')
|
|
.blur();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.previewOfValuesOption().should('exist');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.submitButton().should('be.visible').click();
|
|
|
|
e2e().wait(1500);
|
|
|
|
e2e.components.BackButton.backArrow().should('be.visible').click({ force: true });
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemLabels('a label').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItem()
|
|
.should('have.length', 4)
|
|
.eq(3)
|
|
.within(() => {
|
|
e2e().get('.variable-link-wrapper').should('be.visible').click();
|
|
e2e().wait(500);
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownDropDown()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
e2e().get('.variable-option').should('have.length', 1);
|
|
});
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('C').should('be.visible');
|
|
});
|
|
});
|
|
|
|
it('adding a multi value query variable', () => {
|
|
e2e.flows.login('admin', 'admin');
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.List.newButton().should('be.visible').click();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalLabelInput()
|
|
.should('be.visible')
|
|
.clear()
|
|
.type('a label');
|
|
|
|
e2e().get('#Description').should('be.visible').clear().type('a description');
|
|
|
|
e2e.components.DataSourcePicker.inputV2().should('be.visible').type('gdev-testdata{enter}');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsQueryInput()
|
|
.should('be.visible')
|
|
.type('*')
|
|
.blur();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.QueryVariable.queryOptionsRegExInput()
|
|
.should('be.visible')
|
|
.type('/.*C.*/')
|
|
.blur();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsMultiSwitch()
|
|
.click({ force: true })
|
|
.should('be.checked');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsIncludeAllSwitch()
|
|
.click({ force: true })
|
|
.should('be.checked');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.selectionOptionsCustomAllInput().within((input) => {
|
|
expect(input.attr('placeholder')).equals('blank = auto');
|
|
expect(input.val()).equals('');
|
|
});
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.previewOfValuesOption().should('exist');
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.submitButton().should('be.visible').click();
|
|
|
|
e2e().wait(500);
|
|
|
|
e2e.components.BackButton.backArrow().should('be.visible').click({ force: true });
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemLabels('a label').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItem()
|
|
.should('have.length', 4)
|
|
.eq(3)
|
|
.within(() => {
|
|
e2e().get('.variable-link-wrapper').should('be.visible').click();
|
|
e2e().wait(500);
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownDropDown()
|
|
.should('be.visible')
|
|
.within(() => {
|
|
e2e().get('.variable-option').should('have.length', 2);
|
|
});
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('C').should('be.visible');
|
|
});
|
|
});
|
|
});
|