From 5d1ed2592d59fef7b30a79984410e7593af0cca6 Mon Sep 17 00:00:00 2001 From: elena-shostak <165678770+elena-shostak@users.noreply.github.com> Date: Mon, 8 Jul 2024 13:17:23 +0200 Subject: [PATCH] Disabled http2 FTR configs for saml and oidc (#187462) ## Summary Since initial tests were flaky only for http2 configuration, disabled its FTR configs for saml and oidc (see https://github.com/elastic/kibana/issues/186780, https://github.com/elastic/kibana/issues/186780). Unskiped the original test. ### 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: Elastic Machine --- .buildkite/ftr_configs.yml | 6 ++++-- x-pack/test/security_functional/tests/oidc/url_capture.ts | 3 +-- x-pack/test/security_functional/tests/saml/url_capture.ts | 3 +-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml index 730b3aa460f4b1..e0faadd77091c6 100644 --- a/.buildkite/ftr_configs.yml +++ b/.buildkite/ftr_configs.yml @@ -91,6 +91,10 @@ disabled: - x-pack/test_serverless/api_integration/test_suites/security/config.feature_flags.ts - x-pack/test_serverless/functional/test_suites/security/config.feature_flags.ts + # http/2 security muted tests + - x-pack/test/security_functional/saml.http2.config.ts + - x-pack/test/security_functional/oidc.http2.config.ts + defaultQueue: 'n2-4-spot' enabled: - test/accessibility/config.ts @@ -401,8 +405,6 @@ enabled: - x-pack/test/security_functional/login_selector.config.ts - x-pack/test/security_functional/oidc.config.ts - x-pack/test/security_functional/saml.config.ts - - x-pack/test/security_functional/saml.http2.config.ts - - x-pack/test/security_functional/oidc.http2.config.ts - x-pack/test/security_functional/insecure_cluster_warning.config.ts - x-pack/test/security_functional/user_profiles.config.ts - x-pack/test/security_functional/expired_session.config.ts diff --git a/x-pack/test/security_functional/tests/oidc/url_capture.ts b/x-pack/test/security_functional/tests/oidc/url_capture.ts index 359034681b6d35..6553ef193fc3b6 100644 --- a/x-pack/test/security_functional/tests/oidc/url_capture.ts +++ b/x-pack/test/security_functional/tests/oidc/url_capture.ts @@ -16,8 +16,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const testSubjects = getService('testSubjects'); const PageObjects = getPageObjects(['common']); - // Failing: See https://github.com/elastic/kibana/issues/186780 - describe.skip('URL capture', function () { + describe('URL capture', function () { this.tags('includeFirefox'); before(async () => { diff --git a/x-pack/test/security_functional/tests/saml/url_capture.ts b/x-pack/test/security_functional/tests/saml/url_capture.ts index 71b62eb2b2aa3f..0193d3d8707013 100644 --- a/x-pack/test/security_functional/tests/saml/url_capture.ts +++ b/x-pack/test/security_functional/tests/saml/url_capture.ts @@ -16,8 +16,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const testSubjects = getService('testSubjects'); const PageObjects = getPageObjects(['common']); - // Failing: See https://github.com/elastic/kibana/issues/186675 - describe.skip('URL capture', function () { + describe('URL capture', function () { this.tags('includeFirefox'); before(async () => {