summaryrefslogtreecommitdiffstats
path: root/so-nssmf-adapter-application/src/test/java/org/onap/so/adapters/nssmf/controller/NssmfAdapterControllerTest.java
blob: a4cdde50d0cf162f230a85378f2dbd2bcda4ea7d (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 # Copyright (c) 2020, CMCC Technologies Co., Ltd.
 #
 # 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.so.adapters.nssmf.controller;

import org.junit.Before;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.onap.so.adapters.nssmf.service.NssmfManagerService;
import org.onap.so.beans.nsmf.NssmfAdapterNBIRequest;
import org.springframework.http.ResponseEntity;
import org.springframework.test.context.junit4.SpringRunner;
import org.junit.Test;
import java.lang.reflect.Field;
import static org.junit.Assert.assertNotNull;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.when;
import static org.mockito.MockitoAnnotations.initMocks;

@RunWith(SpringRunner.class)
public class NssmfAdapterControllerTest {

    @Mock
    private NssmfManagerService nssmfManagerService;

    private NssmfAdapterController controller;

    @Mock
    private ResponseEntity entity;

    @Before
    public void setUp() throws Exception {
        initMocks(this);
        controller = new NssmfAdapterController();

        Field nssmfManagerService = controller.getClass().getDeclaredField("nssmfManagerService");
        nssmfManagerService.setAccessible(true);
        nssmfManagerService.set(controller, this.nssmfManagerService);
    }


    @Test
    public void allocateNssiTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        ResponseEntity entity = controller.allocateNssi(request);
        assertNotNull(entity);
    }

    @Test
    public void deAllocateNssiTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        String profileId = "7516eb33-e8d3-4805-b91a-96de1bb6d8bb";
        ResponseEntity entity = controller.deAllocateNssi(request, profileId);
        assertNotNull(entity);

    }

    @Test
    public void activateNssiTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        String snssai = "01-772523CD";
        ResponseEntity entity = controller.activateNssi(request, snssai);
        assertNotNull(entity);
    }

    @Test
    public void deactivateNssiTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        String snssai = "01-772523CD";
        ResponseEntity entity = controller.deactivateNssi(request, snssai);
        assertNotNull(entity);
    }

    @Test
    public void queryJobStatusTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        String jobId = "b86aa515-b285-487b-8a1e-01f3cc871b88";
        ResponseEntity entity = controller.queryJobStatus(request, jobId);
        assertNotNull(entity);
    }

    @Test
    public void queryNSSISelectionCapabilityTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        ResponseEntity entity = controller.queryNSSISelectionCapability(request);
        assertNotNull(entity);
    }

    @Test
    public void querySubnetCapabilityTest() throws Exception {
        commonMock();
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        ResponseEntity entity = controller.querySubnetCapability(request);
        assertNotNull(entity);
    }

    private void commonMock() {
        NssmfAdapterNBIRequest request = new NssmfAdapterNBIRequest();
        when(nssmfManagerService.allocateNssi(any())).thenReturn(entity);
        when(nssmfManagerService.deAllocateNssi(any(), anyString())).thenReturn(entity);
        when(nssmfManagerService.deActivateNssi(any(), anyString())).thenReturn(entity);
        when(nssmfManagerService.activateNssi(any(), anyString())).thenReturn(entity);
        when(nssmfManagerService.queryJobStatus(any(), anyString())).thenReturn(entity);
        when(nssmfManagerService.querySubnetCapability(any())).thenReturn(entity);
        when(nssmfManagerService.queryNSSISelectionCapability(any())).thenReturn(entity);
    }
}