ee2c10ca4b490cf86a02532a307813f26381f2b4
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / common / baseclient / BaseClientTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.common.baseclient;
22
23 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
24 import static com.github.tomakehurst.wiremock.client.WireMock.get;
25 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
26 import static org.hamcrest.CoreMatchers.equalTo;
27 import static org.junit.Assert.assertThat;
28 import java.util.Map;
29 import javax.ws.rs.core.UriBuilder;
30 import org.junit.Test;
31 import org.onap.so.BaseTest;
32 import org.springframework.core.ParameterizedTypeReference;
33 import wiremock.org.apache.http.entity.ContentType;
34
35
36 public class BaseClientTest extends BaseTest {
37
38     @Test
39     public void verifyString() {
40         BaseClient<String, String> client = new BaseClient<>();
41         String response = "{\"hello\" : \"world\"}";
42         client.setTargetUrl(
43                 UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
44         wireMockServer.stubFor(get(urlEqualTo("/test")).willReturn(aResponse().withStatus(200).withBody(response)
45                 .withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
46
47         String result = client.get("", new ParameterizedTypeReference<String>() {});
48         assertThat(result, equalTo(response));
49     }
50
51     @Test
52     public void verifyMap() {
53         BaseClient<String, Map<String, Object>> client = new BaseClient<>();
54         String response = "{\"hello\" : \"world\"}";
55         client.setTargetUrl(
56                 UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
57         wireMockServer.stubFor(get(urlEqualTo("/test")).willReturn(aResponse().withStatus(200).withBody(response)
58                 .withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
59
60         Map<String, Object> result = client.get("", new ParameterizedTypeReference<Map<String, Object>>() {});
61         assertThat("world", equalTo(result.get("hello")));
62     }
63 }