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

Fixed alerting cypress tests. #1500

Merged
Merged
Show file tree
Hide file tree
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
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);
// });
});
Loading