aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/pomba/contextbuilder/networkdiscovery/unittest/service/NetworkDiscoveryContextBuilderTest.java
blob: 77e37cab48d01edf516f2bc28c2d47082b86315c (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
316
317
318
319
320
321
/*
 * ============LICENSE_START===================================================
 * Copyright (c) 2018 Amdocs
 * ============================================================================
 * 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.pomba.contextbuilder.networkdiscovery.unittest.service;

import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.okJson;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.Mockito.mock;

import com.github.jknack.handlebars.internal.Files;
import com.github.tomakehurst.wiremock.client.WireMock;
import com.github.tomakehurst.wiremock.junit.WireMockRule;
import com.github.tomakehurst.wiremock.matching.UrlPattern;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Base64;
import java.util.List;
import java.util.UUID;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.Status;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.onap.pomba.contextbuilder.networkdiscovery.model.NetworkDiscoveryRspInfo;
import org.onap.pomba.contextbuilder.networkdiscovery.service.SpringServiceImpl;
import org.onap.pomba.contextbuilder.networkdiscovery.service.rs.RestService;
import org.onap.sdnc.apps.pomba.networkdiscovery.datamodel.Attribute;
import org.onap.sdnc.apps.pomba.networkdiscovery.datamodel.DataQuality;
import org.onap.sdnc.apps.pomba.networkdiscovery.datamodel.NetworkDiscoveryNotification;
import org.onap.sdnc.apps.pomba.networkdiscovery.datamodel.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.core.env.Environment;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;

@RunWith(SpringJUnit4ClassRunner.class)
@EnableAutoConfiguration(exclude = { DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class })
@WebAppConfiguration
@SpringBootTest
@TestPropertySource(properties = { "serviceDecomposition.host=localhost", "serviceDecomposition.port=3333",
        "networkDiscoveryMicroService.host=localhost", "networkDiscoveryMicroService.port=9808",
        "networkDiscoveryMicroService.responseTimeOutInMilliseconds=1000" })
public class NetworkDiscoveryContextBuilderTest {

    private String authorization = "Basic "
            + Base64.getEncoder().encodeToString(("admin" + ":" + "admin").getBytes(StandardCharsets.UTF_8));
    private String partnerName = "POMBA";
    private String transactionId = UUID.randomUUID().toString();
    private String serviceInstanceId = "c6456519-6acf-4adb-997c-3c363dd4caaf";
    private String requestId = "2131__1";
    private String resourceType = "vserver";
    private String resourceId = "25fb07ab-0478-465e-a021-6384ac299671";

    HttpServletRequest httpServletRequest = mock(HttpServletRequest.class);
    NetworkDiscoveryNotification networkDiscoveryNotification = simulateNetworkDiscoveryNotification();

    @Autowired
    Environment environment;

    @Autowired
    RestService restService;

    @Rule
    public WireMockRule serviceDecompositionRule = new WireMockRule(wireMockConfig().port(3333));
    @Rule
    public WireMockRule networkDiscoveryMicroServiceRule = new WireMockRule(wireMockConfig().port(9808));

    @Before
    public void setUp() throws Exception {
    }

    @After
    public void tearDown() throws Exception {
    }

    @Test
    public void testVerifyNoAuthoriztion() throws Exception {
        Response response = this.restService.getContext(httpServletRequest, null, partnerName, transactionId,
                serviceInstanceId, null, null);
        assertTrue(response.getEntity().toString().contains("Missing Authorization: "));
        assertEquals(Status.UNAUTHORIZED.getStatusCode(), response.getStatus());
    }

    @Test
    public void testVerifyBadAuthoriztion() throws Exception {
        String authorization = "Basic "
                + Base64.getEncoder().encodeToString(("Test" + ":" + "Fake").getBytes(StandardCharsets.UTF_8));
        Response response = this.restService.getContext(httpServletRequest, authorization, partnerName, transactionId,
                serviceInstanceId, null, null);
        assertEquals("Authorization Failed", response.getEntity().toString());
        assertEquals(Status.UNAUTHORIZED.getStatusCode(), response.getStatus());
    }

    @Test
    public void testVerifyPartnerName() throws Exception {
        Response response = this.restService.getContext(httpServletRequest, authorization, null, transactionId,
                serviceInstanceId, null, null);
        assertTrue(response.getEntity().toString().contains("X-ONAP-PartnerName"));
        assertEquals(Status.BAD_REQUEST.getStatusCode(), response.getStatus());
    }

    @Test
    public void testVerifyServiceInstanceId() throws Exception {
        Response response = this.restService.getContext(httpServletRequest, authorization, partnerName, transactionId,
                null, null, null);
        assertTrue(response.getEntity().toString().contains("serviceInstanceId"));
        assertEquals(Status.BAD_REQUEST.getStatusCode(), response.getStatus());
    }

    @Test
    public void testVerifyServiceDecomposition() throws Exception {

        String urlStr = "/service-decomposition/service/context?serviceInstanceId=" + serviceInstanceId;

        File file = new File(ClassLoader.getSystemResource("SD_response.json").getFile());
        String sdResonse = Files.read(file);

        this.serviceDecompositionRule.stubFor(get(urlStr).willReturn(okJson(sdResonse)));
        addResponse_any("junit/networkDiscoveryResponse-1.json", networkDiscoveryMicroServiceRule);
        Response response = this.restService.getContext(httpServletRequest, authorization, partnerName, transactionId,
                serviceInstanceId, null, null);
        assertEquals(Status.OK.getStatusCode(), response.getStatus());
    }

    @Test
    public void testVerifyGetContext() throws Exception {

        String serviceDecompUrl = "/service-decomposition/service/context?serviceInstanceId=" + serviceInstanceId;
        addResponse(serviceDecompUrl, "junit/serviceDecomposition-1.json", serviceDecompositionRule);
        addResponse_any("junit/networkDiscoveryResponse-1.json", networkDiscoveryMicroServiceRule);

        Response response = this.restService.getContext(httpServletRequest, authorization, partnerName, transactionId,
                serviceInstanceId, null, null);

        assertEquals(Status.OK.getStatusCode(), response.getStatus());
    }

    @Test
    public void testUnauthorizedNetworkDiscoveryNotfi() throws Exception {
        String networkDiscoveryCallBackUrl = "/network-discovery/service/networkDiscoveryNotification";
        addResponse(networkDiscoveryCallBackUrl, "junit/networkDiscovery-1.json", networkDiscoveryMicroServiceRule);

        String badAuthorization = "Basic "
                + Base64.getEncoder().encodeToString(("Test" + ":" + "Fake").getBytes(StandardCharsets.UTF_8));
        Response response = this.restService.networkDiscoveryNotification(networkDiscoveryNotification,
                badAuthorization);

        assertEquals(Status.UNAUTHORIZED.getStatusCode(), response.getStatus());
    }

    @Test
    public void testNetworkDiscoveryNotfi() throws Exception {
        NetworkDiscoveryInfoAccess networkDiscoveryInfoAccess = new NetworkDiscoveryInfoAccess();
        simulateNetworkDiscoveryInfoList();
        String networkDiscoveryCallBackUrl = "/network-discovery/service/networkDiscoveryNotification";
        addResponse(networkDiscoveryCallBackUrl, "junit/networkDiscovery-1.json", networkDiscoveryMicroServiceRule);

        Response response = this.restService.networkDiscoveryNotification(networkDiscoveryNotification, authorization);
        NetworkDiscoveryRspInfo rsp = networkDiscoveryInfoAccess.getList(requestId);
        assertEquals(Status.OK.getStatusCode(), response.getStatus());
        assertEquals(rsp.getNetworkDiscoveryNotificationList().size(), 1);
    }

    private void addResponse(String path, String classpathResource, WireMockRule thisMock) throws IOException {
        String payload = readFully(ClassLoader.getSystemResourceAsStream(classpathResource));
        thisMock.stubFor(get(path).willReturn(okJson(payload)));
    }

    private void addResponse_any(String classpathResource, WireMockRule thisMock) throws IOException {
        String payload = readFully(ClassLoader.getSystemResourceAsStream(classpathResource));
        UrlPattern tPath = WireMock.anyUrl();
        thisMock.stubFor(get(tPath).willReturn(okJson(payload)));
    }

    private String readFully(InputStream in) throws IOException {
        char[] cbuf = new char[1024];
        StringBuilder content = new StringBuilder();
        try (InputStreamReader reader = new InputStreamReader(in, "UTF-8")) {
            int count;
            while ((count = reader.read(cbuf)) >= 0) {
                content.append(cbuf, 0, count);
            }
        }
        return content.toString();
    }

    private NetworkDiscoveryNotification simulateNetworkDiscoveryNotification() {
        NetworkDiscoveryNotification notification = new NetworkDiscoveryNotification();
        Resource myResource = new Resource();
        myResource.setId("25fb07ab-0478-465e-a021-6384ac299671");
        myResource.setType("vserver");
        DataQuality dataQuality = new DataQuality();
        dataQuality.setStatus(DataQuality.Status.ok);
        myResource.setDataQuality(dataQuality);
        List<Attribute> attributeList = new ArrayList<>();
        ;
        Attribute attribute = new Attribute();
        attribute.setName("vserver-id");
        attribute.setValue("25fb07ab-0478-465e-a021-6384ac299671");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("power-state");
        attribute.setValue("1");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("vm-state");
        attribute.setValue("active");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("status");
        attribute.setValue("ACTIVE");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("host-status");
        attribute.setValue("UNKNOWN");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("updated");
        attribute.setValue("2017-11-20T04:26:13Z");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("disk-allocation-gb");
        attribute.setValue(".010");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("memory-usage-mb");
        attribute.setValue("null");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName("cpu-util-percent");
        attribute.setValue(".048");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);

        attribute.setName(".048");
        attribute.setValue("2018-07-26 01:37:07 +0000");
        attribute.setDataQuality(dataQuality);
        attributeList.add(attribute);
        myResource.setAttributeList(attributeList);

        notification.setResources(Arrays.asList(myResource));
        notification.setAckFinalIndicator(true);
        notification.setCode(200);
        notification.setRequestId(requestId);
        notification.setMessage("OK");

        return notification;
    }

    private void simulateNetworkDiscoveryInfoList() {
        NetworkDiscoveryInfoAccess networkDiscoveryInfoAccess = new NetworkDiscoveryInfoAccess();

        String requestId2 = "2131__2";
        List<String> related_request_list = new ArrayList<>();
        related_request_list.add(requestId);
        related_request_list.add(requestId2);

        NetworkDiscoveryRspInfo notif1 = new NetworkDiscoveryRspInfo();
        notif1.setRequestId(requestId);
        notif1.setResourceType(resourceType);
        notif1.setResourceId(resourceId);
        notif1.setRelatedRequestIdList(related_request_list);
        networkDiscoveryInfoAccess.updateList(requestId, notif1);

        NetworkDiscoveryRspInfo notif2 = new NetworkDiscoveryRspInfo();
        notif2.setRequestId(requestId2);
        notif2.setResourceType(resourceType);
        notif2.setResourceId(resourceId);
        notif2.setRelatedRequestIdList(related_request_list);
        networkDiscoveryInfoAccess.updateList(requestId2, notif2);
    }

    private class NetworkDiscoveryInfoAccess extends SpringServiceImpl {
        public void updateList(String requestId, NetworkDiscoveryRspInfo resp) {
            super.updateNetworkDiscoveryInfoList(requestId, resp);
        }

        public NetworkDiscoveryRspInfo getList(String requestId) {
            return super.getNetworkDiscoveryInfoList(requestId);
        }
    }
}