Rework tosca converter
[clamp.git] / src / test / java / org / onap / clamp / clds / tosca / update / ConstraintTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds.tosca.update;
25
26 import com.google.gson.JsonObject;
27 import java.io.IOException;
28 import java.util.ArrayList;
29 import junit.framework.TestCase;
30 import org.onap.clamp.clds.util.ResourceFileUtil;
31
32 public class ConstraintTest extends TestCase {
33
34     TemplateManagement templateManagement = new TemplateManagement(
35             ResourceFileUtil.getResourceAsString("tosca/new-converter/constraints.yaml"),
36             ResourceFileUtil.getResourceAsString("clds/tosca_update/defaultToscaTypes.yaml"),
37             ResourceFileUtil.getResourceAsString("clds/tosca_update/templates.json"));
38
39     Component component = templateManagement.getComponents().get("onap.datatype.controlloop.Operation");
40
41     public ConstraintTest() throws IOException {
42     }
43
44     /**
45      * Test get value array.
46      */
47     public void testGetValuesArray() {
48         Property property = component.getProperties().get("timeout");
49         Template template = templateManagement.getTemplates().get("integer");
50         JsonObject resultProcess = new JsonObject();
51         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
52                 template);
53         String reference = "{\"enum\":[3,4,5.5,6,10]}";
54         assertEquals(reference, String.valueOf(resultProcess));
55         property = component.getProperties().get("success");
56         template = templateManagement.getTemplates().get("string");
57         resultProcess = new JsonObject();
58         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
59                 template);
60         reference = "{\"enum\":[\"VALID\",\"TERMINATED\"]}";
61         assertEquals(reference, String.valueOf(resultProcess));
62     }
63
64     /**
65      * Test get Specific length.
66      */
67     public void testGetSpecificLength() {
68         //Test for string type, same process for array
69         Property property = component.getProperties().get("id");
70         Template template = templateManagement.getTemplates().get("string");
71         JsonObject resultProcess = new JsonObject();
72         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
73                 template);
74         int specificLength = 8;
75         int toTest = resultProcess.get("minLength").getAsInt();
76         assertEquals(specificLength, toTest);
77         toTest = resultProcess.get("maxLength").getAsInt();
78         assertEquals(specificLength, toTest);
79     }
80
81     /**
82      * Test get limit value.
83      */
84     public void testGetLimitValue() {
85         //Test for array type, same process for string
86         Property property = component.getProperties().get("description");
87         Template template = templateManagement.getTemplates().get("array");
88         JsonObject resultProcess = new JsonObject();
89         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
90                 template);
91
92         int toTest = resultProcess.get("minItems").getAsInt();
93         assertEquals(5, toTest);
94         toTest = resultProcess.get("maxItems").getAsInt();
95         assertEquals(7, toTest);
96     }
97
98 }