2022-02-02 16:58:56 -06:00
|
|
|
import { e2e } from '@grafana/e2e';
|
2023-01-04 08:59:53 -06:00
|
|
|
import { GrafanaBootConfig } from '@grafana/runtime';
|
2022-02-02 16:58:56 -06:00
|
|
|
|
|
|
|
const PAGE_UNDER_TEST = 'kVi2Gex7z/test-variable-output';
|
2023-01-04 08:59:53 -06:00
|
|
|
const DASHBOARD_NAME = 'Test variable output';
|
2022-02-02 16:58:56 -06:00
|
|
|
|
|
|
|
function fillInCustomVariable(name: string, label: string, value: string) {
|
2022-10-12 03:43:41 -05:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelectV2().within(() => {
|
|
|
|
e2e().get('input').type('Custom{enter}');
|
|
|
|
});
|
2022-02-03 18:55:19 -06:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalNameInputV2().clear().type(name).blur();
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalLabelInputV2().type(label).blur();
|
2022-02-02 16:58:56 -06:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.CustomVariable.customValueInput().type(value).blur();
|
|
|
|
}
|
|
|
|
|
|
|
|
function assertPreviewValues(expectedValues: string[]) {
|
|
|
|
for (const expected of expectedValues) {
|
|
|
|
const index = expectedValues.indexOf(expected);
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.previewOfValuesOption().eq(index).should('have.text', expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Variables - Custom', () => {
|
|
|
|
it('can add a custom template variable', () => {
|
|
|
|
e2e.flows.login('admin', 'admin');
|
|
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
|
|
|
|
|
|
|
// Create a new "Custom" variable
|
|
|
|
e2e.components.CallToActionCard.buttonV2('Add variable').click();
|
|
|
|
fillInCustomVariable('VariableUnderTest', 'Variable under test', 'one,two,three');
|
|
|
|
assertPreviewValues(['one', 'two', 'three']);
|
|
|
|
|
|
|
|
// Navigate back to the homepage and change the selected variable value
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.submitButton().click();
|
2023-01-04 08:59:53 -06:00
|
|
|
e2e()
|
|
|
|
.window()
|
|
|
|
.then((win: Cypress.AUTWindow & { grafanaBootData: GrafanaBootConfig['bootData'] }) => {
|
|
|
|
if (win.grafanaBootData.settings.featureToggles.topnav) {
|
|
|
|
e2e.components.Breadcrumbs.breadcrumb(DASHBOARD_NAME).click();
|
|
|
|
} else {
|
|
|
|
e2e.components.BackButton.backArrow().click({ force: true });
|
|
|
|
}
|
|
|
|
});
|
2022-02-02 16:58:56 -06:00
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('one').click();
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('two').click();
|
|
|
|
|
|
|
|
// Assert it was rendered
|
|
|
|
e2e().get('.markdown-html').should('include.text', 'VariableUnderTest: two');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('can add a custom template variable with labels', () => {
|
|
|
|
e2e.flows.login('admin', 'admin');
|
|
|
|
e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
|
|
|
|
|
|
|
|
// Create a new "Custom" variable
|
|
|
|
e2e.components.CallToActionCard.buttonV2('Add variable').click();
|
2022-10-12 03:43:41 -05:00
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelectV2().within(() => {
|
|
|
|
e2e().get('input').type('Custom{enter}');
|
|
|
|
});
|
2022-02-02 16:58:56 -06:00
|
|
|
|
2022-08-09 03:19:30 -05:00
|
|
|
// Set its name, label, and content
|
2022-02-02 16:58:56 -06:00
|
|
|
fillInCustomVariable('VariableUnderTest', 'Variable under test', 'One : 1,Two : 2, Three : 3');
|
|
|
|
assertPreviewValues(['One', 'Two', 'Three']);
|
|
|
|
|
|
|
|
// Navigate back to the homepage and change the selected variable value
|
|
|
|
e2e.pages.Dashboard.Settings.Variables.Edit.General.submitButton().click();
|
2023-01-04 08:59:53 -06:00
|
|
|
e2e()
|
|
|
|
.window()
|
|
|
|
.then((win: Cypress.AUTWindow & { grafanaBootData: GrafanaBootConfig['bootData'] }) => {
|
|
|
|
if (win.grafanaBootData.settings.featureToggles.topnav) {
|
|
|
|
e2e.components.Breadcrumbs.breadcrumb('Test variable output').click();
|
|
|
|
} else {
|
|
|
|
e2e.components.BackButton.backArrow().click({ force: true });
|
|
|
|
}
|
|
|
|
});
|
2022-02-02 16:58:56 -06:00
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('One').click();
|
|
|
|
e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('Two').click();
|
|
|
|
|
|
|
|
// Assert it was rendered
|
|
|
|
e2e().get('.markdown-html').should('include.text', 'VariableUnderTest: 2');
|
|
|
|
});
|
|
|
|
});
|