aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/test/java/org/onap/ransim/rest/api/controller/TestRansimController.java
blob: d28c4d9100b91e8c6cccf4be2f7d4574191589e2 (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*-
 * ============LICENSE_START=======================================================
 * Ran Simulator Controller
 * ================================================================================
 * Copyright (C) 2020 Wipro Limited.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.ransim.rest.api.controller;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.when;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;

import mockit.Mock;
import mockit.MockUp;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner;
import org.onap.ransim.rest.api.models.CellDetails;
import org.onap.ransim.rest.api.models.CellNeighbor;
import org.onap.ransim.rest.api.models.FmAlarmInfo;
import org.onap.ransim.rest.api.models.NeighborDetails;
import org.onap.ransim.rest.api.models.NeihborId;
import org.onap.ransim.rest.api.models.NetconfServers;
import org.onap.ransim.rest.api.services.RansimControllerServices;
import org.onap.ransim.rest.api.services.RansimRepositoryService;
import org.onap.ransim.rest.client.RestClient;
import org.onap.ransim.websocket.model.CommonEventHeaderFm;
import org.onap.ransim.websocket.model.EventFm;
import org.onap.ransim.websocket.model.FaultFields;
import org.springframework.context.annotation.PropertySource;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;

/**
 * @author ubuntu16
 *
 */
@RunWith(MockitoJUnitRunner.class)
@PropertySource("classpath:ransim.properties")
public class TestRansimController {

    @Test
    public void testGetRansimController() {
        RansimControllerServices rc = Mockito.mock(RansimControllerServices.class);
        assertNotNull(rc);
    }

    @Test
    public void testsetNetconfServers() {
        // fail("Not yet implemented");
        RansimControllerServices rscontroller = Mockito.mock(RansimControllerServices.class);
        CellDetails cell1 = new CellDetails("Chn01", 1, "nc1");
        CellDetails cell2 = new CellDetails("Chn02", 2, "nc1");
        CellDetails cell3 = new CellDetails("Chn03", 3, "nc1");
        CellDetails cell4 = new CellDetails("Chn04", 4, "nc1");

        Set<CellDetails> cells = new HashSet<CellDetails>();
        cells.add(cell1);
        cells.add(cell2);
        cells.add(cell3);
        cells.add(cell4);

        NetconfServers server = new NetconfServers("nc1", null, null, cells);

        new MockUp<RansimRepositoryService>() {
            @Mock
            NetconfServers getNetconfServer(String serverId) {

                return server;
            }
        };
        new MockUp<RansimRepositoryService>() {
            @Mock
            CellDetails getCellDetail(String nodeId) {

                return cell4;
            }
        };
        new MockUp<RansimRepositoryService>() {
            @Mock
            void mergeNetconfServers(NetconfServers netconfServers) {

            }
        };

        rscontroller.setNetconfServers("Chn04");

        boolean check = server.getCells().contains(cell4);

        assertTrue(check);

    }

    @Test
    public void testGenerateNeighborList() {
        // fail("Not yet implemented");
        RansimControllerServices rscontroller = Mockito.mock(RansimControllerServices.class);
        Set<NeighborDetails> neighborList = new HashSet<NeighborDetails>();
        NeighborDetails nbr1 = new NeighborDetails(new NeihborId("Chn00", "Chn01"), false);
        NeighborDetails nbr2 = new NeighborDetails(new NeihborId("Chn00", "Chn02"), false);
        NeighborDetails nbr3 = new NeighborDetails(new NeihborId("Chn00", "Chn03"), true);

        neighborList.add(nbr1);
        neighborList.add(nbr2);
        neighborList.add(nbr3);

        CellDetails cell0 = new CellDetails("Chn00", 4, "nc1");
        CellDetails cell1 = new CellDetails("Chn01", 1, "nc1");
        CellDetails cell2 = new CellDetails("Chn02", 2, "nc1");
        CellDetails cell3 = new CellDetails("Chn03", 3, "nc1");

        CellNeighbor cellNbr = new CellNeighbor();
        cellNbr.setNodeId("Chn00");
        cellNbr.setNeighborList(neighborList);

        new MockUp<RansimRepositoryService>() {
            @Mock
            CellNeighbor getCellNeighbor(String nodeId) {
                if (nodeId.equals("Chn00")) {
                    return cellNbr;
                } else {
                    return null;
                }

            }
        };

        new MockUp<RansimRepositoryService>() {
            @Mock
            CellDetails getCellDetail(String nodeId) {
                if (nodeId.equals("Chn00")) {
                    return cell0;
                } else if (nodeId.equals("Chn01")) {
                    return cell1;
                } else if (nodeId.equals("Chn02")) {
                    return cell2;
                } else if (nodeId.equals("Chn03")) {
                    return cell3;
                } else {
                    return null;
                }

            }
        };

        /*
         * GetNeighborList nbrListFct = rscontroller.generateNeighborList("Chn00");
         *
         * boolean result = false;
         *
         * if (nbrListFct.getCellsWithHo().contains(cell1)) { if
         * (nbrListFct.getCellsWithHo().contains(cell2)) { if
         * (nbrListFct.getCellsWithNoHo().contains(cell3)) { result = true; } } }
         *
         * assertTrue(result);
         */

    }

    @Test
    public void testSetEventFm() {
        // fail("Not yet implemented");
        RansimControllerServices rscontroller = Mockito.mock(RansimControllerServices.class);
        Map<String, String> alarmAdditionalInformation = new HashMap<String, String>();
        alarmAdditionalInformation.put("networkId", "abc");
        CommonEventHeaderFm commonEventHeader = new CommonEventHeaderFm("Chn00", "", "nc1", 0, 0);
        FaultFields faultFields = new FaultFields("RanPciCollisionConfusionOccurred", "other", "Collision", "CRITICAL",
                "PCICollision", alarmAdditionalInformation);
        EventFm checkObj = new EventFm(commonEventHeader, faultFields);

        new MockUp<RansimControllerServices>() {
            @Mock
            String getUuid() {
                return "";
            }
        };
        new MockUp<System>() {
            @Mock
            public long currentTimeMillis() {
                return (long) 0;
            }
        };

        String networkId = "abc";
        String ncServer = "nc1";
        String cellId = "14427";
        String collisions = "";
        HashMap<Integer, Integer> confusions = new HashMap<Integer, Integer>();
        collisions += "14427"+","+"14427";
        confusions.put(Integer.valueOf(0),14427);
	confusions.put(Integer.valueOf(1),14427);
        FmAlarmInfo issue = new FmAlarmInfo("Collision", collisions, confusions);
        /*
         * EventFm eventObj = rscontroller.setEventFm(networkId, ncServer, cellId,
         * issue);
         *
         * boolean result = false;
         *
         * Gson gson = new Gson(); String eventStr = gson.toJson(eventObj); String
         * checkStr = gson.toJson(checkObj);
         *
         * System.out.println("eventStr: " + eventStr); System.out.println("checkStr: "
         * + checkStr);
         *
         * if (eventStr.equals(checkStr)) { result = true; }
         *
         * assertTrue(result);
         */
    }

    // @Test
    public void testStopAllCells() {
        RansimControllerServices rscontroller = Mockito.mock(RansimControllerServices.class);

        new MockUp<RansimRepositoryService>() {
            @Mock
            List<NetconfServers> getNetconfServersList() {
                System.out.println("getNetconfServersList");
                List<NetconfServers> ns = new ArrayList<NetconfServers>();
                NetconfServers n1 = new NetconfServers("nc1", null, null, null);
                NetconfServers n2 = new NetconfServers("nc2", null, null, null);
                ns.add(n1);
                ns.add(n2);
                return ns;
            }
        };

        new MockUp<RestClient>() {
            @Mock
            public String sendUnmountRequestToSdnr(String serverId, String ip, int port, String sdnrUsername,
                    String sdnrPassword) {
                System.out.println("sendUnmountRequestToSdnr");
                return "";
            }
        };

        String result = rscontroller.stopAllSimulation();
        System.out.println("testStopAllCells: " + result);
        assertEquals("Netconf servers unmounted.", result);
    }

    @Test
    public void testStartRanSimulation() throws Exception {

        ResponseEntity<String> rsEntity = new ResponseEntity<>("Simulation started", HttpStatus.OK);
        RansimController rscontroller = Mockito.mock(RansimController.class);
        when(rscontroller.startRanSliceSimulation()).thenReturn(rsEntity);
        assertEquals(rscontroller.startRanSliceSimulation(), rsEntity);

    }

    @Test
    public void testFailureStartRanSimulation() throws Exception {

        RansimController rscontroller = new RansimController();
        ResponseEntity<String> result = rscontroller.startRanSliceSimulation();
        assertEquals(result.getStatusCode(), HttpStatus.INTERNAL_SERVER_ERROR);

    }

    @Test
    public void testStopRanSimulation() throws Exception {

        ResponseEntity<String> rsEntity = new ResponseEntity<>("Simulation stopped", HttpStatus.OK);
        RansimController rscontroller = Mockito.mock(RansimController.class);
        when(rscontroller.stopRanSliceSimulation()).thenReturn(rsEntity);
        assertEquals(rscontroller.stopRanSliceSimulation(), rsEntity);

    }

    @Test
    public void testGenerateIntelligentSlicingPmData() throws Exception {

        ResponseEntity<String> rsEntity = new ResponseEntity<>("IntelligentSlicing PM data generated", HttpStatus.OK);
        RansimController rscontroller = Mockito.mock(RansimController.class);
        when(rscontroller.generateIntelligentSlicingPmData()).thenReturn(rsEntity);
        assertEquals(rscontroller.generateIntelligentSlicingPmData(), rsEntity);

    }

    @Test
    public void testStopIntelligentSlicingPmData() throws Exception {

        ResponseEntity<String> rsEntity = new ResponseEntity<>("Stopped PM data generation.", HttpStatus.OK);
        RansimController rscontroller = Mockito.mock(RansimController.class);
        when(rscontroller.stopIntelligentSlicingPmData()).thenReturn(rsEntity);
        assertEquals(rscontroller.stopIntelligentSlicingPmData(), rsEntity);

    }

}