From 8dd9cb2b3352285237d1019673400833e8df9700 Mon Sep 17 00:00:00 2001 From: Eleftheria Stein Date: Wed, 3 Jun 2020 15:29:59 -0400 Subject: [PATCH] Temporarily ignore RSocket integration tests Issue gh-8643 --- .../security/config/annotation/rsocket/HelloRSocketITests.java | 2 ++ .../rsocket/RSocketMessageHandlerConnectionITests.java | 2 ++ .../config/annotation/rsocket/RSocketMessageHandlerITests.java | 2 ++ .../java/sample/HelloRSocketApplicationITests.java | 2 ++ 4 files changed, 8 insertions(+) diff --git a/config/src/test/java/org/springframework/security/config/annotation/rsocket/HelloRSocketITests.java b/config/src/test/java/org/springframework/security/config/annotation/rsocket/HelloRSocketITests.java index 876e22d2a5f..2f06ce7bec8 100644 --- a/config/src/test/java/org/springframework/security/config/annotation/rsocket/HelloRSocketITests.java +++ b/config/src/test/java/org/springframework/security/config/annotation/rsocket/HelloRSocketITests.java @@ -22,6 +22,7 @@ import io.rsocket.transport.netty.server.TcpServerTransport; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -52,6 +53,7 @@ */ @ContextConfiguration @RunWith(SpringRunner.class) +@Ignore public class HelloRSocketITests { @Autowired RSocketMessageHandler handler; diff --git a/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerConnectionITests.java b/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerConnectionITests.java index 269bcbb9518..4ce7b75ff10 100644 --- a/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerConnectionITests.java +++ b/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerConnectionITests.java @@ -22,6 +22,7 @@ import io.rsocket.transport.netty.server.TcpServerTransport; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -58,6 +59,7 @@ */ @ContextConfiguration @RunWith(SpringRunner.class) +@Ignore public class RSocketMessageHandlerConnectionITests { @Autowired RSocketMessageHandler handler; diff --git a/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerITests.java b/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerITests.java index 19f5e1010ce..d9886c3e799 100644 --- a/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerITests.java +++ b/config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerITests.java @@ -23,6 +23,7 @@ import io.rsocket.transport.netty.server.TcpServerTransport; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -58,6 +59,7 @@ */ @ContextConfiguration @RunWith(SpringRunner.class) +@Ignore public class RSocketMessageHandlerITests { @Autowired RSocketMessageHandler handler; diff --git a/samples/boot/hellorsocket/src/integration-test/java/sample/HelloRSocketApplicationITests.java b/samples/boot/hellorsocket/src/integration-test/java/sample/HelloRSocketApplicationITests.java index 420588c3561..912c1be300d 100644 --- a/samples/boot/hellorsocket/src/integration-test/java/sample/HelloRSocketApplicationITests.java +++ b/samples/boot/hellorsocket/src/integration-test/java/sample/HelloRSocketApplicationITests.java @@ -15,6 +15,7 @@ */ package sample; +import org.junit.Ignore; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.rsocket.context.LocalRSocketServerPort; import org.springframework.boot.test.context.SpringBootTest; @@ -40,6 +41,7 @@ @RunWith(SpringRunner.class) @TestPropertySource(properties = "spring.rsocket.server.port=0") @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) +@Ignore public class HelloRSocketApplicationITests { @Autowired