Skip to content

Commit

Permalink
[8.15] More unsupported locales in Kerberos tests (elastic#113354) (e…
Browse files Browse the repository at this point in the history
…lastic#117237)

* More unsupported locales in Kerberos tests (elastic#113354)

This PR adds two more locales to the unsupported set. I got a complete
list this time by running through all locales.

Relates: elastic#112582 Resolves:
elastic#112631 Resolves:
elastic#112632 Resolves:
elastic#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]>
  • Loading branch information
jfreden and n1v0lg authored Nov 22, 2024
1 parent b10896b commit 9aaaaa5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
9 changes: 0 additions & 9 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,6 @@ tests:
- class: org.elasticsearch.upgrades.FullClusterRestartIT
method: testSnapshotRestore {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/111798
- 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.xpack.security.authc.kerberos.KerberosTicketValidatorTests
method: testWhenKeyTabWithInvalidContentFailsValidation
issue: https://github.com/elastic/elasticsearch/issues/112631
- class: org.elasticsearch.xpack.ml.integration.ClassificationIT
method: testDeleteExpiredData_RemovesUnusedState
issue: https://github.com/elastic/elasticsearch/issues/116234
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> UNSUPPORTED_LOCALE_LANGUAGES = Set.of(
private static final Set<String> UNSUPPORTED_LOCALE_LANGUAGES = Set.of(
"ar",
"ja",
"th",
Expand All @@ -87,7 +87,10 @@ public abstract class KerberosTestCase extends ESTestCase {
"mni",
"sat",
"sa",
"bgc"
"bgc",
"raj",
"nqo",
"bho"
);

@BeforeClass
Expand Down

0 comments on commit 9aaaaa5

Please sign in to comment.