Add plugin to check coverage
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / rest / CloudRegionTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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 package org.onap.aai.rest;
21
22 import com.jayway.jsonpath.JsonPath;
23 import org.junit.Before;
24 import org.junit.Ignore;
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27 import org.junit.runners.Parameterized;
28 import org.onap.aai.AAIJunitRunner;
29 import org.onap.aai.HttpTestUtil;
30 import org.onap.aai.PayloadUtil;
31 import org.onap.aai.exceptions.AAIException;
32 import org.onap.aai.serialization.engines.QueryStyle;
33 import org.skyscreamer.jsonassert.JSONAssert;
34
35 import javax.ws.rs.core.Response;
36 import java.io.IOException;
37 import java.util.Arrays;
38 import java.util.Collection;
39
40 import static org.junit.Assert.assertEquals;
41
42 /**
43  * <b>CloudRegionTest</b> is testing if you put a cloud region with all
44  * children nodes associated to it then you should be able to
45  * remove the cloud region without removing the individual child nodes first
46  */
47 @RunWith(value = AAIJunitRunner.class)
48 public class CloudRegionTest {
49
50     private HttpTestUtil httpTestUtil;
51
52     @Parameterized.Parameter(value = 0)
53     public QueryStyle queryStyle;
54
55     @Parameterized.Parameters(name = "QueryStyle.{0}")
56     public static Collection<Object[]> data() {
57         return Arrays.asList(new Object[][]{
58                 {QueryStyle.TRAVERSAL}
59         });
60     }
61
62     @Before
63     public void setUp(){
64         httpTestUtil = new HttpTestUtil(queryStyle);
65     }
66
67     @Ignore("Test is failing due to the deletion of node with children not correct will be fixed soon")
68     @Test
69     public void testPutWithAllCloudRegionChildrenNodesAndCheckIfDeleteIsSuccessful() throws IOException, AAIException {
70
71         String cloudRegionPayload = PayloadUtil.getResourcePayload("cloud-region-with-all-children.json");
72         String cloudRegionUri = "/aai/v12/cloud-infrastructure/cloud-regions/cloud-region/junit-cloud-owner/junit-cloud-region";
73
74         Response response     = httpTestUtil.doPut(cloudRegionUri, cloudRegionPayload);
75         assertEquals("Expected the cloud region to be created", 201, response.getStatus());
76
77         response = httpTestUtil.doGet(cloudRegionUri);
78         assertEquals("Expected the cloud region to be found", 200, response.getStatus());
79         String jsonResponse = response.getEntity().toString();
80
81         JSONAssert.assertEquals(cloudRegionPayload, jsonResponse, false);
82         String resourceVersion = JsonPath.read(jsonResponse, "$.resource-version");
83
84         response = httpTestUtil.doDelete(cloudRegionUri, resourceVersion);
85         assertEquals("Expected the cloud region to be deleted", 204, response.getStatus());
86     }
87 }