Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-tasks / src / test / java / org / onap / so / client / sdnc / SDNCClientIT.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.client.sdnc;
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.post;
26 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
27 import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching;
28 import java.io.IOException;
29 import java.nio.file.Files;
30 import java.nio.file.Paths;
31 import org.junit.Test;
32 import org.onap.so.BaseIntegrationTest;
33 import org.onap.so.client.exception.BadResponseException;
34 import org.onap.so.client.exception.MapperException;
35 import org.onap.so.client.sdnc.endpoint.SDNCTopology;
36 import org.skyscreamer.jsonassert.JSONAssert;
37
38 public class SDNCClientIT extends BaseIntegrationTest {
39     private final static String JSON_FILE_LOCATION = "src/test/resources/__files/";
40
41     @Test
42     public void getTest() throws BadResponseException, MapperException, IOException {
43         String responseJson =
44                 new String(Files.readAllBytes(Paths.get(JSON_FILE_LOCATION + "SDNCClientGetResponse.json")));
45         String queryLink = "/topologyQuery";
46
47         wireMockServer.stubFor(get(urlEqualTo(queryLink)).willReturn(
48                 aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(responseJson)));
49         String response = SPY_sdncClient.get(queryLink);
50         JSONAssert.assertEquals(responseJson, response, false);
51     }
52
53     @Test(expected = BadResponseException.class)
54     public void post404Test() throws BadResponseException, MapperException, IOException {
55         String responseJson =
56                 new String(Files.readAllBytes(Paths.get(JSON_FILE_LOCATION + "SDNCClientPut404Response.json")));
57
58         String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation/";
59
60         wireMockServer.stubFor(post(urlMatching(queryLink)).willReturn(
61                 aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(responseJson)));
62
63         SPY_sdncClient.post("", SDNCTopology.NETWORK);
64     }
65
66     @Test
67     public void post200Test() throws BadResponseException, MapperException, IOException {
68         String responseJson =
69                 new String(Files.readAllBytes(Paths.get(JSON_FILE_LOCATION + "SDNCClientPut200Response.json")));
70
71         String queryLink = "/restconf/operations/GENERIC-RESOURCE-API:network-topology-operation/";
72
73         wireMockServer.stubFor(post(urlMatching(queryLink)).willReturn(
74                 aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(responseJson)));
75
76         String response = SPY_sdncClient.post("", SDNCTopology.NETWORK);
77         JSONAssert.assertEquals(responseJson, response, true);
78     }
79 }