aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model
diff options
context:
space:
mode:
authorPiotr Borelowski <p.borelowski@partner.samsung.com>2019-06-19 16:20:20 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-07-21 13:54:23 +0000
commit732768b2d0596e3e09e9788f033b488d349635bc (patch)
treef30265a58c170dc84f2455cb857933ac18b45446 /catalog-model
parentb1eb291bf50b7aa15e5b1fc57c24f6a25a1b8fa5 (diff)
Added unit tests for AbstractStringPropertyConstraint
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
Diffstat (limited to 'catalog-model')
-rw-r--r--catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java85
1 files changed, 85 insertions, 0 deletions
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
index 0000000000..5788f03a6e
--- /dev/null
+++ b/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java
@@ -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