aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/path/ForwardingPathDeleteCITest.java
blob: e5de493cb1f81886f9a07076e8347c04a2ea8673 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package org.openecomp.sdc.be.components.path;

import org.junit.Before;
import org.junit.Test;
import org.openecomp.sdc.be.datatypes.elements.ForwardingPathDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ForwardingPathElementDataDefinition;
import org.openecomp.sdc.be.datatypes.elements.ListDataDefinition;
import org.openecomp.sdc.be.impl.ForwardingPathUtils;
import org.openecomp.sdc.be.model.Service;

import java.util.HashMap;
import java.util.Map;
import java.util.Set;

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

public class ForwardingPathDeleteCITest {

    private Service service;
    private static final String nodeA = "nodeA";
    private static final String nodeB = "nodeB";
    private static final String fpName = "fpName";

    @Before
    public void initService() {
        service = new Service();
        ForwardingPathDataDefinition forwardingPath = new ForwardingPathDataDefinition(fpName);
        String protocol = "protocol";
        forwardingPath.setProtocol(protocol);
        forwardingPath.setDestinationPortNumber("DestinationPortNumber");
        ListDataDefinition<ForwardingPathElementDataDefinition> forwardingPathElementListDataDefinition
            = new ListDataDefinition<>();

        forwardingPathElementListDataDefinition.add(
            new ForwardingPathElementDataDefinition(nodeA, nodeB, "nodeAcpType", "nodeBcpType", "nodeDcpName",
                "nodeBcpName"));
        forwardingPathElementListDataDefinition.add(
            new ForwardingPathElementDataDefinition(nodeB, "nodeC", "nodeBcpType", "nodeCcpType", "nodeDcpName",
                "nodeBcpName"));
        forwardingPathElementListDataDefinition.add(
            new ForwardingPathElementDataDefinition("nodeC", "nodeD", "nodeCcpType", "nodeDcpType", "nodeDcpName",
                "nodeBcpName"));
        forwardingPath.setPathElements(forwardingPathElementListDataDefinition);
        Map<String, ForwardingPathDataDefinition> forwardingPaths = new HashMap<>();
        forwardingPaths.put("NEW", forwardingPath);
        service.setForwardingPaths(forwardingPaths);
    }


    @Test
    public void getListToDelete() {

        Set<String> forwardingPathNamesToDeleteOnComponenetInstanceDeletion = new ForwardingPathUtils()
            .findForwardingPathNamesToDeleteOnComponentInstanceDeletion(service, nodeA);
        assertEquals(1, forwardingPathNamesToDeleteOnComponenetInstanceDeletion.size());
        assertTrue(forwardingPathNamesToDeleteOnComponenetInstanceDeletion.contains(fpName));

        Set<String> forwardingPathNamesToDeleteOnCIDelete = new ForwardingPathUtils()
            .findForwardingPathNamesToDeleteOnComponentInstanceDeletion(service, nodeB);
        assertNotNull(forwardingPathNamesToDeleteOnCIDelete);
        assertEquals(1, forwardingPathNamesToDeleteOnCIDelete.size());
        assertTrue(forwardingPathNamesToDeleteOnComponenetInstanceDeletion.contains(fpName));

        forwardingPathNamesToDeleteOnCIDelete = new ForwardingPathUtils()
            .findForwardingPathNamesToDeleteOnComponentInstanceDeletion(service, "Does not exist");
        assertNotNull(forwardingPathNamesToDeleteOnCIDelete);
        assertEquals(0, forwardingPathNamesToDeleteOnCIDelete.size());
        assertFalse(forwardingPathNamesToDeleteOnCIDelete.contains(fpName));
    }

}