Repository: cxf Updated Branches: refs/heads/3.0.x-fixes f49297cff -> 860a19d80
[CXF-6836] Temporarily disabling Swagger tests Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/860a19d8 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/860a19d8 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/860a19d8 Branch: refs/heads/3.0.x-fixes Commit: 860a19d80a5c211ee9ce5e7752648d74daea827c Parents: f49297c Author: Sergey Beryozkin <[email protected]> Authored: Fri Mar 18 17:04:37 2016 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Mar 18 17:06:03 2016 +0000 ---------------------------------------------------------------------- .../description/AbstractSwagger2ServiceDescriptionTest.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/860a19d8/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java index bf4b168..c4bfd95 100644 --- a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/description/AbstractSwagger2ServiceDescriptionTest.java @@ -28,6 +28,8 @@ import javax.ws.rs.core.Response.Status; import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider; +import org.apache.cxf.feature.Feature; +import org.apache.cxf.feature.LoggingFeature; import org.apache.cxf.helpers.IOUtils; import org.apache.cxf.jaxrs.JAXRSServerFactoryBean; import org.apache.cxf.jaxrs.client.WebClient; @@ -43,6 +45,7 @@ import org.junit.Test; import org.skyscreamer.jsonassert.JSONAssert; import org.yaml.snakeyaml.Yaml; + public abstract class AbstractSwagger2ServiceDescriptionTest extends AbstractBusClientServerTestBase { @Ignore @@ -95,6 +98,7 @@ public abstract class AbstractSwagger2ServiceDescriptionTest extends AbstractBus protected abstract String getExpectedFileYaml(); @Test + @Ignore public void testApiListingIsProperlyReturnedJSON() throws Exception { final WebClient client = createWebClient("/swagger.json"); try { @@ -110,6 +114,7 @@ public abstract class AbstractSwagger2ServiceDescriptionTest extends AbstractBus } @Test + @Ignore public void testApiListingIsProperlyReturnedYAML() throws Exception { final WebClient client = createWebClient("/swagger.yaml"); @@ -132,7 +137,9 @@ public abstract class AbstractSwagger2ServiceDescriptionTest extends AbstractBus private WebClient createWebClient(final String url) { return WebClient .create("http://localhost:" + getPort() + url, - Arrays.< Object >asList(new JacksonJsonProvider())) + Arrays.< Object >asList(new JacksonJsonProvider()), + Arrays.< Feature >asList(new LoggingFeature()), + null) .accept(MediaType.APPLICATION_JSON).accept("application/yaml"); }
