summaryrefslogtreecommitdiffstats
path: root/esr-mgr/src/test/java/org/onap/aai/esr/wrapper/PnfManagerWrapperTest.java
blob: 038e275196772ec5800efe72f5be541a313a5174 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
 * Copyright 2018 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.aai.esr.wrapper;

import static org.junit.Assert.assertEquals;
import java.util.ArrayList;
import java.util.List;
import javax.ws.rs.core.Response;
import org.junit.Assert;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.aai.esr.common.MsbConfig;
import org.onap.aai.esr.entity.aai.Pnf;
import org.onap.aai.esr.entity.rest.PnfRegisterInfo;
import org.onap.aai.esr.entity.rest.VnfmRegisterInfo;
import org.onap.aai.esr.exception.ExtsysException;
import org.onap.aai.esr.externalservice.aai.ExternalSystemProxy;
import org.onap.aai.esr.externalservice.aai.NetworkProxy;
import org.onap.aai.esr.util.ExtsysUtil;

public class PnfManagerWrapperTest {

    static {
        MsbConfig.setMsbServerAddr("http://127.0.0.1:80");
    }

    @Test
    public void test_registerPnf() throws ExtsysException {
        PnfRegisterInfo pnfRegisterInfo = new PnfRegisterInfo();
        pnfRegisterInfo.setPnfId("pnf1");
        pnfRegisterInfo.setUserLabel("PNF test");
        pnfRegisterInfo.setSubnetId("subnetId1");
        pnfRegisterInfo.setNeId("neId1");
        pnfRegisterInfo.setManagementType("Test");
        pnfRegisterInfo.setVendor("ZTE");
        pnfRegisterInfo.setPnfdId("pnfdId1");
        pnfRegisterInfo.setEmsId("emsId1");
        pnfRegisterInfo.setLattitude("121.546");
        pnfRegisterInfo.setLongitude("14.22");
        NetworkProxy mockNetworkProxy = Mockito.mock(NetworkProxy.class);
        Mockito.doNothing().when(mockNetworkProxy).registerPnf(Mockito.anyString(), (Pnf)Mockito.anyObject());
        PnfManagerWrapper pnfManagerWrapper = new PnfManagerWrapper(mockNetworkProxy);
        Response response = pnfManagerWrapper.registerPnf(pnfRegisterInfo);
        if (response != null) {
            Assert.assertTrue(response.getStatus() == 200);
        }
    }
    
    @Test
    public void test_queryPnfById() throws ExtsysException {
        ExtsysUtil extsysUtil = new ExtsysUtil();
        PnfRegisterInfo pnfRegisterInfo = new PnfRegisterInfo();
        pnfRegisterInfo.setPnfId("pnf1");
        pnfRegisterInfo.setUserLabel("PNF test");
        pnfRegisterInfo.setSubnetId("subnetId1");
        pnfRegisterInfo.setNeId("neId1");
        pnfRegisterInfo.setManagementType("Test");
        pnfRegisterInfo.setVendor("ZTE");
        pnfRegisterInfo.setPnfdId("pnfdId1");
        pnfRegisterInfo.setEmsId("emsId1");
        pnfRegisterInfo.setLattitude("121.546");
        pnfRegisterInfo.setLongitude("14.22");
        String PnfStr = "{\"pnf-name\": \"pnf1\","
                + "\"pnf-name2\": \"PNF test\","
                + "\"pnf-id\": \"subnetId1-neId1\","
                + "\"equip-type\": \"Test\","
                + "\"equip-vendor\": \"ZTE\","
                + "\"equip-model\": \"pnfdId1\","
                + "\"management-option\": \"emsId1\","
                + "\"in-maint\": false,"
                + "\"frame-id\": \"121.546-14.22\"}";
        NetworkProxy mockNetworkProxy = Mockito.mock(NetworkProxy.class);
        Mockito.when(mockNetworkProxy.queryPNF(Mockito.anyString())).thenReturn(PnfStr);
        PnfManagerWrapper pnfManagerWrapper = new PnfManagerWrapper(mockNetworkProxy);
        Response response = pnfManagerWrapper.queryPnfById("pnf1");
        if (response != null) {
            Assert.assertTrue(response.getStatus() == 200);
            assertEquals(extsysUtil.objectToString(pnfRegisterInfo), extsysUtil.objectToString(response.getEntity()));
        }
    }
    
    @Test
    public void test_queryPnfList() throws ExtsysException {
        ExtsysUtil extsysUtil = new ExtsysUtil();
        List<PnfRegisterInfo> esrPnfList = new ArrayList<>();
        PnfRegisterInfo pnfRegisterInfo = new PnfRegisterInfo();
        pnfRegisterInfo.setPnfId("pnf1");
        pnfRegisterInfo.setUserLabel("PNF test");
        pnfRegisterInfo.setSubnetId("subnetId1");
        pnfRegisterInfo.setNeId("neId1");
        pnfRegisterInfo.setManagementType("Test");
        pnfRegisterInfo.setVendor("ZTE");
        pnfRegisterInfo.setPnfdId("pnfdId1");
        pnfRegisterInfo.setEmsId("emsId1");
        pnfRegisterInfo.setLattitude("121.546");
        pnfRegisterInfo.setLongitude("14.22");
        esrPnfList.add(pnfRegisterInfo);
        String pnfListStr = "{\"pnf\": [{\"pnf-name\": \"pnf1\","
                + "\"pnf-name2\": \"PNF test\","
                + "\"pnf-id\": \"subnetId1-neId1\","
                + "\"equip-type\": \"Test\","
                + "\"equip-vendor\": \"ZTE\","
                + "\"equip-model\": \"pnfdId1\","
                + "\"management-option\": \"emsId1\","
                + "\"in-maint\": false,"
                + "\"frame-id\": \"121.546-14.22\"}]}";
        NetworkProxy mockNetworkProxy = Mockito.mock(NetworkProxy.class);
        Mockito.when(mockNetworkProxy.queryPnfList()).thenReturn(pnfListStr);
        PnfManagerWrapper pnfManagerWrapper = new PnfManagerWrapper(mockNetworkProxy);
        Response response = pnfManagerWrapper.queryPnfList();
        if (response != null) {
            Assert.assertTrue(response.getStatus() == 200);
            assertEquals(extsysUtil.objectToString(esrPnfList), extsysUtil.objectToString(response.getEntity()));
        }
    }
}