Added unit tests for AbstractStringPropertyConstraint 68/90168/2
authorPiotr Borelowski <p.borelowski@partner.samsung.com>
Wed, 19 Jun 2019 14:20:20 +0000 (16:20 +0200)
committerOfir Sonsino <ofir.sonsino@intl.att.com>
Sun, 21 Jul 2019 13:54:23 +0000 (13:54 +0000)
Improved the unit test coverage in the package
org.openecomp.sdc.be.model.tosca.constraints

Issue-ID: SDC-2327
Signed-off-by: Piotr Borelowski <p.borelowski@partner.samsung.com>
Change-Id: I79c3ecaa6aae9b9c3011d332444b072d7c1dc460

catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java [new file with mode: 0644]

diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java
new file mode 100644 (file)
index 0000000..5788f03
--- /dev/null
@@ -0,0 +1,85 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP SDC
+ * ================================================================================
+ * Copyright (C) 2019 Samsung. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END============================================
+ * ===================================================================
+ */
+
+package org.openecomp.sdc.be.model.tosca.constraints;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+import org.openecomp.sdc.be.model.tosca.ToscaType;
+import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintFunctionalException;
+import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
+import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
+
+public class AbstractStringPropertyConstraintTest {
+
+    private static final String PROPERTY_VALUE = "propValue";
+
+    private final TestStringPropertyConstraint constraint = new TestStringPropertyConstraint();
+
+    @Test
+    public void testInitializeSuccess() throws ConstraintValueDoNotMatchPropertyTypeException {
+        // when
+        constraint.initialize(ToscaType.STRING);
+    }
+
+    @Test(expected = ConstraintValueDoNotMatchPropertyTypeException.class)
+    public void testInitializeFailure() throws ConstraintValueDoNotMatchPropertyTypeException {
+        // when
+        constraint.initialize(ToscaType.TIMESTAMP);
+    }
+
+    @Test
+    public void testValidateSuccess() throws ConstraintViolationException {
+        // when
+        constraint.validate(PROPERTY_VALUE);
+
+        // then
+        assertEquals(PROPERTY_VALUE, constraint.last);
+    }
+
+    @Test(expected = ConstraintViolationException.class)
+    public void testValidateNull() throws ConstraintViolationException {
+        // when
+        constraint.validate(null);
+    }
+
+    @Test(expected = ConstraintViolationException.class)
+    public void testValidateNotString() throws ConstraintViolationException {
+        // when
+        constraint.validate(Integer.valueOf(123));
+    }
+}
+
+class TestStringPropertyConstraint extends AbstractStringPropertyConstraint {
+
+    String last;
+
+    @Override
+    protected void doValidate(String propertyValue) {
+        last = propertyValue;
+    }
+
+    @Override
+    public String getErrorMessage(ToscaType toscaType, ConstraintFunctionalException exception, String propertyName) {
+        return null;
+    }
+}
\ No newline at end of file