Skip to content

Commit

Permalink
Fixed alerting cypress tests. (#1500) (#1501)
Browse files Browse the repository at this point in the history
Signed-off-by: AWSHurneyt <[email protected]>
(cherry picked from commit 5ce06df)

Co-authored-by: AWSHurneyt <[email protected]>
  • Loading branch information
opensearch-trigger-bot[bot] and AWSHurneyt authored Aug 4, 2024
1 parent 4194437 commit 1eafc2e
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 1eafc2e

Please sign in to comment.