Skip to content

Commit ae15772

Browse files
authored
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: #112582 Resolves: #112631 Resolves: #112632 Resolves: #112639
1 parent 9a28516 commit ae15772

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
@@ -159,15 +159,6 @@ tests:
159159
- class: org.elasticsearch.xpack.ml.integration.MlJobIT
160160
method: testPutJob_GivenFarequoteConfig
161161
issue: https://github.com/elastic/elasticsearch/issues/112382
162-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
163-
method: testWhenKeyTabWithInvalidContentFailsValidation
164-
issue: https://github.com/elastic/elasticsearch/issues/112631
165-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
166-
method: testValidKebrerosTicket
167-
issue: https://github.com/elastic/elasticsearch/issues/112632
168-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
169-
method: testKerbTicketGeneratedForDifferentServerFailsValidation
170-
issue: https://github.com/elastic/elasticsearch/issues/112639
171162
- class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests
172163
method: test20SecurityNotAutoConfiguredOnReInstallation
173164
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)