Adding rest service for so monitoring
[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 static com.github.tomakehurst.wiremock.client.WireMock.stubFor;
38
39 import wiremock.org.apache.http.entity.ContentType;
40
41
42 public class BaseClientTest extends BaseTest {
43
44         @Test
45         public void verifyString() {
46                 BaseClient<String, String> client = new BaseClient<>();
47                 String response = "{\"hello\" : \"world\"}";
48                 client.setTargetUrl(UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
49                 stubFor(get(urlEqualTo("/test"))
50                 .willReturn(aResponse().withStatus(200).withBody(response).withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
51                 
52                 String result = client.get("", new ParameterizedTypeReference<String>() {});
53                 assertThat(result, equalTo(response));
54         }
55         
56         @Test
57         public void verifyMap() {
58                 BaseClient<String, Map<String, Object>> client = new BaseClient<>();
59                 String response = "{\"hello\" : \"world\"}";
60                 client.setTargetUrl(UriBuilder.fromUri("http://localhost/test").port(Integer.parseInt(wireMockPort)).build().toString());
61                 stubFor(get(urlEqualTo("/test"))
62                 .willReturn(aResponse().withStatus(200).withBody(response).withHeader("Content-Type", ContentType.APPLICATION_JSON.toString())));
63                 
64                 Map<String, Object> result = client.get("", new ParameterizedTypeReference<Map<String, Object>>() {});
65                 assertThat("world", equalTo(result.get("hello")));
66         }
67 }