2023-09-08 10:51:59 -05:00
|
|
|
import { e2e } from '../utils';
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2023-04-03 06:50:43 -05:00
|
|
|
const PANEL_UNDER_TEST = 'Value reducers 1';
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2023-09-13 07:24:20 -05:00
|
|
|
describe('Inspect drawer tests', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
e2e.flows.login(e2e.env('USERNAME'), e2e.env('PASSWORD'));
|
|
|
|
});
|
|
|
|
|
|
|
|
it('Tests various Inspect Drawer scenarios', () => {
|
2020-08-26 03:15:34 -05:00
|
|
|
// @ts-ignore some typing issue
|
2023-09-11 05:20:54 -05:00
|
|
|
cy.on('uncaught:exception', (err) => {
|
2020-08-26 03:15:34 -05:00
|
|
|
if (err.stack?.indexOf("TypeError: Cannot read property 'getText' of null") !== -1) {
|
|
|
|
// On occasion monaco editor will not have the time to be properly unloaded when we change the tab
|
|
|
|
// and then the e2e test fails with the uncaught:exception:
|
|
|
|
// TypeError: Cannot read property 'getText' of null
|
|
|
|
// at Object.ai [as getFoldingRanges] (http://localhost:3001/public/build/monaco-json.worker.js:2:215257)
|
|
|
|
// at e.getFoldingRanges (http://localhost:3001/public/build/monaco-json.worker.js:2:221188)
|
|
|
|
// at e.fmr (http://localhost:3001/public/build/monaco-json.worker.js:2:116605)
|
|
|
|
// at e._handleMessage (http://localhost:3001/public/build/monaco-json.worker.js:2:7414)
|
|
|
|
// at Object.handleMessage (http://localhost:3001/public/build/monaco-json.worker.js:2:7018)
|
|
|
|
// at e._handleMessage (http://localhost:3001/public/build/monaco-json.worker.js:2:5038)
|
|
|
|
// at e.handleMessage (http://localhost:3001/public/build/monaco-json.worker.js:2:4606)
|
|
|
|
// at e.onmessage (http://localhost:3001/public/build/monaco-json.worker.js:2:7097)
|
|
|
|
// at Tt.self.onmessage (http://localhost:3001/public/build/monaco-json.worker.js:2:117109)
|
|
|
|
|
|
|
|
// return false to prevent the error from
|
|
|
|
// failing this test
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2023-04-03 06:50:43 -05:00
|
|
|
e2e.flows.openDashboard({ uid: 'wfTJJL5Wz' });
|
2020-04-24 01:48:04 -05:00
|
|
|
|
|
|
|
// testing opening inspect drawer directly by clicking on Inspect in header menu
|
2023-04-14 02:11:15 -05:00
|
|
|
e2e.flows.openPanelMenuItem(e2e.flows.PanelMenuItems.Inspect, PANEL_UNDER_TEST);
|
2020-04-24 01:48:04 -05:00
|
|
|
|
|
|
|
expectDrawerTabsAndContent();
|
|
|
|
|
|
|
|
expectDrawerClose();
|
|
|
|
|
|
|
|
expectSubMenuScenario('Data');
|
|
|
|
expectSubMenuScenario('Query');
|
|
|
|
expectSubMenuScenario('Panel JSON', 'JSON');
|
|
|
|
|
2023-04-14 02:11:15 -05:00
|
|
|
e2e.flows.openPanelMenuItem(e2e.flows.PanelMenuItems.Edit, PANEL_UNDER_TEST);
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2021-01-20 00:59:48 -06:00
|
|
|
e2e.components.QueryTab.queryInspectorButton().should('be.visible').click();
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2020-04-29 08:41:33 -05:00
|
|
|
e2e.components.Drawer.General.title(`Inspect: ${PANEL_UNDER_TEST}`)
|
2020-04-24 01:48:04 -05:00
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
e2e.components.Tab.title('Query').should('be.visible');
|
|
|
|
// query should be the active tab
|
|
|
|
e2e.components.Tab.active().should('have.text', 'Query');
|
|
|
|
});
|
|
|
|
|
|
|
|
e2e.components.PanelInspector.Query.content().should('be.visible');
|
2023-09-13 07:24:20 -05:00
|
|
|
});
|
2020-04-24 01:48:04 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
const expectDrawerTabsAndContent = () => {
|
2020-04-29 08:41:33 -05:00
|
|
|
e2e.components.Drawer.General.title(`Inspect: ${PANEL_UNDER_TEST}`)
|
2020-04-24 01:48:04 -05:00
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
e2e.components.Tab.title('Data').should('be.visible');
|
|
|
|
// data should be the active tab
|
|
|
|
e2e.components.Tab.active().within((li: JQuery<HTMLLIElement>) => {
|
|
|
|
expect(li.text()).equals('Data');
|
|
|
|
});
|
|
|
|
e2e.components.PanelInspector.Data.content().should('be.visible');
|
2021-01-29 09:01:50 -06:00
|
|
|
e2e.components.PanelInspector.Stats.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Json.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Query.content().should('not.exist');
|
2020-04-24 01:48:04 -05:00
|
|
|
|
|
|
|
// other tabs should also be visible, click on each to see if we get any console errors
|
2021-01-20 00:59:48 -06:00
|
|
|
e2e.components.Tab.title('Stats').should('be.visible').click();
|
2020-04-24 01:48:04 -05:00
|
|
|
e2e.components.PanelInspector.Stats.content().should('be.visible');
|
2021-01-29 09:01:50 -06:00
|
|
|
e2e.components.PanelInspector.Data.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Json.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Query.content().should('not.exist');
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2021-01-20 00:59:48 -06:00
|
|
|
e2e.components.Tab.title('JSON').should('be.visible').click();
|
2020-04-24 01:48:04 -05:00
|
|
|
e2e.components.PanelInspector.Json.content().should('be.visible');
|
2021-01-29 09:01:50 -06:00
|
|
|
e2e.components.PanelInspector.Data.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Stats.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Query.content().should('not.exist');
|
2020-04-24 01:48:04 -05:00
|
|
|
|
2021-01-20 00:59:48 -06:00
|
|
|
e2e.components.Tab.title('Query').should('be.visible').click();
|
2020-06-29 14:17:31 -05:00
|
|
|
|
2020-04-24 01:48:04 -05:00
|
|
|
e2e.components.PanelInspector.Query.content().should('be.visible');
|
2021-01-29 09:01:50 -06:00
|
|
|
e2e.components.PanelInspector.Data.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Stats.content().should('not.exist');
|
|
|
|
e2e.components.PanelInspector.Json.content().should('not.exist');
|
2020-04-24 01:48:04 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const expectDrawerClose = () => {
|
|
|
|
// close using close button
|
|
|
|
e2e.components.Drawer.General.close().click();
|
2021-01-29 09:01:50 -06:00
|
|
|
e2e.components.Drawer.General.title(`Inspect: ${PANEL_UNDER_TEST}`).should('not.exist');
|
2020-04-24 01:48:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const expectSubMenuScenario = (subMenu: string, tabTitle?: string) => {
|
|
|
|
tabTitle = tabTitle ?? subMenu;
|
|
|
|
// testing opening inspect drawer from sub menus under Inspect in header menu
|
2023-09-08 10:51:59 -05:00
|
|
|
e2e.components.Panels.Panel.title(PANEL_UNDER_TEST).scrollIntoView().should('be.visible');
|
2023-04-03 06:50:43 -05:00
|
|
|
e2e.components.Panels.Panel.menu(PANEL_UNDER_TEST).click({ force: true }); // force click because menu is hidden and show on hover
|
2020-04-24 01:48:04 -05:00
|
|
|
// sub menus are in the DOM but not visible and because there is no hover support in Cypress force click
|
|
|
|
// https://github.com/cypress-io/cypress-example-recipes/blob/master/examples/testing-dom__hover-hidden-elements/cypress/integration/hover-hidden-elements-spec.js
|
2023-04-03 06:50:43 -05:00
|
|
|
|
|
|
|
// simulate hover on Inspector menu item to display sub menus
|
|
|
|
e2e.components.Panels.Panel.menuItems('Inspect').trigger('mouseover', { force: true });
|
|
|
|
e2e.components.Panels.Panel.menuItems(subMenu).click({ force: true });
|
2020-04-24 01:48:04 -05:00
|
|
|
|
|
|
|
// data should be the default tab
|
|
|
|
e2e.components.Tab.title(tabTitle).should('be.visible');
|
|
|
|
e2e.components.Tab.active().should('have.text', tabTitle);
|
|
|
|
|
|
|
|
expectDrawerClose();
|
|
|
|
};
|