2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 Samsung. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END============================================
19 * ===================================================================
22 package org.openecomp.sdc.be.model.tosca.constraints;
24 import static org.junit.Assert.assertEquals;
26 import org.junit.Test;
27 import org.openecomp.sdc.be.model.tosca.ToscaType;
28 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintFunctionalException;
29 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintValueDoNotMatchPropertyTypeException;
30 import org.openecomp.sdc.be.model.tosca.constraints.exception.ConstraintViolationException;
32 public class AbstractStringPropertyConstraintTest {
34 private static final String PROPERTY_VALUE = "propValue";
36 private final TestStringPropertyConstraint constraint = new TestStringPropertyConstraint();
39 public void testInitializeSuccess() throws ConstraintValueDoNotMatchPropertyTypeException {
41 constraint.initialize(ToscaType.STRING);
44 @Test(expected = ConstraintValueDoNotMatchPropertyTypeException.class)
45 public void testInitializeFailure() throws ConstraintValueDoNotMatchPropertyTypeException {
47 constraint.initialize(ToscaType.TIMESTAMP);
51 public void testValidateSuccess() throws ConstraintViolationException {
53 constraint.validate(PROPERTY_VALUE);
56 assertEquals(PROPERTY_VALUE, constraint.last);
59 @Test(expected = ConstraintViolationException.class)
60 public void testValidateNull() throws ConstraintViolationException {
62 constraint.validate(null);
65 @Test(expected = ConstraintViolationException.class)
66 public void testValidateNotString() throws ConstraintViolationException {
68 constraint.validate(Integer.valueOf(123));
72 class TestStringPropertyConstraint extends AbstractStringPropertyConstraint {
77 protected void doValidate(String propertyValue) {
82 public String getErrorMessage(ToscaType toscaType, ConstraintFunctionalException exception, String propertyName) {