From 3efb83851fd2b9b1ffd6d10c9728478e9deffa51 Mon Sep 17 00:00:00 2001 From: Kevin Logan <56395104+kevinlog@users.noreply.github.com> Date: Mon, 31 Jul 2023 13:18:36 -0400 Subject: [PATCH] [Security Solution] Skip file operations tests until ES permissions is fixed (#162787) ## Summary Skip the broken File Operations tests until a permissions issue in ES is fixed: https://github.com/elastic/kibana/issues/162760 ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../cypress/e2e/detection_alerts/cti_enrichments.cy.ts | 3 ++- .../management/cypress/e2e/endpoint/response_console.cy.ts | 3 ++- .../management/cypress/e2e/mocked_data/response_console.cy.ts | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/security_solution/cypress/e2e/detection_alerts/cti_enrichments.cy.ts b/x-pack/plugins/security_solution/cypress/e2e/detection_alerts/cti_enrichments.cy.ts index c14ae488d865d..fc424eb192e05 100644 --- a/x-pack/plugins/security_solution/cypress/e2e/detection_alerts/cti_enrichments.cy.ts +++ b/x-pack/plugins/security_solution/cypress/e2e/detection_alerts/cti_enrichments.cy.ts @@ -47,7 +47,8 @@ describe('CTI Enrichment', () => { goToRuleDetails(); }); - it('Displays enrichment matched.* fields on the timeline', () => { + // Skipped: https://github.com/elastic/kibana/issues/162818 + it.skip('Displays enrichment matched.* fields on the timeline', () => { const expectedFields = { 'threat.enrichments.matched.atomic': indicatorRuleMatchingDoc.atomic, 'threat.enrichments.matched.type': indicatorRuleMatchingDoc.matchedType, diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts index 245de3ce5512c..d2ea69dca1618 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/endpoint/response_console.cy.ts @@ -188,7 +188,8 @@ describe('Response console', () => { }); }); - describe('File operations: get-file and execute', () => { + // Broken until this is fixed: https://github.com/elastic/kibana/issues/162760 + describe.skip('File operations: get-file and execute', () => { const homeFilePath = process.env.CI || true ? '/home/vagrant' : `/home/ubuntu`; const fileContent = 'This is a test file for the get-file command.'; diff --git a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/response_console.cy.ts b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/response_console.cy.ts index dad53207b56e3..fa347d77581ae 100644 --- a/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/response_console.cy.ts +++ b/x-pack/plugins/security_solution/public/management/cypress/e2e/mocked_data/response_console.cy.ts @@ -228,7 +228,8 @@ describe('Response console', () => { }); }); - describe('`get-file` command', () => { + // Broken until this is fixed: https://github.com/elastic/kibana/issues/162760 + describe.skip('`get-file` command', () => { let endpointData: ReturnTypeFromChainable; let endpointHostname: string; let getFileRequestResponse: ActionDetails;