Skip to content

Commit

Permalink
Fixed alerting cypress tests. (#1500)
Browse files Browse the repository at this point in the history
Signed-off-by: AWSHurneyt <[email protected]>
(cherry picked from commit 5ce06df)
  • Loading branch information
AWSHurneyt authored and github-actions[bot] committed Aug 3, 2024
1 parent 7c5e048 commit 4de5f30
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ describe('Bucket-Level Monitors', () => {
cy.get('input[name="name"]').type(SAMPLE_EXTRACTION_QUERY_MONITOR);

// Wait for input to load and then type in the index name
cy.contains('Select clusters');
cy.get('#index').type('*{enter}', { force: true });

// Input extraction query
Expand Down Expand Up @@ -225,6 +226,7 @@ describe('Bucket-Level Monitors', () => {

// Wait for input to load and then type in the index name
// Pressing enter at the end to create combo box entry and trigger change events for time field below
cy.contains('Select clusters');
cy.get('#index').type(`${ALERTING_INDEX.SAMPLE_DATA_ECOMMERCE}{enter}`, {
force: true,
});
Expand Down Expand Up @@ -344,9 +346,7 @@ describe('Bucket-Level Monitors', () => {
cy.contains('Edit').click({ force: true });

// Wait for page to load
// The default admin user for a docker-created domain doesn't have the permissions needed to select clusters. Disabling this check when security is enabled
if (!Cypress.env('SECURITY_ENABLED'))
cy.contains('Select clusters').click({ force: true });
cy.contains('Select clusters');

// Click on the Index field and type in multiple index names to replicate the bug
cy.get('#index')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ describe('Query-Level Monitors', () => {
cy.get('input[name="name"]').type(SAMPLE_MONITOR, { force: true });

// Wait for input to load and then type in the index name
cy.contains('Select clusters');
cy.get('#index').type('*', { force: true });

// Add a trigger
Expand Down Expand Up @@ -212,9 +213,7 @@ describe('Query-Level Monitors', () => {
});

// Wait for page to load
// The default admin user for a docker-created domain doesn't have the permissions needed to select clusters. Disabling this check when security is enabled
if (!Cypress.env('SECURITY_ENABLED'))
cy.contains('Select clusters').click({ force: true });
cy.contains('Select clusters');

// Click on the Index field and type in multiple index names to replicate the bug
cy.get('#index')
Expand Down Expand Up @@ -342,9 +341,7 @@ describe('Query-Level Monitors', () => {
cy.get('[data-test-subj="visualEditorRadioCard"]').click({ force: true });

// Wait for page to load
// The default admin user for a docker-created domain doesn't have the permissions needed to select clusters. Disabling this check when security is enabled
if (!Cypress.env('SECURITY_ENABLED'))
cy.contains('Select clusters').click({ force: true });
cy.contains('Select clusters');

// Wait for input to load and then type in the index name
cy.get('#index').type(
Expand Down Expand Up @@ -482,13 +479,13 @@ describe('Query-Level Monitors', () => {
});
});

after(() => {
// Delete all existing monitors and destinations
cy.deleteAllMonitors();

// Delete sample data
cy.deleteIndexByName(`${ALERTING_INDEX.SAMPLE_DATA_ECOMMERCE}`);
cy.deleteIndexByName(TESTING_INDEX_A);
cy.deleteIndexByName(TESTING_INDEX_B);
});
// after(() => {
// // Delete all existing monitors and destinations
// cy.deleteAllMonitors();
//
// // Delete sample data
// cy.deleteIndexByName(`${ALERTING_INDEX.SAMPLE_DATA_ECOMMERCE}`);
// cy.deleteIndexByName(TESTING_INDEX_A);
// cy.deleteIndexByName(TESTING_INDEX_B);
// });
});

0 comments on commit 4de5f30

Please sign in to comment.