aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/test/java/org/onap/aai/rest/bulk/BulkSingleTransactionConsumerTest.java
blob: 6d652ab8f72914ca68eaaf7fd5682d3ecec5a1c3 (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
/**
 * ============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.rest.bulk;

import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.when;

import com.google.gson.JsonArray;
import com.google.gson.JsonParser;

import java.io.IOException;
import java.lang.reflect.Method;
import java.util.Iterator;
import java.util.Optional;

import javax.ws.rs.HttpMethod;
import javax.ws.rs.core.Response;

import org.apache.tinkerpop.gremlin.structure.Property;
import org.apache.tinkerpop.gremlin.structure.Vertex;
import org.apache.tinkerpop.gremlin.structure.VertexProperty;
import org.json.JSONException;
import org.json.JSONObject;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInfo;
import org.onap.aai.db.props.AAIProperties;
import org.onap.aai.dbmap.AAIGraph;
import org.onap.aai.rest.BulkConsumer;
import org.onap.aai.rest.BulkProcessorTestAbstraction;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.TestPropertySource;

@TestPropertySource(properties = {"delta.events.enabled=true",})
public class BulkSingleTransactionConsumerTest extends BulkProcessorTestAbstraction {

    private BulkSingleTransactionConsumer bulkSingleTransactionConsumer = new BulkSingleTransactionConsumer("/aai");

    
    public String name;

    private String sot = "Junit";

    @BeforeEach
    public void before(TestInfo testInfo) {
        Optional<Method> testMethod = testInfo.getTestMethod();
        if (testMethod.isPresent()) {
            this.name = testMethod.get().getName();
        }
        sot = "JUNIT-" + name;
        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);
        headersMultiMap.addFirst("X-FromAppId", sot);

    }

    @Test
    public void addPserverPatchSamePserverTest() throws IOException {

        String payload = getBulkPayload("single-transaction/put-patch-same-pserver").replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
        assertEquals(Long.valueOf(1L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "1 vertex from this test in graph");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has("fqdn", "patched-fqdn").count().next(),
                "1 vertex from this test  with fqdn = patched-fqdn");

    }

    @Test
    public void putPserverComplexRelBetween() throws IOException {

        String payload = getBulkPayload("single-transaction/put-pserver-complex-rel-between").replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
        assertEquals(Long.valueOf(2L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "2 vertex from this test in graph");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "complex").count()
                        .next(),
                "1 complex vertex");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "pserver").count()
                        .next(),
                "1 pserver vertex");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "pserver").bothE()
                        .otherV().has(AAIProperties.NODE_TYPE, "complex").has(AAIProperties.SOURCE_OF_TRUTH, sot)
                        .count().next(),
                "pserver has edge to complex");

    }

    @Test
    public void putPatchSamePserverPutAnotherPserver() throws IOException {
        String payload = getBulkPayload("single-transaction/put-patch-same-pserver-put-another-pserver")
                .replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
        assertEquals(Long.valueOf(2L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "2 vertex from this test in graph");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has("hostname", "pserver-1-" + name)
                        .has("fqdn", "patched-fqdn").count().next(),
                "pserver 1 has hostname pserver-1-" + name + " fqdn = patched-fqdn");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has("hostname", "pserver-2-" + name)
                        .count().next(),
                "pserver 2 has hostname pserver-2-" + name);
    }

    protected String asString(Vertex v) {
        final JSONObject result = new JSONObject();
        Iterator<VertexProperty<Object>> properties = v.properties();
        Property<Object> pk = null;
        try {
            while (properties.hasNext()) {
                pk = properties.next();
                result.put(pk.key(), pk.value());
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return result.toString();
    }

    @Test
    public void putPserverComplexRelBetweenDelExistingGvnf() throws IOException {

        AAIGraph.getInstance().getGraph().traversal().addV().property(AAIProperties.NODE_TYPE, "generic-vnf")
                .property(AAIProperties.SOURCE_OF_TRUTH, sot)
                .property(AAIProperties.AAI_URI,
                        "/network/generic-vnfs/generic-vnf/gvnf-putPserverComplexRelBetweenDelExistingGvnf")
                .property(AAIProperties.RESOURCE_VERSION, "0").property("vnf-id", "gvnf-" + name)
                .next();
        AAIGraph.getInstance().getGraph().tx().commit();

        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "generic-vnf").count()
                        .next(),
                "1 generic-vnf vertex exists before payload");

        String payload = getBulkPayload("single-transaction/put-pserver-complex-rel-between-del-existing-gvnf")
                .replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
        assertEquals(Long.valueOf(2L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "2 vertex from this test in graph");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "complex").count()
                        .next(),
                "1 complex vertex");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "pserver").count()
                        .next(),
                "1 pserver vertex");
        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "pserver").bothE()
                        .otherV().has(AAIProperties.NODE_TYPE, "complex").has(AAIProperties.SOURCE_OF_TRUTH, sot)
                        .count().next(),
                "pserver has edge to complex");
        assertEquals(Long.valueOf(0L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "generic-vnf").count()
                        .next(),
                "0 generic-vnf vertex exists after payload");

        assertThat("Response contains 204 status.", response.getEntity().toString(),
                containsString("\"response-status-code\":204"));

    }

    @Test
    public void putPserverComplexRelBetweenDelExistingGvnfFail() throws IOException {

        AAIGraph.getInstance().getGraph().traversal().addV().property(AAIProperties.NODE_TYPE, "generic-vnf")
                .property(AAIProperties.SOURCE_OF_TRUTH, sot)
                .property(AAIProperties.AAI_URI,
                        "/network/generic-vnfs/generic-vnf/gvnf-putPserverComplexRelBetweenDelExistingGvnfFail")
                .property(AAIProperties.RESOURCE_VERSION, "0").property("vnf-id", "gvnf-" + name)
                .next();
        AAIGraph.getInstance().getGraph().tx().commit();

        assertEquals(Long.valueOf(1L),
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V()
                        .has(AAIProperties.SOURCE_OF_TRUTH, sot).has(AAIProperties.NODE_TYPE, "generic-vnf").count()
                        .next(),
                "1 generic-vnf vertex exists before payload");

        String payload = getBulkPayload("single-transaction/put-pserver-complex-rel-between-del-existing-gvnf-fail")
                .replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        System.out.println(response.getEntity().toString());

        assertEquals(Response.Status.PRECONDITION_FAILED.getStatusCode(), response.getStatus(), "Request failed");

        assertEquals(Long.valueOf(1L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "1 vertex exists after payload due to failure");

        assertThat("Response contains resource version msg for failed transaction.", response.getEntity().toString(),
                containsString("Precondition Failed:resource-version MISMATCH for delete of generic-vnf"));

        assertThat("Response contains correct index of failed operation.", response.getEntity().toString(),
                containsString("Operation 3"));

        assertThat("Response contains correct status code.", response.getEntity().toString(),
                containsString("failed with status code (412"));

    }

    @Test
    public void checkExceedsLimit() throws IOException {

        String payload = getBulkPayload("single-transaction/pserver-bulk-limit-exceed");
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains payload limit msg.", response.getEntity().toString(),
                containsString("Payload Limit Reached, reduce payload: Allowed limit = "));
    }

    @Test
    public void invalidJson() {

        String payload = "{]}";// malformed json
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains invalid payload msg.", response.getEntity().toString(), containsString(
                "JSON processing error:Input payload does not follow bulk/single-transaction interface"));
    }

    @Test
    public void noOperations() {

        String payload = "{'operations':[]}";
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains invalid payload msg.", response.getEntity().toString(),
                containsString("Required Field not passed.: Payload has no objects to operate on"));
    }

    @Test
    public void invalidAction() throws IOException {

        String payload = getBulkPayload("single-transaction/invalid-action");
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains invalid payload msg.", response.getEntity().toString(),
                containsString("JSON processing error:input payload missing required properties"));
        assertThat("Response contains invalid payload details.", response.getEntity().toString(),
                containsString("[Operation 0 has invalid action 'create', Operation 1 has invalid action 'destroy']"));

    }

    @Test
    public void missingFields() throws IOException {

        String payload = getBulkPayload("single-transaction/missing-fields");
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains invalid payload msg.", response.getEntity().toString(),
                containsString("JSON processing error:input payload missing required properties"));
        assertThat("Response contains invalid payload details.", response.getEntity().toString(), containsString(
                "[Operation 0 missing 'body', Operation 1 missing 'action', Operation 2 missing 'uri']"));

    }

    @Test
    public void putComplexWithRelToNonExistentPserverBetween() throws IOException {

        String payload = getBulkPayload("single-transaction/put-complex-with-rel-to-non-existent")
                .replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus(), "Request success");
        assertEquals(Long.valueOf(0L), AAIGraph.getInstance().getGraph()
                .newTransaction().traversal().V().has(AAIProperties.SOURCE_OF_TRUTH, sot).count().next(), "0 vertex from this test in graph");
        assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatus(), "Request fails with 404");

        assertThat("Response contains correct index of failed operation.", response.getEntity().toString(),
                containsString("Operation 0"));

        assertThat("Response contains correct status code.", response.getEntity().toString(),
                containsString("failed with status code (404"));

        assertThat("Response contains correct msg.", response.getEntity().toString(),
                containsString("target node:Node of type pserver. Could not find"));

        assertThat("Response contains correct Error Code.", response.getEntity().toString(),
                containsString("ERR.5.4.6129"));

    }

    @Test
    public void deleteChildRecreateChildTest() throws IOException {
        JsonArray requests =
                JsonParser
                        .parseString(getBulkPayload("single-transaction/delete-child-recreate-child")
                                .replaceAll("<methodName>", name))
                        .getAsJsonObject().getAsJsonArray("array");
        String payload = requests.get(0).toString();
        Response response = executeRequest(payload);
        System.out.println(response.getEntity().toString());
        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");

        payload = requests.get(1).toString();
        response = executeRequest(payload);
        System.out.println(response.getEntity().toString());
        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
    }

    @Test
    public void deleteNodeRecreateNodeTest() throws IOException {
        JsonArray requests =
                JsonParser
                        .parseString(getBulkPayload("single-transaction/delete-node-recreate-node")
                                .replaceAll("<methodName>", name))
                        .getAsJsonObject().getAsJsonArray("array");
        String payload = requests.get(0).toString();
        Response response = executeRequest(payload);
        System.out.println(response.getEntity().toString());
        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");

        payload = requests.get(1).toString();
        response = executeRequest(payload);
        System.out.println(response.getEntity().toString());
        assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus(), "Request success");
    }

    @Test
    public void invalidNodeCreationPaylodTest() throws IOException {
        String payload = getBulkPayload("single-transaction/put-complex-with-missing-properties")
                .replaceAll("<methodName>", name);
        Response response = executeRequest(payload);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus(), "Request fails with 400");
        assertThat("Response contains correct index of failed operation.", response.getEntity().toString(),
                containsString("Error with operation 0"));
        assertThat("Response contains information about missing properties.", response.getEntity().toString(),
                containsString("Missing required property:"));
    }

    protected Response executeRequest(String finalPayload) {
        MockHttpServletRequest mockReq = new MockHttpServletRequest(HttpMethod.POST, "http://www.test.com");

        return bulkSingleTransactionConsumer.process(finalPayload, schemaVersions.getDefaultVersion().toString(),
                httpHeaders, uriInfo, mockReq);
    }

    @Override
    protected BulkConsumer getConsumer() {
        return null;
    }

    @Override
    protected String getUri() {
        return "/aai/" + schemaVersions.getDefaultVersion().toString() + "/bulk/single-transaction";
    }
}