Support TOSCA functions in Node Filters
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / nodeFilter / ServiceFilterRenameCiTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.be.nodeFilter;
18
19 import static org.junit.jupiter.api.Assertions.assertEquals;
20 import static org.junit.jupiter.api.Assertions.assertNotNull;
21
22 import java.util.List;
23 import java.util.Map;
24 import org.junit.jupiter.api.Test;
25 import org.openecomp.sdc.be.datatypes.elements.CINodeFilterDataDefinition;
26 import org.openecomp.sdc.be.datatypes.elements.PropertyFilterConstraintDataDefinition;
27 import org.openecomp.sdc.be.impl.ServiceFilterUtils;
28
29 class ServiceFilterRenameCiTest extends BaseServiceFilterUtilsTest {
30
31     protected static final String CI_NEW_NAME = "BBBBB";
32
33     @Test
34     void renameCI() {
35         Map<String, CINodeFilterDataDefinition> renamedNodeFilters = getRenamedNodeFilters(CI_NAME, CI_NEW_NAME);
36         assertNotNull(renamedNodeFilters);
37         final List<PropertyFilterConstraintDataDefinition> constraints =
38                 renamedNodeFilters.get(CI_NAME).getProperties().getListToscaDataDefinition().iterator().next()
39                                   .getConstraints();
40         assertEquals(1, constraints.size());
41     }
42
43     private Map<String, CINodeFilterDataDefinition> getRenamedNodeFilters(String oldName, String newName) {
44         return ServiceFilterUtils.getRenamedNodesFilter(service, oldName, newName);
45     }
46 }