2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2019 Nordix Foundation.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.models.tosca.simple.concepts;
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertTrue;
27 import static org.junit.Assert.fail;
29 import org.junit.Test;
30 import org.onap.policy.models.base.PfConceptKey;
31 import org.onap.policy.models.base.PfReferenceKey;
32 import org.onap.policy.models.base.PfValidationResult;
33 import org.onap.policy.models.tosca.simple.concepts.ToscaConstraintLogicalString;
36 * DAO test for ToscaConstraintLogicalString.
38 * @author Liam Fallon (liam.fallon@est.tech)
40 public class ToscaConstraintLogicalStringTest {
43 public void testConstraintLogicalStringPojo() {
44 assertNotNull(new ToscaConstraintLogicalString());
45 assertNotNull(new ToscaConstraintLogicalString(new PfReferenceKey()));
46 assertNotNull(new ToscaConstraintLogicalString(new PfReferenceKey(), ToscaConstraintLogicalString.Operation.EQ,
50 new ToscaConstraintLogicalString((PfReferenceKey) null);
51 fail("test should throw an exception");
52 } catch (Exception exc) {
53 assertEquals("key is marked @NonNull but is null", exc.getMessage());
57 new ToscaConstraintLogicalString((ToscaConstraintLogicalString) null);
58 fail("test should throw an exception");
59 } catch (Exception exc) {
60 assertEquals("copyConcept is marked @NonNull but is null", exc.getMessage());
63 PfConceptKey tclParentKey = new PfConceptKey("tParentKey", "0.0.1");
64 PfReferenceKey tclKey = new PfReferenceKey(tclParentKey, "trigger0");
65 ToscaConstraintLogicalString tcl =
66 new ToscaConstraintLogicalString(tclKey, ToscaConstraintLogicalString.Operation.EQ, "Constraint");
69 new ToscaConstraintLogicalString(tcl);
70 fail("test should throw an exception");
71 } catch (Exception exc) {
72 assertEquals("cannot copy an immutable constraint", exc.getMessage());
75 ToscaConstraintLogicalString tclClone1 = new ToscaConstraintLogicalString();
77 tcl.copyTo(tclClone1);
78 fail("test should throw an exception");
79 } catch (Exception exc) {
80 assertEquals("cannot copy an immutable constraint", exc.getMessage());
82 tclClone1 = new ToscaConstraintLogicalString(tclKey, ToscaConstraintLogicalString.Operation.EQ, "Constraint");
84 assertEquals(tcl, tclClone1);
85 assertEquals(0, tcl.compareTo(tclClone1));
87 assertEquals(-1, tcl.compareTo(null));
88 assertEquals(0, tcl.compareTo(tcl));
89 assertFalse(tcl.compareTo(tcl.getKey()) == 0);
91 ToscaConstraintLogicalString differentTcl = new ToscaConstraintLogicalString(new PfReferenceKey(),
92 ToscaConstraintLogicalString.Operation.EQ, "Constraint");
93 assertFalse(tcl.compareTo(differentTcl) == 0);
95 ToscaConstraintLogicalString otherTc =
96 new ToscaConstraintLogicalString(tclKey, ToscaConstraintLogicalString.Operation.EQ, "Constraint");
97 assertEquals(0, tcl.compareTo(otherTc));
101 fail("test should throw an exception");
102 } catch (Exception exc) {
103 assertEquals("target is marked @NonNull but is null", exc.getMessage());
106 assertEquals(1, tcl.getKeys().size());
107 assertEquals(1, new ToscaConstraintLogicalString().getKeys().size());
109 new ToscaConstraintLogicalString().clean();
111 assertEquals(tclClone1, tcl);
113 assertFalse(new ToscaConstraintLogicalString().validate(new PfValidationResult()).isValid());
114 assertTrue(tcl.validate(new PfValidationResult()).isValid());
118 fail("test should throw an exception");
119 } catch (Exception exc) {
120 assertEquals("resultIn is marked @NonNull but is null", exc.getMessage());
124 new ToscaConstraintLogicalString(tclKey, ToscaConstraintLogicalString.Operation.EQ, null)
125 .validate(new PfValidationResult());
126 fail("test should throw an exception");
127 } catch (Exception exc) {
128 assertEquals("compareToString is marked @NonNull but is null", exc.getMessage());
131 assertFalse(new ToscaConstraintLogicalString(tclKey, ToscaConstraintLogicalString.Operation.EQ, "")
132 .validate(new PfValidationResult()).isValid());