2023-09-08 10:51:59 -05:00
|
|
|
import { e2e } from '../utils';
|
2023-04-18 15:39:30 -05:00
|
|
|
const DASHBOARD_ID = 'ed155665';
|
|
|
|
|
2023-09-13 07:24:20 -05:00
|
|
|
describe('Annotations filtering', () => {
|
|
|
|
beforeEach(() => {
|
2023-09-27 05:33:00 -05:00
|
|
|
e2e.flows.login(Cypress.env('USERNAME'), Cypress.env('PASSWORD'));
|
2023-09-13 07:24:20 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('Tests switching filter type updates the UI accordingly', () => {
|
2023-04-18 15:39:30 -05:00
|
|
|
e2e.flows.openDashboard({ uid: DASHBOARD_ID });
|
|
|
|
|
|
|
|
e2e.components.PageToolbar.item('Dashboard settings').click();
|
|
|
|
e2e.components.Tab.title('Annotations').click();
|
|
|
|
cy.contains('New query').click();
|
|
|
|
e2e.pages.Dashboard.Settings.Annotations.Settings.name().clear().type('Red - Panel two');
|
|
|
|
|
|
|
|
e2e.pages.Dashboard.Settings.Annotations.NewAnnotation.showInLabel()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
// All panels
|
2024-04-24 08:16:19 -05:00
|
|
|
e2e.components.Annotations.annotationsTypeInput().find('input').type('All panels{enter}', { force: true });
|
2023-04-18 15:39:30 -05:00
|
|
|
e2e.components.Annotations.annotationsChoosePanelInput().should('not.exist');
|
|
|
|
|
|
|
|
// All panels except
|
2024-04-24 08:16:19 -05:00
|
|
|
e2e.components.Annotations.annotationsTypeInput()
|
|
|
|
.find('input')
|
|
|
|
.type('All panels except{enter}', { force: true });
|
2023-04-18 15:39:30 -05:00
|
|
|
e2e.components.Annotations.annotationsChoosePanelInput().should('be.visible');
|
|
|
|
|
|
|
|
// Selected panels
|
2024-04-24 08:16:19 -05:00
|
|
|
e2e.components.Annotations.annotationsTypeInput().find('input').type('Selected panels{enter}', { force: true });
|
2023-04-18 15:39:30 -05:00
|
|
|
e2e.components.Annotations.annotationsChoosePanelInput()
|
|
|
|
.should('be.visible')
|
2024-04-24 08:16:19 -05:00
|
|
|
.find('input')
|
|
|
|
.type('Panel two{enter}', { force: true });
|
2023-04-18 15:39:30 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
e2e.pages.Dashboard.Settings.Annotations.NewAnnotation.previewInDashboard().click({ force: true });
|
|
|
|
|
|
|
|
e2e.pages.Dashboard.SubMenu.Annotations.annotationsWrapper()
|
|
|
|
.should('be.visible')
|
|
|
|
.within(() => {
|
|
|
|
e2e.pages.Dashboard.SubMenu.Annotations.annotationLabel('Red - Panel two').should('be.visible');
|
|
|
|
e2e.pages.Dashboard.SubMenu.Annotations.annotationToggle('Red - Panel two')
|
|
|
|
.should('be.checked')
|
|
|
|
.uncheck({ force: true })
|
|
|
|
.should('not.be.checked')
|
|
|
|
.check({ force: true });
|
|
|
|
|
|
|
|
e2e.pages.Dashboard.SubMenu.Annotations.annotationLabel('Red, only panel 1').should('be.visible');
|
|
|
|
e2e.pages.Dashboard.SubMenu.Annotations.annotationToggle('Red, only panel 1').should('be.checked');
|
|
|
|
});
|
|
|
|
|
|
|
|
e2e.components.Panels.Panel.title('Panel one')
|
|
|
|
.should('exist')
|
|
|
|
.within(() => {
|
2023-04-24 13:51:15 -05:00
|
|
|
e2e.pages.Dashboard.Annotations.marker().should('exist').should('have.length', 4);
|
2023-04-18 15:39:30 -05:00
|
|
|
});
|
2023-09-13 07:24:20 -05:00
|
|
|
});
|
2023-04-18 15:39:30 -05:00
|
|
|
});
|