Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.16] Unmute Kerberos integ tests (#80538) #80543

Merged
merged 2 commits into from
Nov 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,6 @@ public void testSuppressedOnJDK8u262() {
}

public void testLoginByKeytab() throws IOException, PrivilegedActionException {
assumeFalse(
"This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17".equals(System.getProperty("java.version"))
);
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_KEYTAB_KEY);
final String keytabPath = System.getProperty(TEST_USER_WITH_KEYTAB_PATH_KEY);
Expand All @@ -121,10 +117,6 @@ public void testLoginByKeytab() throws IOException, PrivilegedActionException {
}

public void testLoginByUsernamePassword() throws IOException, PrivilegedActionException {
assumeFalse(
"This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17".equals(System.getProperty("java.version"))
);
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_PWD_KEY);
final String password = System.getProperty(TEST_USER_WITH_PWD_PASSWD_KEY);
Expand All @@ -138,10 +130,6 @@ public void testLoginByUsernamePassword() throws IOException, PrivilegedActionEx
}

public void testGetOauth2TokenInExchangeForKerberosTickets() throws PrivilegedActionException, GSSException, IOException {
assumeFalse(
"This test fails often on Java 17 early access. See: https://github.com/elastic/elasticsearch/issues/72120",
"17".equals(System.getProperty("java.version"))
);
testSuppressedOnJDK8u262();
final String userPrincipalName = System.getProperty(TEST_USER_WITH_PWD_KEY);
final String password = System.getProperty(TEST_USER_WITH_PWD_PASSWD_KEY);
Expand Down