mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* remove code outside of the topnav feature flag * delete NavBar folder * remove topnav toggle from backend * restructure AppChrome folder * fix utils mock * fix applinks tests * remove tests since they're covered in e2e * fix 1 of the approotpage tests * Fix another dashboardpage test * remove reverse portalling + test for plugins using deprecated onNavChanged method * kick drone * handle correlations
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
import { e2e } from '@grafana/e2e';
|
|
|
|
e2e.scenario({
|
|
describeName: 'Templating',
|
|
itName: 'Tests dashboard links and variables in links',
|
|
addScenarioDataSource: false,
|
|
addScenarioDashBoard: false,
|
|
skipScenario: false,
|
|
scenario: () => {
|
|
e2e()
|
|
.intercept({
|
|
method: 'GET',
|
|
url: '/api/search?tag=templating&limit=100',
|
|
})
|
|
.as('tagsTemplatingSearch');
|
|
e2e()
|
|
.intercept({
|
|
method: 'GET',
|
|
url: '/api/search?tag=demo&limit=100',
|
|
})
|
|
.as('tagsDemoSearch');
|
|
|
|
e2e.flows.openDashboard({ uid: 'yBCC3aKGk' });
|
|
|
|
// waiting for network requests first
|
|
e2e().wait(['@tagsTemplatingSearch', '@tagsDemoSearch']);
|
|
|
|
const verifyLinks = (variableValue: string) => {
|
|
e2e.components.DashboardLinks.link()
|
|
.should('be.visible')
|
|
.should((links) => {
|
|
expect(links).to.have.length.greaterThan(13);
|
|
|
|
for (let index = 0; index < links.length; index++) {
|
|
expect(Cypress.$(links[index]).attr('href')).contains(`var-custom=${variableValue}`);
|
|
}
|
|
});
|
|
};
|
|
|
|
e2e.components.DashboardLinks.dropDown().should('be.visible').click().wait('@tagsTemplatingSearch');
|
|
|
|
// verify all links, should have All value
|
|
verifyLinks('All');
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('All').should('be.visible').click();
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('p2').should('be.visible').click();
|
|
|
|
e2e.components.NavToolbar.container().click();
|
|
e2e.components.DashboardLinks.dropDown()
|
|
.scrollIntoView()
|
|
.should('be.visible')
|
|
.click()
|
|
.wait('@tagsTemplatingSearch');
|
|
|
|
// verify all links, should have p2 value
|
|
verifyLinks('p2');
|
|
},
|
|
});
|