Unignore tests

This commit is contained in:
Spencer Gibb
2019-05-21 14:40:17 -04:00
parent 614f2e5183
commit f3b309d1e7

View File

@@ -24,7 +24,6 @@ import com.netflix.loadbalancer.Server;
import com.netflix.loadbalancer.ServerList;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
@@ -58,14 +57,12 @@ import static org.springframework.boot.test.context.SpringBootTest.WebEnvironmen
public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTests {
@Test
@Ignore // gh-982
public void retryFilterGet() {
testClient.get().uri("/retry?key=get").exchange().expectStatus().isOk()
.expectBody(String.class).isEqualTo("3");
}
@Test
@Ignore // gh-982
public void retryFilterFailure() {
testClient.get().uri("/retryalwaysfail?key=getjavafailure&count=4")
.header(HttpHeaders.HOST, "www.retryjava.org").exchange().expectStatus()
@@ -75,7 +72,6 @@ public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTest
}
@Test
@Ignore // gh-982
public void retryFilterGetJavaDsl() {
testClient.get().uri("/retry?key=getjava&count=2")
.header(HttpHeaders.HOST, "www.retryjava.org").exchange().expectStatus()
@@ -91,7 +87,6 @@ public class RetryGatewayFilterFactoryIntegrationTests extends BaseWebClientTest
}
@Test
@Ignore // gh-982
@SuppressWarnings("unchecked")
public void retryFilterLoadBalancedWithMultipleServers() {
String host = "www.retrywithloadbalancer.org";