2023-09-08 16:51:59 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								import { e2e } from '../utils';
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								const PAGE_UNDER_TEST = 'kVi2Gex7z/test-variable-output';
							 | 
						
					
						
							
								
									
										
										
										
											2023-04-11 10:51:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								const DASHBOARD_NAME = 'Test variable output';
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								function fillInCustomVariable(name: string, label: string, value: string) {
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-12 09:43:41 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelectV2().within(() => {
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    cy.get('input').type('Custom{enter}');
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-12 09:43:41 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  });
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-04 11:55:19 +11: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-03 09:58:56 +11: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', () => {
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-13 13:24:20 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  beforeEach(() => {
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-27 11:33:00 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-13 13:24:20 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  });
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  it('can add a custom template variable', () => {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    cy.contains(DASHBOARD_NAME).should('be.visible');
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // 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-04-14 09:43:11 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.Settings.Actions.close().click();
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('one').click();
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('two').click();
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // Assert it was rendered
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    cy.get('.markdown-html').should('include.text', 'VariableUnderTest: two');
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  });
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  it('can add a custom template variable with labels', () => {
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.flows.openDashboard({ uid: `${PAGE_UNDER_TEST}?orgId=1&editview=templating` });
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    cy.contains(DASHBOARD_NAME).should('be.visible');
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // Create a new "Custom" variable
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.components.CallToActionCard.buttonV2('Add variable').click();
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-12 09:43:41 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.Settings.Variables.Edit.General.generalTypeSelectV2().within(() => {
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								      cy.get('input').type('Custom{enter}');
							 | 
						
					
						
							
								
									
										
										
										
											2022-10-12 09:43:41 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    });
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2022-08-09 10:19:30 +02:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    // Set its name, label, and content
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11: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-04-14 09:43:11 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.Settings.Actions.close().click();
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownValueLinkTexts('One').click();
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    e2e.pages.Dashboard.SubMenu.submenuItemValueDropDownOptionTexts('Two').click();
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    // Assert it was rendered
							 | 
						
					
						
							
								
									
										
										
										
											2023-09-11 11:20:54 +01:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    cy.get('.markdown-html').should('include.text', 'VariableUnderTest: 2');
							 | 
						
					
						
							
								
									
										
										
										
											2022-02-03 09:58:56 +11:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  });
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								});
							 |