mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 19:54:10 -06:00
4e0c3555df
* adjust drone to run scenes e2e alongside * adjust typo in scenes e2e folder name for consistency * fix select options selector inssue with scenes bump * skip tests in old arch that result in race conditions * skip more flaky tests due to race conditions * skip scenes e2e instead of old arch in case of race condition * update to latest scenes version * skip test due to race conditions * skip flaky race condition test * modify and sign drone pipeline * remove unnecessary edits * resolve merge conflicts and regenerate drone.yml
156 lines
6.0 KiB
TypeScript
156 lines
6.0 KiB
TypeScript
import { e2e } from '../utils';
|
|
|
|
const PAGE_UNDER_TEST = '-Y-tnEDWk/templating-nested-template-variables';
|
|
|
|
describe('Variables - Load options from Url', () => {
|
|
beforeEach(() => {
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
|
});
|
|
|
|
it('default options should be correct', () => {
|
|
e2e.flows.openDashboard({ uid: PAGE_UNDER_TEST });
|
|
cy.intercept({
|
|
method: 'POST',
|
|
pathname: '/api/ds/query*',
|
|
}).as('query');
|
|
|
|
cy.wait('@query');
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('A')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('A').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('B').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('C').should('be.visible');
|
|
|
|
cy.get('body').click(0, 0);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('AA')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AA').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AB').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AC').should('be.visible');
|
|
|
|
cy.get('body').click(0, 0);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('$__all')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AAA').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AAB').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('AAC').should('be.visible');
|
|
});
|
|
|
|
it('options set in url should load correct options', () => {
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&var-datacenter=B&var-server=BB&var-pod=BBB` });
|
|
cy.intercept({
|
|
method: 'POST',
|
|
pathname: '/api/ds/query',
|
|
}).as('query');
|
|
|
|
cy.wait('@query');
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('B')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('A').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('B').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('C').should('be.visible');
|
|
|
|
cy.get('body').click(0, 0);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('BB')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BA').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BB').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BC').should('be.visible');
|
|
|
|
cy.get('body').click(0, 0);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('BBB')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BBA').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BBB').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('BBC').should('be.visible');
|
|
});
|
|
|
|
it('options set in url that do not exist should load correct options', () => {
|
|
// @ts-ignore some typing issue
|
|
cy.on('uncaught:exception', (err) => {
|
|
if (err.stack?.indexOf("Couldn't find any field of type string in the results.") !== -1) {
|
|
// return false to prevent the error from
|
|
// failing this test
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&var-datacenter=X` });
|
|
cy.intercept({
|
|
method: 'POST',
|
|
pathname: '/api/ds/query',
|
|
}).as('query');
|
|
|
|
cy.wait('@query');
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('X')
|
|
.should('be.visible')
|
|
.within(() => {
|
|
cy.get('input').click();
|
|
});
|
|
|
|
e2e.components.Select.option().parent().should('have.length', 9);
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('All').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('A').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('B').should('be.visible');
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('C').should('be.visible');
|
|
|
|
cy.get('body').click();
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('$__all')
|
|
.should('be.visible')
|
|
.should('have.length', 2);
|
|
});
|
|
});
|