Support adding data types to model
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / components / validation / PropertyValidatorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 Nokia. 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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  */
20 package org.openecomp.sdc.be.components.validation;
21
22 import fj.data.Either;
23 import org.junit.Test;
24 import org.junit.runner.RunWith;
25 import org.mockito.Mock;
26 import org.mockito.Mockito;
27 import org.mockito.junit.MockitoJUnitRunner;
28 import org.openecomp.sdc.be.components.impl.utils.ExceptionUtils;
29 import org.openecomp.sdc.be.impl.ComponentsUtils;
30 import org.openecomp.sdc.be.model.PropertyDefinition;
31 import org.openecomp.sdc.be.model.cache.ApplicationDataTypeCache;
32 import org.openecomp.sdc.be.model.operations.impl.PropertyOperation;
33 import org.openecomp.sdc.exception.ResponseFormat;
34
35 import java.util.ArrayList;
36 import java.util.Collections;
37 import java.util.List;
38
39 import static org.junit.Assert.assertTrue;
40
41 @RunWith(MockitoJUnitRunner.class)
42 public class PropertyValidatorTest {
43
44     private static final String TEST = "test";
45     private static final String VALUE = "VALUE";
46     private static final String TYPE = "TYPE";
47
48     @Mock
49     private PropertyOperation propertyOperation;
50     @Mock
51     private ExceptionUtils exceptionUtils;
52     @Mock
53     private ComponentsUtils componentsUtils;
54     @Mock
55     private ApplicationDataTypeCache applicationDataTypeCache;
56
57     @Test
58     public void shouldValidateThinProperties() {
59         Mockito.when(propertyOperation.validateAndUpdatePropertyValue(
60             Mockito.any(), Mockito.any(), Mockito.any(), Mockito.any())).thenReturn(Either.left(""));
61
62         PropertyValidator propertyValidator = new PropertyValidator(propertyOperation, componentsUtils, exceptionUtils);
63         List<PropertyDefinition> props = new ArrayList<>();
64         List<PropertyDefinition> dbProps = new ArrayList<>();
65         PropertyDefinition prop = new PropertyDefinition();
66         prop.setName(TEST);
67         prop.setValue(VALUE);
68         prop.setType(TYPE);
69         props.add(prop);
70         dbProps.add(prop);
71         propertyValidator.thinPropertiesValidator(props, dbProps, Collections.emptyMap());
72
73         Mockito.verify(propertyOperation).validateAndUpdatePropertyValue(TYPE, VALUE, null, Collections.emptyMap());
74     }
75 }