Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for reporting integ test failures 2.15 #1531

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 84 additions & 5 deletions cypress/integration/plugins/reports-dashboards/02-edit.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,24 @@ describe('Cypress', () => {

cy.wait(12500);

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/dashboard`
).as('dashboard');

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/visualization`
).as('visualization');

cy.intercept('GET', `${BASE_PATH}/api/reporting/getReportSource/search`).as(
'search'
);

cy.intercept('GET', `${BASE_PATH}/api/observability/notebooks/`).as(
'notebook'
);

cy.get('#reportDefinitionDetailsLink').first().click({ force: true });

cy.get('#editReportDefinitionButton').should('exist');
Expand All @@ -26,14 +44,23 @@ describe('Cypress', () => {
cy.url().should('include', 'edit');

cy.wait(1000);
cy.wait('@dashboard');
cy.wait('@visualization');
cy.wait('@search');
cy.wait('@notebook');

// update the report name
cy.get('#reportSettingsName').type(' update name');
cy.get('#reportSettingsName').type('{selectall}{backspace} update name');

// update report description
cy.get('#reportSettingsDescription').type(' update description');
cy.get('#reportSettingsDescription').type(
'{selectall}{backspace} update description'
);

cy.get('#editReportDefinitionButton').click({ force: true });
cy.get('#editReportDefinitionButton')
.contains('Save Changes')
.trigger('mouseover')
.click({ force: true });

cy.wait(12500);

Expand All @@ -52,6 +79,24 @@ describe('Cypress', () => {

cy.wait(12500);

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/dashboard`
).as('dashboard');

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/visualization`
).as('visualization');

cy.intercept('GET', `${BASE_PATH}/api/reporting/getReportSource/search`).as(
'search'
);

cy.intercept('GET', `${BASE_PATH}/api/observability/notebooks/`).as(
'notebook'
);

cy.get('#reportDefinitionDetailsLink').first().click();

cy.get('#editReportDefinitionButton').should('exist');
Expand All @@ -61,12 +106,20 @@ describe('Cypress', () => {
cy.url().should('include', 'edit');

cy.wait(1000);

cy.wait('@dashboard');
cy.wait('@visualization');
cy.wait('@search');
cy.wait('@notebook');
cy.get('#reportDefinitionTriggerTypes > div:nth-child(2)').click({
force: true,
});

cy.get('#Schedule').check({ force: true });
cy.get('#editReportDefinitionButton').click({ force: true });
cy.get('#editReportDefinitionButton')
.contains('Save Changes')
.trigger('mouseover')
.click({ force: true });

cy.wait(12500);

Expand All @@ -85,6 +138,24 @@ describe('Cypress', () => {

cy.wait(12500);

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/dashboard`
).as('dashboard');

cy.intercept(
'GET',
`${BASE_PATH}/api/reporting/getReportSource/visualization`
).as('visualization');

cy.intercept('GET', `${BASE_PATH}/api/reporting/getReportSource/search`).as(
'search'
);

cy.intercept('GET', `${BASE_PATH}/api/observability/notebooks/`).as(
'notebook'
);

cy.get('#reportDefinitionDetailsLink').first().click();

cy.get('#editReportDefinitionButton').should('exist');
Expand All @@ -95,11 +166,19 @@ describe('Cypress', () => {

cy.wait(1000);

cy.wait('@dashboard');
cy.wait('@visualization');
cy.wait('@search');
cy.wait('@notebook');

cy.get('#reportDefinitionTriggerTypes > div:nth-child(1)').click({
force: true,
});

cy.get('#editReportDefinitionButton').click({ force: true });
cy.get('#editReportDefinitionButton')
.contains('Save Changes')
.trigger('mouseover')
.click({ force: true });

cy.wait(12500);

Expand Down
Loading