Catalog alignment
[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 org.junit.Test;
20 import org.openecomp.sdc.be.datatypes.elements.CINodeFilterDataDefinition;
21 import org.openecomp.sdc.be.impl.ServiceFilterUtils;
22
23 import java.util.List;
24 import java.util.Map;
25
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 public class ServiceFilterRenameCiTest extends BaseServiceFilterUtilsTest {
31
32     protected static final String CI_NEW_NAME = "BBBBB";
33
34     @Test
35     public void renameCI() {
36         Map<String, CINodeFilterDataDefinition> renamedNodeFilters = getRenamedNodeFilters(CI_NAME, CI_NEW_NAME);
37         assertNotNull(renamedNodeFilters);
38         final List<String> constraints =
39                 renamedNodeFilters.get(CI_NAME).getProperties().getListToscaDataDefinition().iterator().next()
40                                   .getConstraints();
41         assertEquals(1,constraints.size());
42         final String constraint = constraints.iterator().next();
43         assertTrue(constraint.contains(CI_NEW_NAME));
44     }
45
46     private Map<String, CINodeFilterDataDefinition> getRenamedNodeFilters(String oldName, String newName) {
47         return ServiceFilterUtils.getRenamedNodesFilter(service, oldName, newName);
48     }
49 }