aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/sdc/impl/ToscaParserPolicyTest.java
blob: f77b070ec51933491a075ca84c5fa57555d7a564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package org.onap.sdc.impl;

import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.sdc.tosca.parser.api.ISdcCsarHelper;
import org.onap.sdc.tosca.parser.exceptions.SdcToscaParserException;
import org.onap.sdc.tosca.parser.impl.SdcToscaParserFactory;
import org.onap.sdc.toscaparser.api.NodeTemplate;
import org.onap.sdc.toscaparser.api.Policy;

import java.net.URL;
import java.util.List;

import static org.junit.Assert.assertTrue;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;

public class ToscaParserPolicyTest {

    private static ISdcCsarHelper helper = null;

    @BeforeClass
    public static void setUpClass() {
        try {
            URL resource = GetEntityPortMirroringTest.class.getClassLoader()
                    .getResource("csars/service-CgnatFwVnfNc-csar.csar");
            if (resource != null) {
                helper = SdcToscaParserFactory.getInstance().getSdcCsarHelper(resource.getFile());
            }

        } catch (SdcToscaParserException e) {
            e.printStackTrace();
        }
    }

    @Test
    public void getPolicyOfTargetByNodeTemplate() {
        List<NodeTemplate> vfList = helper.getServiceVfList();
        assertEquals(1, vfList.size());
        List<Policy> policies = helper.getPoliciesOfTarget(vfList.get(0));
        assertNotNull(policies);
        assertTrue(policies.isEmpty());
    }

    @Test
    public void getPolicyTargetFromOrigin() {
        List<NodeTemplate> vfList = helper.getServiceVfList();
        assertEquals(1, vfList.size());
        List<NodeTemplate> targets = helper.getPolicyTargetsFromOrigin(vfList.get(0), "cgnatfwvnf_nc..External..0");
        assertNotNull(targets);
        assertTrue(targets.isEmpty());
    }


}