Skip to content

Commit cb41144

Browse files
authored
More unsupported locales in Kerberos tests (#113354) (#113485)
This PR adds two more locales to the unsupported set. I got a complete list this time by running through all locales. Relates: #112582 Resolves: #112631 Resolves: #112632 Resolves: #112639
1 parent d798c86 commit cb41144

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

muted-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,6 @@ tests:
166166
- class: org.elasticsearch.xpack.ml.integration.MlJobIT
167167
method: testPutJob_GivenFarequoteConfig
168168
issue: https://github.com/elastic/elasticsearch/issues/112382
169-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
170-
method: testWhenKeyTabWithInvalidContentFailsValidation
171-
issue: https://github.com/elastic/elasticsearch/issues/112631
172-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
173-
method: testValidKebrerosTicket
174-
issue: https://github.com/elastic/elasticsearch/issues/112632
175-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
176-
method: testKerbTicketGeneratedForDifferentServerFailsValidation
177-
issue: https://github.com/elastic/elasticsearch/issues/112639
178169
- class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests
179170
method: test20SecurityNotAutoConfiguredOnReInstallation
180171
issue: https://github.com/elastic/elasticsearch/issues/112635

x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public abstract class KerberosTestCase extends ESTestCase {
6262
*
6363
* Note: several unsupported locales were added in CLDR. #109670 included these below.
6464
*/
65-
private static Set<String> UNSUPPORTED_LOCALE_LANGUAGES = Set.of(
65+
private static final Set<String> UNSUPPORTED_LOCALE_LANGUAGES = Set.of(
6666
"ar",
6767
"ja",
6868
"th",
@@ -88,7 +88,9 @@ public abstract class KerberosTestCase extends ESTestCase {
8888
"sat",
8989
"sa",
9090
"bgc",
91-
"raj"
91+
"raj",
92+
"nqo",
93+
"bho"
9294
);
9395

9496
@BeforeClass

0 commit comments

Comments
 (0)