Skip to content

Commit 9aaaaa5

Browse files
jfredenn1v0lg
andauthored
[8.15] More unsupported locales in Kerberos tests (#113354) (#117237)
* 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 (cherry picked from commit ae15772) # Conflicts: # muted-tests.yml # x-pack/qa/evil-tests/src/test/java/org/elasticsearch/xpack/security/authc/kerberos/KerberosTestCase.java * fixup! Merge issue --------- Co-authored-by: Nikolaj Volgushev <[email protected]>
1 parent b10896b commit 9aaaaa5

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

muted-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,6 @@ tests:
6363
- class: org.elasticsearch.upgrades.FullClusterRestartIT
6464
method: testSnapshotRestore {cluster=UPGRADED}
6565
issue: https://github.com/elastic/elasticsearch/issues/111798
66-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
67-
method: testValidKebrerosTicket
68-
issue: https://github.com/elastic/elasticsearch/issues/112632
69-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
70-
method: testKerbTicketGeneratedForDifferentServerFailsValidation
71-
issue: https://github.com/elastic/elasticsearch/issues/112639
72-
- class: org.elasticsearch.xpack.security.authc.kerberos.KerberosTicketValidatorTests
73-
method: testWhenKeyTabWithInvalidContentFailsValidation
74-
issue: https://github.com/elastic/elasticsearch/issues/112631
7566
- class: org.elasticsearch.xpack.ml.integration.ClassificationIT
7667
method: testDeleteExpiredData_RemovesUnusedState
7768
issue: https://github.com/elastic/elasticsearch/issues/116234

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

Lines changed: 5 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",
@@ -87,7 +87,10 @@ public abstract class KerberosTestCase extends ESTestCase {
8787
"mni",
8888
"sat",
8989
"sa",
90-
"bgc"
90+
"bgc",
91+
"raj",
92+
"nqo",
93+
"bho"
9194
);
9295

9396
@BeforeClass

0 commit comments

Comments
 (0)