ea5212a490e4ac3b3d93cee02d28658ff5570e36
[sdc/sdc-tosca.git] / sdc-tosca / src / test / java / org / onap / sdc / impl / ToscaParserPolicyTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdc-tosca
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. 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
21 package org.onap.sdc.impl;
22
23 import org.junit.BeforeClass;
24 import org.junit.Test;
25 import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
26 import org.onap.sdc.tosca.parser.exceptions.SdcToscaParserException;
27 import org.onap.sdc.tosca.parser.impl.SdcToscaParserFactory;
28 import org.onap.sdc.toscaparser.api.NodeTemplate;
29 import org.onap.sdc.toscaparser.api.Policy;
30
31 import java.net.URL;
32 import java.util.List;
33
34 import static org.junit.Assert.assertTrue;
35 import static org.testng.Assert.assertEquals;
36 import static org.testng.Assert.assertNotNull;
37
38 public class ToscaParserPolicyTest {
39
40     private static ISdcCsarHelper helper = null;
41
42     @BeforeClass
43     public static void setUpClass() {
44         try {
45             URL resource = GetEntityPortMirroringTest.class.getClassLoader()
46                     .getResource("csars/service-CgnatFwVnfNc-csar.csar");
47             if (resource != null) {
48                 helper = SdcToscaParserFactory.getInstance().getSdcCsarHelper(resource.getFile());
49             }
50
51         } catch (SdcToscaParserException e) {
52             e.printStackTrace();
53         }
54     }
55
56     @Test
57     public void getPolicyOfTargetByNodeTemplate() {
58         List<NodeTemplate> vfList = helper.getServiceVfList();
59         assertEquals(1, vfList.size());
60         List<Policy> policies = helper.getPoliciesOfTarget(vfList.get(0));
61         assertNotNull(policies);
62         assertTrue(policies.isEmpty());
63     }
64
65     @Test
66     public void getPolicyTargetFromOrigin() {
67         List<NodeTemplate> vfList = helper.getServiceVfList();
68         assertEquals(1, vfList.size());
69         List<NodeTemplate> targets = helper.getPolicyTargetsFromOrigin(vfList.get(0), "cgnatfwvnf_nc..External..0");
70         assertNotNull(targets);
71         assertTrue(targets.isEmpty());
72     }
73
74
75 }