From 188959a2ee43eed7af31f49f5c141f00682a5c2f Mon Sep 17 00:00:00 2001 From: Nikolaj Volgushev Date: Tue, 24 Sep 2024 18:21:50 +0200 Subject: [PATCH] More unsupported locales in Kerberos tests (#113354) This PR adds two more locales to the unsupported set. I got a complete list this time by running through all locales. Relates: https://github.com/elastic/elasticsearch/pull/112582 Resolves: https://github.com/elastic/elasticsearch/issues/112631 Resolves: https://github.com/elastic/elasticsearch/issues/112632 Resolves: https://github.com/elastic/elasticsearch/issues/112639 --- muted-tests.yml | 9 --------- .../xpack/security/authc/kerberos/KerberosTestCase.java | 6 ++++-- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 20863a6f6349d..0a00fb931617d 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -166,15 +166,6 @@ tests: - class: org.elasticsearch.xpack.ml.integration.MlJobIT method: testPutJob_GivenFarequoteConfig issue: https://github.com/elastic/elasticsearch/issues/112382 -- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests - method: testWhenKeyTabWithInvalidContentFailsValidation - issue: https://github.com/elastic/elasticsearch/issues/112631 -- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests - method: testValidKebrerosTicket - issue: https://github.com/elastic/elasticsearch/issues/112632 -- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests - method: testKerbTicketGeneratedForDifferentServerFailsValidation - issue: https://github.com/elastic/elasticsearch/issues/112639 - class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests method: test20SecurityNotAutoConfiguredOnReInstallation issue: https://github.com/elastic/elasticsearch/issues/112635 diff --git a/x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java b/x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java index 229b6e2a8f92d..261bc567d5c91 100644 --- a/x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java +++ b/x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java @@ -62,7 +62,7 @@ public abstract class KerberosTestCase extends ESTestCase { * * Note: several unsupported locales were added in CLDR. #109670 included these below. */ - private static Set UNSUPPORTED_LOCALE_LANGUAGES = Set.of( + private static final Set UNSUPPORTED_LOCALE_LANGUAGES = Set.of( "ar", "ja", "th", @@ -88,7 +88,9 @@ public abstract class KerberosTestCase extends ESTestCase { "sat", "sa", "bgc", - "raj" + "raj", + "nqo", + "bho" ); @BeforeClass