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

Disable SASL Tests for Java versions >22 #29455

Merged
Show file tree
Hide file tree
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 @@ -25,6 +25,7 @@
import java.util.Map;
import java.util.Properties;

import componenttest.annotation.MaximumJavaLevel;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.AfterClass;
Expand Down Expand Up @@ -60,6 +61,7 @@
* Basic test using a kafka broker with TLS enabled
*/
@RunWith(FATRunner.class)
@MaximumJavaLevel(javaLevel = 22)
@CheckpointTest
public class CheckpointKafkaSaslPlainTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.Collections;
import java.util.Map;

import componenttest.annotation.MaximumJavaLevel;
import org.apache.kafka.common.config.SaslConfigs;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
Expand Down Expand Up @@ -48,6 +49,7 @@
* Test the login module with an aes encoded password and configured encryption key
*/
@RunWith(FATRunner.class)
@MaximumJavaLevel(javaLevel = 22)
public class LibertyLoginModuleTest {

private static final String APP_NAME = "kafkaLoginModuleTest";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import java.util.Map;

import componenttest.annotation.MaximumJavaLevel;
import org.apache.kafka.common.config.SaslConfigs;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
Expand All @@ -44,6 +45,7 @@
/**
* Test the login module with an unencoded password - should still work
*/
@MaximumJavaLevel(javaLevel = 22)
@RunWith(FATRunner.class)
public class LibertyLoginModuleNoEncTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import java.util.Map;

import componenttest.annotation.MaximumJavaLevel;
import org.apache.kafka.common.config.SaslConfigs;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
Expand All @@ -44,6 +45,7 @@
/**
* Test the login module with an unencoded password - should still work
*/
@MaximumJavaLevel(javaLevel = 22)
@RunWith(FATRunner.class)
public class LibertyLoginModuleSpecialCharsTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import java.util.Map;

import componenttest.annotation.MaximumJavaLevel;
import org.apache.kafka.common.config.SaslConfigs;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
Expand Down Expand Up @@ -48,6 +49,7 @@
* Test the login module with xor encoded password
*/
@RunWith(FATRunner.class)
@MaximumJavaLevel(javaLevel = 22)
@Mode(TestMode.FULL)
public class LibertyLoginModuleXorTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import static com.ibm.ws.microprofile.reactive.messaging.fat.kafka.common.KafkaUtils.kafkaPermissions;
import static com.ibm.ws.microprofile.reactive.messaging.fat.kafka.common.KafkaUtils.kafkaStopServer;

import componenttest.annotation.MaximumJavaLevel;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.AfterClass;
Expand Down Expand Up @@ -45,6 +46,7 @@
* Basic test using a kafka broker with TLS enabled
*/
@RunWith(FATRunner.class)
@MaximumJavaLevel(javaLevel = 22)
public class KafkaSaslPlainTest {

private static final String APP_NAME = "kafkaSaslTest";
Expand Down