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/templates.properties"));
37
38     Component component = templateManagement.getComponents().get("onap.datatype.controlloop.Operation");
39
40     public ConstraintTest() throws IOException {
41     }
42
43     /**
44      *  Test get value array.
45      */
46     public void testGetValuesArray() {
47         Property property = component.getProperties().get("timeout");
48         Template template = templateManagement.getTemplates().get("integer");
49         JsonObject resultProcess = new JsonObject();
50         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
51                 template);
52         String reference = "{\"enum\":[3,4,5.5,6,10]}";
53         assertEquals(reference, String.valueOf(resultProcess));
54         property = component.getProperties().get("success");
55         template = templateManagement.getTemplates().get("string");
56         resultProcess = new JsonObject();
57         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
58                 template);
59         reference = "{\"enum\":[\"VALID\",\"TERMINATED\"]}";
60         assertEquals(reference, String.valueOf(resultProcess));
61     }
62
63     /**
64      * Test get Specific length.
65      */
66     public void testGetSpecificLength() {
67         //Test for string type, same process for array
68         Property property = component.getProperties().get("id");
69         Template template = templateManagement.getTemplates().get("string");
70         JsonObject resultProcess = new JsonObject();
71         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
72                 template);
73         int specificLength = 8;
74         int toTest = resultProcess.get("minLength").getAsInt();
75         assertEquals(specificLength, toTest);
76         toTest = resultProcess.get("maxLength").getAsInt();
77         assertEquals(specificLength, toTest);
78     }
79
80     /**
81      * Test get limit value.
82      */
83     public void testGetLimitValue() {
84         //Test for array type, same process for string
85         Property property = component.getProperties().get("description");
86         Template template = templateManagement.getTemplates().get("array");
87         JsonObject resultProcess = new JsonObject();
88         property.addConstraintsAsJson(resultProcess, (ArrayList<Object>) property.getItems().get("constraints"),
89                 template);
90
91         int toTest = resultProcess.get("minItems").getAsInt();
92         assertEquals(5, toTest);
93         toTest = resultProcess.get("maxItems").getAsInt();
94         assertEquals(7, toTest);
95     }
96
97 }