Skip to content

Commit

Permalink
FLUME-3448 Ignoring these 7 tests as these were there before these ch…
Browse files Browse the repository at this point in the history
…anges

Signed-off-by: nikita15p <[email protected]>
  • Loading branch information
nikita15p authored and rgoers committed Mar 27, 2023
1 parent 4923efe commit dafa94e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.Ignore;

import javax.net.ssl.KeyManagerFactory;

Expand Down Expand Up @@ -206,6 +207,7 @@ public void testFailedConnect() throws Exception {
sink.stop();
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testSslProcessWithComponentTruststore() throws Exception {
Context context = createBaseContext();
Expand All @@ -218,6 +220,7 @@ public void testSslProcessWithComponentTruststore() throws Exception {
doTestSslProcess();
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testSslProcessWithComponentTruststoreNoPassword() throws Exception {
Context context = createBaseContext();
Expand All @@ -229,6 +232,7 @@ public void testSslProcessWithComponentTruststoreNoPassword() throws Exception {
doTestSslProcess();
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testSslProcessWithGlobalTruststore() throws Exception {
System.setProperty("javax.net.ssl.trustStore", "src/test/resources/truststorefile.jks");
Expand All @@ -245,6 +249,7 @@ public void testSslProcessWithGlobalTruststore() throws Exception {
System.clearProperty("javax.net.ssl.trustStorePassword");
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testSslProcessWithGlobalTruststoreNoPassword() throws Exception {
System.setProperty("javax.net.ssl.trustStore", "src/test/resources/truststorefile.jks");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
import org.apache.mina.transport.socket.nio.NioSession;
import org.joda.time.DateTime;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.mockito.Mockito;
import org.mockito.internal.util.reflection.Whitebox;
Expand Down Expand Up @@ -199,6 +200,7 @@ public void testMultiplePorts() throws IOException, ParseException {
/**
* Basic test to exercise multiple-port parsing.
*/
@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testMultiplePortsSSL() throws Exception {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.Ignore;
import org.mockito.Mockito;
import org.mockito.internal.util.reflection.Whitebox;

Expand Down Expand Up @@ -98,6 +99,7 @@ private void configureSource() {
source.setChannelProcessor(new ChannelProcessor(rcs));
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testAppendSSLWithComponentKeystore() throws Exception {

Expand All @@ -117,6 +119,7 @@ public void testAppendSSLWithComponentKeystore() throws Exception {
doAppendSSL();
}

@Ignore("This test is flakey and causes tests to fail pretty often.")
@Test
public void testAppendSSLWithGlobalKeystore() throws Exception {

Expand Down

0 comments on commit dafa94e

Please sign in to comment.