6ff225425942703a48131fe8818fcf3db4299f7a
[policy/models.git] / models-tosca / src / test / java / org / onap / policy / models / tosca / simple / concepts / JpaToscaConstraintTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.simple.concepts;
23
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotEquals;
27 import static org.junit.Assert.assertNotNull;
28
29 import java.util.ArrayList;
30 import java.util.List;
31 import org.junit.Test;
32 import org.onap.policy.models.tosca.authorative.concepts.ToscaConstraint;
33
34 /**
35  * DAO test for ToscaConstraintLogicalString.
36  *
37  * @author Liam Fallon (liam.fallon@est.tech)
38  */
39 public class JpaToscaConstraintTest {
40
41     private static final String CONSTRAINT = "Constraint";
42
43     @Test
44     public void testConstraintLogicalStringPojo() {
45         assertNotNull(new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, CONSTRAINT));
46
47         assertThatThrownBy(() -> new JpaToscaConstraintLogical((JpaToscaConstraintOperation) null, null))
48                 .hasMessageMatching("operation is marked .*on.*ull but is null");
49
50         assertThatThrownBy(() -> new JpaToscaConstraintLogical((JpaToscaConstraintOperation) null, "Hello"))
51                 .hasMessageMatching("operation is marked .*on.*ull but is null");
52
53         assertThatThrownBy(() -> new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, null))
54                 .hasMessageMatching("compareTo is marked .*on.*ull but is null");
55
56         assertNotNull(new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, CONSTRAINT));
57
58         assertEquals(0, new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, "")
59                 .compareTo(new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, "")));
60
61         JpaToscaConstraintOperation op = JpaToscaConstraintOperation.EQ;
62         assertEquals("equal_to", op.getToscaToken());
63
64         List<String> validValues = new ArrayList<>();
65         validValues.add("hello");
66         validValues.add("goodbye");
67         JpaToscaConstraintValidValues cvv0 = new JpaToscaConstraintValidValues(validValues);
68         assertEquals(-1, cvv0.compareTo(null));
69         assertEquals(0, cvv0.compareTo(cvv0));
70         assertNotEquals(0, cvv0.compareTo(new JpaToscaConstraintLogical(JpaToscaConstraintOperation.EQ, CONSTRAINT)));
71         JpaToscaConstraintValidValues cvv1 = new JpaToscaConstraintValidValues(validValues);
72         assertEquals(0, cvv0.compareTo(cvv1));
73
74         cvv1.fromAuthorative(new ToscaConstraint());
75         assertNotNull(cvv1.getValidValues());
76     }
77 }