/* * Copyright (c) 2016 Network New Technologies Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * You may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.networknt.body; import com.networknt.config.Config; import com.networknt.status.Status; import io.undertow.Handlers; import io.undertow.Undertow; import io.undertow.server.HttpHandler; import io.undertow.server.RoutingHandler; import io.undertow.util.Headers; import io.undertow.util.Methods; import org.apache.commons.io.IOUtils; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.junit.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; /** * Created by steve on 23/09/16. */ public class BodyHandlerTest { static final Logger logger = LoggerFactory.getLogger(BodyHandlerTest.class); static Undertow server = null; @BeforeClass public static void setUp() { if(server == null) { logger.info("starting server"); HttpHandler handler = getTestHandler(); BodyHandler bodyHandler = new BodyHandler(); bodyHandler.setNext(handler); handler = bodyHandler; server = Undertow.builder() .addHttpListener(8080, "localhost") .setHandler(handler) .build(); server.start(); } } @AfterClass public static void tearDown() throws Exception { if(server != null) { try { Thread.sleep(100); } catch (InterruptedException ignored) { } server.stop(); logger.info("The server is stopped."); } } static RoutingHandler getTestHandler() { return Handlers.routing() .add(Methods.GET, "/get", exchange -> { Object body = exchange.getAttachment(BodyHandler.REQUEST_BODY); if(body == null) { exchange.getResponseSender().send("nobody"); } else { exchange.getResponseSender().send("body"); } }) .add(Methods.POST, "/post", exchange -> { Object body = exchange.getAttachment(BodyHandler.REQUEST_BODY); if(body == null) { exchange.getResponseSender().send("nobody"); } else { if(body instanceof List) { exchange.getResponseSender().send("list"); } else { exchange.getResponseSender().send("map"); } } }); } @Test public void testGet() throws Exception { String url = "http://localhost:8080/get"; CloseableHttpClient client = HttpClients.createDefault(); HttpGet httpGet = new HttpGet(url); try { CloseableHttpResponse response = client.execute(httpGet); int statusCode = response.getStatusLine().getStatusCode(); Assert.assertEquals(200, statusCode); if(statusCode == 200) { String s = IOUtils.toString(response.getEntity().getContent(), "utf8"); Assert.assertNotNull(s); Assert.assertEquals("nobody", s); } } catch (Exception e) { e.printStackTrace(); } } @Test public void testPostNonJson() throws Exception { String url = "http://localhost:8080/post"; CloseableHttpClient client = HttpClients.createDefault(); HttpPost httpPost = new HttpPost(url); httpPost.setHeader(Headers.CONTENT_TYPE.toString(), "application/json"); try { StringEntity stringEntity = new StringEntity("post"); httpPost.setEntity(stringEntity); CloseableHttpResponse response = client.execute(httpPost); int statusCode = response.getStatusLine().getStatusCode(); Assert.assertEquals(400, statusCode); if(statusCode == 400) { Status status = Config.getInstance().getMapper().readValue(response.getEntity().getContent(), Status.class); Assert.assertNotNull(status); Assert.assertEquals("ERR10015", status.getCode()); } } catch (Exception e) { e.printStackTrace(); } } @Test public void testPostJsonList() throws Exception { String url = "http://localhost:8080/post"; CloseableHttpClient client = HttpClients.createDefault(); HttpPost httpPost = new HttpPost(url); httpPost.setHeader(Headers.CONTENT_TYPE.toString(), "application/json"); try { StringEntity stringEntity = new StringEntity("[{\"key\":\"value\"}]"); httpPost.setEntity(stringEntity); CloseableHttpResponse response = client.execute(httpPost); int statusCode = response.getStatusLine().getStatusCode(); Assert.assertEquals(200, statusCode); if(statusCode == 200) { String s = IOUtils.toString(response.getEntity().getContent(), "utf8"); Assert.assertNotNull(s); Assert.assertEquals("list", s); } } catch (Exception e) { e.printStackTrace(); } } @Test public void testPostJsonMap() throws Exception { String url = "http://localhost:8080/post"; CloseableHttpClient client = HttpClients.createDefault(); HttpPost httpPost = new HttpPost(url); httpPost.setHeader(Headers.CONTENT_TYPE.toString(), "application/json"); try { StringEntity stringEntity = new StringEntity("{\"key\":\"value\"}"); httpPost.setEntity(stringEntity); CloseableHttpResponse response = client.execute(httpPost); int statusCode = response.getStatusLine().getStatusCode(); Assert.assertEquals(200, statusCode); if(statusCode == 200) { String s = IOUtils.toString(response.getEntity().getContent(), "utf8"); Assert.assertNotNull(s); Assert.assertEquals("map", s); } } catch (Exception e) { e.printStackTrace(); } } @Test public void testPostJsonMapWithoutContentTypeHeader() throws Exception { String url = "http://localhost:8080/post"; CloseableHttpClient client = HttpClients.createDefault(); HttpPost httpPost = new HttpPost(url); try { StringEntity stringEntity = new StringEntity("{\"key\":\"value\"}"); httpPost.setEntity(stringEntity); CloseableHttpResponse response = client.execute(httpPost); int statusCode = response.getStatusLine().getStatusCode(); Assert.assertEquals(200, statusCode); if(statusCode == 200) { String s = IOUtils.toString(response.getEntity().getContent(), "utf8"); Assert.assertNotNull(s); Assert.assertEquals("nobody", s); } } catch (Exception e) { e.printStackTrace(); } } }