aboutsummaryrefslogtreecommitdiffstats
path: root/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java
diff options
context:
space:
mode:
authorJim Hahn <jrh3@att.com>2019-08-23 18:35:40 -0400
committerJim Hahn <jrh3@att.com>2019-08-23 18:46:14 -0400
commite7fbfd23ef9a03951935509856d3b4d33e5da546 (patch)
tree46acb34764d6eed44ce455b1e25b496331f03ff2 /policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java
parentcf0cd76d63f9eba680a6307dd4a708e7169cb403 (diff)
Rest servers should return 400 for bad syntax JSON
Modified common RestServer to inject an exception handler into the list of providers so that it returns 400 instead of 500 for JSON parsing errors. Change-Id: I7c77625e3531e26413d72cc386296a709946cda2 Issue-ID: POLICY-1725 Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java')
-rw-r--r--policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java101
1 files changed, 100 insertions, 1 deletions
diff --git a/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java b/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java
index 3f671734..fd9b59f7 100644
--- a/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java
+++ b/policy-endpoints/src/test/java/org/onap/policy/common/endpoints/http/server/test/RestServerTest.java
@@ -23,15 +23,29 @@ package org.onap.policy.common.endpoints.http.server.test;
import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
+import java.io.IOException;
+import java.io.PrintWriter;
+import java.net.HttpURLConnection;
+import java.net.URL;
import java.util.Arrays;
+import java.util.Base64;
import java.util.Properties;
import javax.servlet.http.HttpServletRequest;
+import javax.ws.rs.Consumes;
+import javax.ws.rs.POST;
+import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.MediaType;
+import javax.ws.rs.core.Response;
+import lombok.Getter;
+import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
@@ -39,12 +53,15 @@ import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.onap.policy.common.endpoints.http.server.HttpServletServer;
import org.onap.policy.common.endpoints.http.server.HttpServletServerFactory;
+import org.onap.policy.common.endpoints.http.server.JsonExceptionMapper;
import org.onap.policy.common.endpoints.http.server.RestServer;
import org.onap.policy.common.endpoints.http.server.RestServer.Factory;
import org.onap.policy.common.endpoints.http.server.aaf.AafAuthFilter;
import org.onap.policy.common.endpoints.parameters.RestServerParameters;
import org.onap.policy.common.endpoints.properties.PolicyEndPointProperties;
import org.onap.policy.common.gson.GsonMessageBodyHandler;
+import org.onap.policy.common.utils.coder.StandardCoder;
+import org.onap.policy.common.utils.network.NetworkUtil;
import org.powermock.reflect.Whitebox;
public class RestServerTest {
@@ -58,6 +75,7 @@ public class RestServerTest {
private static final String USER = "my-user";
private static Factory saveFactory;
+ private RestServer realRest;
private RestServer rest;
private HttpServletServer server1;
private HttpServletServer server2;
@@ -101,6 +119,18 @@ public class RestServerTest {
when(params.isHttps()).thenReturn(true);
Whitebox.setInternalState(RestServer.class, FACTORY_FIELD, factory);
+
+ realRest = null;
+ }
+
+ /**
+ * Stops the rest server.
+ */
+ @After
+ public void tearDown() {
+ if (realRest != null) {
+ realRest.stop();
+ }
}
@Test
@@ -181,11 +211,59 @@ public class RestServerTest {
assertEquals(PASS, props.getProperty(svcpfx + PolicyEndPointProperties.PROPERTY_HTTP_AUTH_PASSWORD_SUFFIX));
assertEquals("true", props.getProperty(svcpfx + PolicyEndPointProperties.PROPERTY_HTTP_HTTPS_SUFFIX));
assertEquals("true", props.getProperty(svcpfx + PolicyEndPointProperties.PROPERTY_AAF_SUFFIX));
- assertEquals(GsonMessageBodyHandler.class.getName(),
+ assertEquals(String.join(",", GsonMessageBodyHandler.class.getName(), JsonExceptionMapper.class.getName()),
props.getProperty(svcpfx + PolicyEndPointProperties.PROPERTY_HTTP_SERIALIZATION_PROVIDER));
}
@Test
+ public void testInvalidJson() throws Exception {
+ when(params.getHost()).thenReturn("localhost");
+ when(params.getPort()).thenReturn(NetworkUtil.allocPort());
+ when(params.isHttps()).thenReturn(false);
+ when(params.isAaf()).thenReturn(false);
+
+ // use real factory
+ Whitebox.setInternalState(RestServer.class, FACTORY_FIELD, saveFactory);
+
+ realRest = new RestServer(params, null, RealProvider.class) {
+ @Override
+ protected Properties getServerProperties(RestServerParameters restServerParameters, String names) {
+ Properties props = super.getServerProperties(restServerParameters, names);
+
+ String svcpfx = PolicyEndPointProperties.PROPERTY_HTTP_SERVER_SERVICES + "."
+ + restServerParameters.getName();
+ props.setProperty(svcpfx + PolicyEndPointProperties.PROPERTY_HTTP_SWAGGER_SUFFIX, "false");
+
+ return props;
+ }
+ };
+
+ realRest.start();
+ assertTrue(NetworkUtil.isTcpPortOpen(params.getHost(), params.getPort(), 100, 100));
+
+ assertEquals(200, roundTrip(new StandardCoder().encode(new MyRequest())));
+ assertEquals(400, roundTrip("{'bogus-json'"));
+ }
+
+ private int roundTrip(String request) throws IOException {
+ URL url = new URL("http://" + params.getHost() + ":" + params.getPort() + "/request");
+ HttpURLConnection conn = (HttpURLConnection) url.openConnection();
+ conn.setDoInput(true);
+ conn.setDoOutput(true);
+ conn.setRequestMethod("POST");
+ String auth = params.getUserName() + ":" + params.getPassword();
+ conn.setRequestProperty("Authorization", "Basic " + Base64.getEncoder().encodeToString(auth.getBytes()));
+ conn.setRequestProperty("Content-type", MediaType.APPLICATION_JSON);
+ conn.connect();
+
+ try (PrintWriter wtr = new PrintWriter(conn.getOutputStream())) {
+ wtr.write(request);
+ }
+
+ return conn.getResponseCode();
+ }
+
+ @Test
public void testToString() {
rest = new RestServer(params, Filter.class, Provider1.class, Provider2.class);
assertNotNull(rest.toString());
@@ -220,4 +298,25 @@ public class RestServerTest {
// do nothing
}
}
+
+ @Path("/")
+ @Produces(MediaType.APPLICATION_JSON)
+ @Consumes(MediaType.APPLICATION_JSON)
+ public static class RealProvider {
+ @POST
+ @Path("/request")
+ public Response decision(MyRequest body) {
+ return Response.status(Response.Status.OK).entity(new MyResponse()).build();
+ }
+ }
+
+ @Getter
+ public static class MyRequest {
+ private String data;
+ }
+
+ @Getter
+ public static class MyResponse {
+ private String text = "hello";
+ }
}