Browse Source

Run reactive integration tests only as part of performance group

pull/1279/head
Juergen Hoeller 8 years ago
parent
commit
311522bc86
  1. 12
      spring-web/src/test/java/org/springframework/http/server/reactive/AbstractHttpHandlerIntegrationTests.java

12
spring-web/src/test/java/org/springframework/http/server/reactive/AbstractHttpHandlerIntegrationTests.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2015 the original author or authors.
* Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -29,9 +29,10 @@ import org.springframework.http.server.reactive.bootstrap.ReactorHttpServer; @@ -29,9 +29,10 @@ import org.springframework.http.server.reactive.bootstrap.ReactorHttpServer;
import org.springframework.http.server.reactive.bootstrap.RxNettyHttpServer;
import org.springframework.http.server.reactive.bootstrap.TomcatHttpServer;
import org.springframework.http.server.reactive.bootstrap.UndertowHttpServer;
import org.springframework.tests.Assume;
import org.springframework.tests.TestGroup;
import org.springframework.util.SocketUtils;
@RunWith(Parameterized.class)
public abstract class AbstractHttpHandlerIntegrationTests {
@ -56,6 +57,8 @@ public abstract class AbstractHttpHandlerIntegrationTests { @@ -56,6 +57,8 @@ public abstract class AbstractHttpHandlerIntegrationTests {
@Before
public void setup() throws Exception {
Assume.group(TestGroup.PERFORMANCE);
this.port = SocketUtils.findAvailableTcpPort();
this.server.setPort(this.port);
this.server.setHandler(createHttpHandler());
@ -63,11 +66,12 @@ public abstract class AbstractHttpHandlerIntegrationTests { @@ -63,11 +66,12 @@ public abstract class AbstractHttpHandlerIntegrationTests {
this.server.start();
}
protected abstract HttpHandler createHttpHandler();
@After
public void tearDown() throws Exception {
this.server.stop();
}
protected abstract HttpHandler createHttpHandler();
}

Loading…
Cancel
Save