From 732768b2d0596e3e09e9788f033b488d349635bc Mon Sep 17 00:00:00 2001 From: Piotr Borelowski Date: Wed, 19 Jun 2019 16:20:20 +0200 Subject: 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 Change-Id: I79c3ecaa6aae9b9c3011d332444b072d7c1dc460 --- .../AbstractStringPropertyConstraintTest.java | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/constraints/AbstractStringPropertyConstraintTest.java 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 -- cgit 1.2.3-korg