Skip to content

Commit d5eeec0

Browse files
committed
Temporarily ignore RSocket integration tests
Issue gh-8643
1 parent fd7fe48 commit d5eeec0

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

config/src/test/java/org/springframework/security/config/annotation/rsocket/HelloRSocketITests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import io.rsocket.transport.netty.server.TcpServerTransport;
2323
import org.junit.After;
2424
import org.junit.Before;
25+
import org.junit.Ignore;
2526
import org.junit.Test;
2627
import org.junit.runner.RunWith;
2728
import org.springframework.beans.factory.annotation.Autowired;
@@ -52,6 +53,7 @@
5253
*/
5354
@ContextConfiguration
5455
@RunWith(SpringRunner.class)
56+
@Ignore
5557
public class HelloRSocketITests {
5658
@Autowired
5759
RSocketMessageHandler handler;

config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerConnectionITests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import io.rsocket.transport.netty.server.TcpServerTransport;
2323
import org.junit.After;
2424
import org.junit.Before;
25+
import org.junit.Ignore;
2526
import org.junit.Test;
2627
import org.junit.runner.RunWith;
2728
import org.springframework.beans.factory.annotation.Autowired;
@@ -58,6 +59,7 @@
5859
*/
5960
@ContextConfiguration
6061
@RunWith(SpringRunner.class)
62+
@Ignore
6163
public class RSocketMessageHandlerConnectionITests {
6264
@Autowired
6365
RSocketMessageHandler handler;

config/src/test/java/org/springframework/security/config/annotation/rsocket/RSocketMessageHandlerITests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import io.rsocket.transport.netty.server.TcpServerTransport;
2424
import org.junit.After;
2525
import org.junit.Before;
26+
import org.junit.Ignore;
2627
import org.junit.Test;
2728
import org.junit.runner.RunWith;
2829
import org.springframework.beans.factory.annotation.Autowired;
@@ -58,6 +59,7 @@
5859
*/
5960
@ContextConfiguration
6061
@RunWith(SpringRunner.class)
62+
@Ignore
6163
public class RSocketMessageHandlerITests {
6264
@Autowired
6365
RSocketMessageHandler handler;

samples/boot/hellorsocket/src/integration-test/java/sample/HelloRSocketApplicationITests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616
package sample;
1717

18+
import org.junit.Ignore;
1819
import org.springframework.beans.factory.annotation.Autowired;
1920
import org.springframework.boot.rsocket.context.LocalRSocketServerPort;
2021
import org.springframework.boot.test.context.SpringBootTest;
@@ -40,6 +41,7 @@
4041
@RunWith(SpringRunner.class)
4142
@TestPropertySource(properties = "spring.rsocket.server.port=0")
4243
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
44+
@Ignore
4345
public class HelloRSocketApplicationITests {
4446

4547
@Autowired

0 commit comments

Comments
 (0)