Add support comparable type constraints for scalar values
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / constraints / ConstraintUtilTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.sdc.be.model.tosca.constraints;
22
23 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertThrows;
26 import static org.junit.jupiter.api.Assertions.assertTrue;
27
28 import com.fasterxml.jackson.core.type.TypeReference;
29 import java.util.List;
30 import org.junit.jupiter.api.Test;
31 import org.openecomp.sdc.be.model.tosca.ToscaType;
32 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
33
34 class ConstraintUtilTest {
35
36     @Test
37     void testCheckStringType() throws Exception {
38         assertDoesNotThrow(() -> ConstraintUtil.checkStringType(ToscaType.STRING));
39         assertThrows(ConstraintValueDoNotMatchPropertyTypeException.class, () -> ConstraintUtil.checkStringType(ToscaType.SCALAR_UNIT));
40     }
41
42     @Test
43     void testCheckComparableType() throws Exception {
44         assertDoesNotThrow(() -> ConstraintUtil.checkComparableType(ToscaType.INTEGER));
45         assertThrows(ConstraintValueDoNotMatchPropertyTypeException.class, () -> ConstraintUtil.checkComparableType(ToscaType.SCALAR_UNIT));
46     }
47
48     @Test
49     void testConvertToComparable() throws Exception {
50         assertTrue(ConstraintUtil.convertToComparable(ToscaType.BOOLEAN, "true") instanceof Comparable);
51         assertThrows(IllegalArgumentException.class, () -> ConstraintUtil.convertToComparable(ToscaType.SCALAR_UNIT, "value"));
52     }
53
54     @Test
55     void testParseToCollection() throws Exception {
56         List<Object> list = ConstraintUtil.parseToCollection("[\"color\",\"type\"]", new TypeReference<List<Object>>() {
57         });
58         assertTrue(list instanceof List);
59         assertEquals(2, list.size());
60
61         assertThrows(ConstraintValueDoNotMatchPropertyTypeException.class,
62             () -> ConstraintUtil.parseToCollection("", new TypeReference<List<Object>>() {
63             }));
64     }
65
66 }