aboutsummaryrefslogtreecommitdiffstats
path: root/aai-traversal/src/test/java/org/onap/aai/dbgraphmap/SearchGraphNamedQueryTest.java
blob: 73896a0cf0abf0ba0331cdd296a98801fd8261fd (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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/**
 * ============LICENSE_START=======================================================
 * org.onap.aai
 * ================================================================================
 * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.aai.dbgraphmap;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.anyObject;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import com.google.gson.JsonObject;
import com.google.gson.JsonParser;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;

import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.*;

import org.junit.Before;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.aai.AAISetup;
import org.onap.aai.HttpTestUtil;
import org.onap.aai.PayloadUtil;
import org.onap.aai.exceptions.AAIException;
import org.onap.aai.rest.util.AAIExtensionMap;
import org.onap.aai.util.AAIConstants;

public class SearchGraphNamedQueryTest extends AAISetup {

    protected static final MediaType APPLICATION_JSON = MediaType.valueOf("application/json");

    private static final Set<Integer> VALID_HTTP_STATUS_CODES = new HashSet<>();

    static {
        VALID_HTTP_STATUS_CODES.add(200);
        VALID_HTTP_STATUS_CODES.add(201);
        VALID_HTTP_STATUS_CODES.add(204);
    }

    private HttpHeaders httpHeaders;

    private MultivaluedMap<String, String> headersMultiMap;
    private MultivaluedMap<String, String> queryParameters;

    private List<String> aaiRequestContextList;

    private List<MediaType> outputMediaTypes;

    private static boolean ranOnce = false;

    private HttpTestUtil httpTestUtil;

    private String getJsonValue(String json, String key) {
        JsonObject jsonObj = new JsonParser().parse(json).getAsJsonObject();
        String strValue = "";
        if (jsonObj.isJsonObject()) {
            strValue = jsonObj.get(key).getAsString();
        }
        return strValue;
    }

    private void addWidgets() {
        String widgetPath = "." + AAIConstants.AAI_FILESEP + "src/main/resources"
            + AAIConstants.AAI_FILESEP + "etc" + AAIConstants.AAI_FILESEP + "scriptdata"
            + AAIConstants.AAI_FILESEP + "widget-model-json";

        File dir = new File(widgetPath);
        File[] files = dir.listFiles();
        assert files != null;
        for (File file : files) {
            try {
                Path path = Paths.get(widgetPath + AAIConstants.AAI_FILESEP + file.getName());
                String widgetPayload = new String(Files.readAllBytes(path));
                String modelInvariantId = getJsonValue(widgetPayload, "model-invariant-id");
                String widgetUri =
                    "/aai/v12/service-design-and-creation/models/model/" + modelInvariantId;
                Response response = httpTestUtil.doPut(widgetUri, widgetPayload);
                assertEquals("Expected the named-query to be created", 201, response.getStatus());
            } catch (AAIException | IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        }
    }

    private void addNamedQueries() {
        String namedQueryPath = "." + AAIConstants.AAI_FILESEP + "src/main/resources"
            + AAIConstants.AAI_FILESEP + "etc" + AAIConstants.AAI_FILESEP + "scriptdata"
            + AAIConstants.AAI_FILESEP + "named-query-json";

        File dir = new File(namedQueryPath);
        File[] files = dir.listFiles();
        assert files != null;
        for (File file : files) {
            try {
                Path path = Paths.get(namedQueryPath + AAIConstants.AAI_FILESEP + file.getName());
                String namedQueryPayload = new String(Files.readAllBytes(path));
                String namedQueryUuid = getJsonValue(namedQueryPayload, "named-query-uuid");
                String namedQueryUri =
                    "/aai/v12/service-design-and-creation/named-queries/named-query/"
                        + namedQueryUuid;

                Response response = httpTestUtil.doPut(namedQueryUri, namedQueryPayload);
                assertEquals("Expected the named-query to be created", 201, response.getStatus());
            } catch (AAIException | IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        }
    }

    private String addVersionToUri(String uri) {
        return "/aai/" + schemaVersions.getDefaultVersion() + "/" + uri;
    }

    @Before
    public void setup() {

        httpTestUtil = new HttpTestUtil();

        httpHeaders = mock(HttpHeaders.class);

        headersMultiMap = new MultivaluedHashMap<>();
        queryParameters = Mockito.spy(new MultivaluedHashMap<>());

        headersMultiMap.add("X-FromAppId", "JUNIT");
        headersMultiMap.add("X-TransactionId", UUID.randomUUID().toString());
        headersMultiMap.add("Real-Time", "true");
        headersMultiMap.add("Accept", "application/json");
        headersMultiMap.add("aai-request-context", "");

        outputMediaTypes = new ArrayList<>();
        outputMediaTypes.add(APPLICATION_JSON);

        aaiRequestContextList = new ArrayList<>();
        aaiRequestContextList.add("");

        when(httpHeaders.getAcceptableMediaTypes()).thenReturn(outputMediaTypes);
        when(httpHeaders.getRequestHeaders()).thenReturn(headersMultiMap);
        when(httpHeaders.getRequestHeader("X-FromAppId"))
            .thenReturn(Collections.singletonList("JUNIT"));
        when(httpHeaders.getRequestHeader("X-TransactionId"))
            .thenReturn(Collections.singletonList("JUNIT"));

        when(httpHeaders.getRequestHeader("aai-request-context")).thenReturn(aaiRequestContextList);

        // TODO - Check if this is valid since RemoveDME2QueryParameters seems to be very
        // unreasonable
        Mockito.doReturn(null).when(queryParameters).remove(anyObject());

        when(httpHeaders.getMediaType()).thenReturn(APPLICATION_JSON);

        if (!ranOnce) {
            ranOnce = true;
            addWidgets();
            addNamedQueries();
        }
    }

    @Test
    public void getDHVLogicalLinkByCircuitId_1_0_Test() throws Exception {

        AAIExtensionMap aaiExtMap = new AAIExtensionMap();
        aaiExtMap.setHttpHeaders(httpHeaders);
        String queryParameters =
            PayloadUtil.getNamedQueryPayload("query-payload.DHVLogicalLinkByCircuitId-1.0.json");
        String putPayload =
            PayloadUtil.getNamedQueryPayload("logical-link.DHVLogicalLinkByCircuitId-1.0.json");

        String linkName = getJsonValue(putPayload, "link-name");
        String putUri = addVersionToUri("network/logical-links/logical-link/" + linkName);

        Response response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the logical-link to be created", 201, response.getStatus());

        HttpServletRequest request = Mockito.mock(HttpServletRequest.class);
        Mockito.when(request.getContentType()).thenReturn("application/json");

        aaiExtMap.setUri("/search/named-query");
        aaiExtMap.setApiVersion(schemaVersions.getDefaultVersion().toString());
        aaiExtMap.setServletRequest(request);

        response = searchGraph.runNamedQuery("JUNIT", "JUNIT", queryParameters, aaiExtMap);
        System.out.println("response was\n" + response.getEntity().toString());
        assertEquals("Expected success from query", 200, response.getStatus());
        boolean hasLinkName = response.getEntity().toString().indexOf(linkName) > 0;
        assertTrue("Response contains linkName", hasLinkName);
    }

    @Test
    public void getSvcSubscriberModelInfo_1_0_Test() throws Exception {

        AAIExtensionMap aaiExtMap = new AAIExtensionMap();
        aaiExtMap.setHttpHeaders(httpHeaders);
        String queryParameters =
            PayloadUtil.getNamedQueryPayload("query-payload.SvcSubscriberModelInfo-1.0.json");

        String putPayload =
            PayloadUtil.getNamedQueryPayload("model.SvcSubscriberModelInfo-1.0.json");
        String modelInvariantId = getJsonValue(putPayload, "model-invariant-id");
        String putUri =
            addVersionToUri("service-design-and-creation/models/model/" + modelInvariantId);
        Response response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the model to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("customer.SvcSubscriberModelInfo-1.0.json");
        String globalCustomerId = getJsonValue(putPayload, "global-customer-id");
        putUri = addVersionToUri("business/customers/customer/" + globalCustomerId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the customer to be created", 201, response.getStatus());

        HttpServletRequest request = Mockito.mock(HttpServletRequest.class);
        Mockito.when(request.getContentType()).thenReturn("application/json");

        aaiExtMap.setUri("/search/named-query");
        aaiExtMap.setApiVersion(schemaVersions.getDefaultVersion().toString());
        aaiExtMap.setServletRequest(request);

        response = searchGraph.runNamedQuery("JUNIT", "JUNIT", queryParameters, aaiExtMap);
        assertEquals("Expected success from query", 200, response.getStatus());
        boolean hasModelName = response.getEntity().toString().indexOf("junit-model-name") > 0;
        assertTrue("Response contains modelName from model-ver", hasModelName);
    }

    @Test
    public void getClosedLoopNamedQuery_1_0_Test() throws Exception {

        AAIExtensionMap aaiExtMap = new AAIExtensionMap();
        aaiExtMap.setHttpHeaders(httpHeaders);
        String queryParameters =
            PayloadUtil.getNamedQueryPayload("query-payload.closed-loop-named-query-1.0.json");

        String putPayload =
            PayloadUtil.getNamedQueryPayload("model.closed-loop-named-query-1.0.json");
        String modelInvariantId = getJsonValue(putPayload, "model-invariant-id");
        String putUri =
            addVersionToUri("service-design-and-creation/models/model/" + modelInvariantId);
        Response response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the model to be created", 201, response.getStatus());

        putPayload =
            PayloadUtil.getNamedQueryPayload("cloud-region.closed-loop-named-query-1.0.json");
        String cloudOwner = getJsonValue(putPayload, "cloud-owner");
        String cloudRegionId = getJsonValue(putPayload, "cloud-region-id");
        putUri = addVersionToUri(
            "cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner + "/" + cloudRegionId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the cloud-region to be created", 201, response.getStatus());

        putPayload =
            PayloadUtil.getNamedQueryPayload("cloud-region2.closed-loop-named-query-1.0.json");
        String cloudOwner2 = getJsonValue(putPayload, "cloud-owner");
        String cloudRegionId2 = getJsonValue(putPayload, "cloud-region-id");
        putUri = addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner2
            + "/" + cloudRegionId2);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the cloud-region2 to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("tenant.closed-loop-named-query-1.0.json");
        String tenantId = getJsonValue(putPayload, "tenant-id");
        putUri = addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner
            + "/" + cloudRegionId + "/tenants/tenant/" + tenantId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the tenant to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("tenant2.closed-loop-named-query-1.0.json");
        String tenantId2 = getJsonValue(putPayload, "tenant-id");
        putUri = addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner2
            + "/" + cloudRegionId2 + "/tenants/tenant/" + tenantId2);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the tenant2 to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("vserver.closed-loop-named-query-1.0.json");
        String vserverId = getJsonValue(putPayload, "vserver-id");
        putUri =
            addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner + "/"
                + cloudRegionId + "/tenants/tenant/" + tenantId + "/vservers/vserver/" + vserverId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the vserver to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("vserver2.closed-loop-named-query-1.0.json");
        String vserverId2 = getJsonValue(putPayload, "vserver-id");
        putUri = addVersionToUri(
            "cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner2 + "/" + cloudRegionId2
                + "/tenants/tenant/" + tenantId2 + "/vservers/vserver/" + vserverId2);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the vserver2 to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("customer.closed-loop-named-query-1.0.json");
        String globalCustomerId = getJsonValue(putPayload, "global-customer-id");
        putUri = addVersionToUri("business/customers/customer/" + globalCustomerId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the customer to be created", 201, response.getStatus());

        putPayload =
            PayloadUtil.getNamedQueryPayload("generic-vnf.closed-loop-named-query-1.0.json");
        String vnfId = getJsonValue(putPayload, "vnf-id");
        putUri = addVersionToUri("network/generic-vnfs/generic-vnf/" + vnfId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the generic-vnf to be created", 201, response.getStatus());

        HttpServletRequest request = Mockito.mock(HttpServletRequest.class);
        Mockito.when(request.getContentType()).thenReturn("application/json");

        aaiExtMap.setUri("/search/named-query");
        aaiExtMap.setApiVersion(schemaVersions.getDefaultVersion().toString());
        aaiExtMap.setServletRequest(request);

        response = searchGraph.runNamedQuery("JUNIT", "JUNIT", queryParameters, aaiExtMap);
        assertEquals("Expected success from query", 200, response.getStatus());
        boolean hasModelName =
            response.getEntity().toString().indexOf("example-model-name-val-closed-loop") > 0;
        assertTrue("Response contains modelName from model-ver", hasModelName);
    }

    @Test
    public void getComponentList_1_2_Test() throws Exception {

        AAIExtensionMap aaiExtMap = new AAIExtensionMap();
        aaiExtMap.setHttpHeaders(httpHeaders);
        String queryParameters =
            PayloadUtil.getNamedQueryPayload("query-payload.ComponentList-1.2.json");

        String putPayload = PayloadUtil.getNamedQueryPayload("model.ComponentList-1.2.json");
        String modelInvariantId = getJsonValue(putPayload, "model-invariant-id");
        String putUri =
            addVersionToUri("service-design-and-creation/models/model/" + modelInvariantId);
        Response response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the model to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("customer.ComponentList-1.2.json");
        String globalCustomerId = getJsonValue(putPayload, "global-customer-id");
        putUri = addVersionToUri("business/customers/customer/" + globalCustomerId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the customer to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("generic-vnf.ComponentList-1.2.json");
        String vnfId = getJsonValue(putPayload, "vnf-id");
        putUri = addVersionToUri("network/generic-vnfs/generic-vnf/" + vnfId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the generic-vnf to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("vf-module.ComponentList-1.2.json");
        String vfModuleId = getJsonValue(putPayload, "vf-module-id");
        putUri = addVersionToUri(
            "network/generic-vnfs/generic-vnf/" + vnfId + "/vf-modules/vf-module/" + vfModuleId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the vf-module to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("cloud-region.ComponentList-1.2.json");
        String cloudOwner = getJsonValue(putPayload, "cloud-owner");
        String cloudRegionId = getJsonValue(putPayload, "cloud-region-id");
        putUri = addVersionToUri(
            "cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner + "/" + cloudRegionId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the cloud-region to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("tenant.ComponentList-1.2.json");
        String tenantId = getJsonValue(putPayload, "tenant-id");
        putUri = addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner
            + "/" + cloudRegionId + "/tenants/tenant/" + tenantId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the tenant to be created", 201, response.getStatus());

        putPayload = PayloadUtil.getNamedQueryPayload("vserver.ComponentList-1.2.json");
        String vserverId = getJsonValue(putPayload, "vserver-id");
        putUri =
            addVersionToUri("cloud-infrastructure/cloud-regions/cloud-region/" + cloudOwner + "/"
                + cloudRegionId + "/tenants/tenant/" + tenantId + "/vservers/vserver/" + vserverId);
        response = httpTestUtil.doPut(putUri, putPayload);
        assertEquals("Expected the vserver to be created", 201, response.getStatus());

        HttpServletRequest request = Mockito.mock(HttpServletRequest.class);
        Mockito.when(request.getContentType()).thenReturn("application/json");

        aaiExtMap.setUri("/search/named-query");
        aaiExtMap.setApiVersion(schemaVersions.getDefaultVersion().toString());
        aaiExtMap.setServletRequest(request);

        response = searchGraph.runNamedQuery("JUNIT", "JUNIT", queryParameters, aaiExtMap);
        assertEquals("Expected success from query", 200, response.getStatus());
        boolean hasModelName =
            response.getEntity().toString().indexOf("example-model-name-val-component-list") > 0;
        assertTrue("Response contains modelName from model-ver", hasModelName);
    }
}