Merge "Reorder modifiers"
[so.git] / adapters / mso-catalog-db-adapter / src / test / java / org / openecomp / mso / adapters / catalogdb / catalogrest / QueryServiceMarcoHolderTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.openecomp.mso.adapters.catalogdb.catalogrest;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.io.StringReader;
26 import java.util.ArrayList;
27
28 import javax.json.Json;
29 import javax.json.JsonArray;
30 import javax.json.JsonObject;
31 import javax.json.JsonReader;
32
33 import org.junit.Test;
34 import org.junit.runner.RunWith;
35 import org.mockito.runners.MockitoJUnitRunner;
36 import org.openecomp.mso.db.catalog.beans.NetworkResourceCustomization;
37 import org.openecomp.mso.db.catalog.beans.Service;
38 import org.openecomp.mso.db.catalog.beans.ServiceMacroHolder;
39
40 @RunWith(MockitoJUnitRunner.class)
41 public class QueryServiceMarcoHolderTest {
42
43         @Test
44         public void JSON2_Test()
45         {
46                 Service svc = new Service();
47                 svc.setModelUUID("0cb9b26a-9820-48a7-86e5-16c510e993d9");
48                 svc.setModelName("Testing Model One");
49             ArrayList<NetworkResourceCustomization> paramList;                  
50         paramList = new ArrayList<>();
51         NetworkResourceCustomization d1 = new NetworkResourceCustomization();
52         d1.setNetworkResourceModelUuid("0cb9b26a-9820-48a7-86e5-16c510e993d9");
53         paramList.add(d1);
54                 ServiceMacroHolder ret = new ServiceMacroHolder(svc);
55                 ret.setNetworkResourceCustomization(paramList);
56                 QueryServiceMacroHolder holder = new QueryServiceMacroHolder(ret);
57                 String s = holder.JSON2(true, true); 
58                 
59                 // System.out.println(s);
60
61                 // prepare to inspect response
62         JsonReader reader = Json.createReader(new StringReader(s.replaceAll("\r?\n", "")));
63         JsonObject respObj = reader.readObject();
64         reader.close();
65         JsonObject obj = respObj.getJsonObject("serviceResources");
66         JsonObject obj2 = obj.getJsonObject("modelInfo");
67         String modelName = obj2.getString("modelName");
68         String modelUuid = obj2.getString("modelUuid");
69         
70         assertTrue(modelName.equals("Testing Model One"));
71         assertTrue(modelUuid.equals("0cb9b26a-9820-48a7-86e5-16c510e993d9"));
72         // end          
73         }
74 }