1be7c652b994a1edccbb7841c5b75c713655b428
[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
29 import java.util.Map;
30
31 import javax.ws.rs.core.UriBuilder;
32
33 import org.junit.Test;
34 import org.onap.so.BaseTest;
35 import org.springframework.core.ParameterizedTypeReference;
36
37 import wiremock.org.apache.http.entity.ContentType;
38
39
40 public class BaseClientTest extends BaseTest {
41
42         @Test
43         public void verifyString() {
44                 BaseClient<String, String> client = new BaseClient<>();
45                 String response = "{\"hello\" : \"world\"}";
46                 client.setTargetUrl(UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
47                 wireMockServer.stubFor(get(urlEqualTo("/test"))
48                 .willReturn(aResponse().withStatus(200).withBody(response).withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
49                 
50                 String result = client.get("", new ParameterizedTypeReference<String>() {});
51                 assertThat(result, equalTo(response));
52         }
53         
54         @Test
55         public void verifyMap() {
56                 BaseClient<String, Map<String, Object>> client = new BaseClient<>();
57                 String response = "{\"hello\" : \"world\"}";
58                 client.setTargetUrl(UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
59                 wireMockServer.stubFor(get(urlEqualTo("/test"))
60                 .willReturn(aResponse().withStatus(200).withBody(response).withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
61                 
62                 Map<String, Object> result = client.get("", new ParameterizedTypeReference<Map<String, Object>>() {});
63                 assertThat("world", equalTo(result.get("hello")));
64         }
65 }