baed76b3e86ab0eaf4f56acaf985f55b41191415
[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.AAISetup;
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 = Parameterized.class)
48 public class CloudRegionTest extends AAISetup {
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                 {QueryStyle.TRAVERSAL_URI}
60         });
61     }
62
63     @Before
64     public void setUp(){
65         httpTestUtil = new HttpTestUtil(queryStyle);
66     }
67
68     @Ignore("Test is failing due to the deletion of node with children not correct will be fixed soon")
69     @Test
70     public void testPutWithAllCloudRegionChildrenNodesAndCheckIfDeleteIsSuccessful() throws IOException, AAIException {
71
72         String cloudRegionPayload = PayloadUtil.getResourcePayload("cloud-region-with-all-children.json");
73         String cloudRegionUri = "/aai/v12/cloud-infrastructure/cloud-regions/cloud-region/junit-cloud-owner/junit-cloud-region";
74
75         Response response     = httpTestUtil.doPut(cloudRegionUri, cloudRegionPayload);
76         assertEquals("Expected the cloud region to be created", 201, response.getStatus());
77
78         response = httpTestUtil.doGet(cloudRegionUri);
79         assertEquals("Expected the cloud region to be found", 200, response.getStatus());
80         String jsonResponse = response.getEntity().toString();
81
82         JSONAssert.assertEquals(cloudRegionPayload, jsonResponse, false);
83         String resourceVersion = JsonPath.read(jsonResponse, "$.resource-version");
84
85         response = httpTestUtil.doDelete(cloudRegionUri, resourceVersion);
86         assertEquals("Expected the cloud region to be deleted", 204, response.getStatus());
87     }
88 }