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

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

import java.io.IOException;

import javax.ws.rs.core.Response;

import org.apache.commons.lang3.StringUtils;
import org.json.JSONException;
import org.junit.Test;
import org.onap.aai.dbmap.AAIGraph;
import org.skyscreamer.jsonassert.JSONAssert;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.mock.web.MockHttpServletRequest;

public class BulkProcessConsumerTest extends BulkProcessorTestAbstraction {

    private static final Logger logger = LoggerFactory.getLogger(BulkProcessConsumerTest.class.getName());
    private LegacyMoxyConsumer legacyMoxyConsumer;

    @Test
    public void bulkAddPayloadInBulkProcessTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("pserver-transactions");
        Response response = executeRequest(payload);

        assertEquals("Valid Response Code", Response.Status.CREATED.getStatusCode(), response.getStatus());
        assertEquals("Contains 3 {\"201\":null}", 3,
                StringUtils.countMatches(response.getEntity().toString(), "{\"201\":null}"));
    }

    @Test
    public void bulkProcessPayloadTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("pserver-bulk-process-transactions");
        Response response = executeRequest(payload);

        assertEquals("Valid Response Code", Response.Status.CREATED.getStatusCode(), response.getStatus());
        assertEquals("Contains 1 {\"201\":null}", 1,
                StringUtils.countMatches(response.getEntity().toString(), "{\"201\":null}"));
        assertEquals("Contains 1 {\"404\":\"{", 1,
                StringUtils.countMatches(response.getEntity().toString(), "{\"404\":\"{"));
        assertEquals("Contains 1 ERR.5.4.6114", 1,
                StringUtils.countMatches(response.getEntity().toString(), "ERR.5.4.6114"));
    }

    @Test
    public void bulkProcessPayloadWithPatchTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("pserver-bulk-process-transactions-with-patch");
        Response response = executeRequest(payload);
        System.out.println(response.getEntity());
        System.out.println(
                AAIGraph.getInstance().getGraph().newTransaction().traversal().V().has("fqdn", "NEW").count().next());
        assertEquals("Valid Response Code", Response.Status.CREATED.getStatusCode(), response.getStatus());
    }

    @Test
    public void bulkProcessComplexDeletePayloadTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("complex-bulk-process-transactions");
        Response response = executeRequest(payload);

        System.out.println(response.getEntity().toString());
        assertEquals("Valid Response Code", Response.Status.CREATED.getStatusCode(), response.getStatus());
        assertEquals("Contains 0 {\"201\":null}", 0,
                StringUtils.countMatches(response.getEntity().toString(), "{\"201\":null}"));
        assertEquals("Contains 1 {\"404\":\"{", 1,
                StringUtils.countMatches(response.getEntity().toString(), "{\"404\":\"{"));
        assertEquals("Contains 1 ERR.5.4.6114", 1,
                StringUtils.countMatches(response.getEntity().toString(), "ERR.5.4.6114"));
    }

    @Test
    public void testBulkDeletePserverAndComplexRelationship() throws IOException, JSONException {

        legacyMoxyConsumer = new LegacyMoxyConsumer();

        String pserverData = getPayload("payloads/relationship/pserver-bugfix.json");
        String complexData = getPayload("payloads/relationship/complex-bugfix.json");

        String hostname = "pserver-9876543210-77-jenkins";
        String physicalLocationId = "complex-987654321-77-jenkins";

        String pserverUri = String.format("cloud-infrastructure/pservers/pserver/%s", hostname);
        String complexUri = String.format("cloud-infrastructure/complexes/complex/%s", physicalLocationId);

        doSetupResource(pserverUri, pserverData);
        doSetupResource(complexUri, complexData);

        String complexToPserverRelationshipData =
                getPayload("payloads/relationship/pserver-complex-relationship-for-bulk.json");
        String complexToPserverRelationshipUri =
                String.format("cloud-infrastructure/pservers/pserver/%s/relationship-list/relationship", hostname);

        Response response = legacyMoxyConsumer.updateRelationship(complexToPserverRelationshipData,
                schemaVersions.getDefaultVersion().toString(), complexToPserverRelationshipUri, httpHeaders, uriInfo,
                new MockHttpServletRequest("DELETE", "http://www.test.com"));

        assertNotNull("Response from the legacy moxy consumer returned null", response);
        int code = response.getStatus();
        if (!VALID_HTTP_STATUS_CODES.contains(code)) {
            System.out.println("Response Code: " + code + "\tEntity: " + response.getEntity());
        }

        assertEquals("Expected to return status created from the response", Response.Status.OK.getStatusCode(),
                response.getStatus());
        logger.info("Response Code: " + code + "\tEntity: " + response.getEntity());

        // TODO - Need to actually verify the relationship between pserver and cloud-region

        String payload = getBulkPayload("complex-bulk-process-delete-transactions");
        Response responseBulkDelete = executeRequest(payload);

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

        code = responseBulkDelete.getStatus();

        if (!VALID_HTTP_STATUS_CODES.contains(code)) {
            System.out.println("Response Code: " + code + "\tEntity: " + responseBulkDelete.getEntity());
            System.out.println("Response Code: " + code + "\tEntity: " + responseBulkDelete.getEntity());
        }
        assertEquals("Expected to return status created from the response", Response.Status.CREATED.getStatusCode(),
                responseBulkDelete.getStatus());
        assertEquals("Contains 0 {\"204\":null}", 1,
                StringUtils.countMatches(responseBulkDelete.getEntity().toString(), "{\"204\":null}"));

    }

    protected void doSetupResource(String uri, String payload) throws JSONException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        Response response = legacyMoxyConsumer.getLegacy("", "-1", "-1", schemaVersions.getDefaultVersion().toString(),
                uri, "all", "false", httpHeaders, uriInfo, new MockHttpServletRequest("GET", "http://www.test.com"));

        assertNotNull("Response from the legacy moxy consumer returned null", response);
        assertEquals("Expected to not have the data already in memory", Response.Status.NOT_FOUND.getStatusCode(),
                response.getStatus());

        response = legacyMoxyConsumer.update(payload, schemaVersions.getDefaultVersion().toString(), uri, httpHeaders,
                uriInfo, new MockHttpServletRequest("PUT", "http://www.test.com"));

        assertNotNull("Response from the legacy moxy consumer returned null", response);
        int code = response.getStatus();
        if (!VALID_HTTP_STATUS_CODES.contains(code)) {
            System.out.println("Response Code: " + code + "\tEntity: " + response.getEntity());
        }
        assertEquals("Expected to return status created from the response", Response.Status.CREATED.getStatusCode(),
                response.getStatus());

        queryParameters.add("depth", "10000");
        response = legacyMoxyConsumer.getLegacy("", "-1", "-1", schemaVersions.getDefaultVersion().toString(), uri,
                "all", "false", httpHeaders, uriInfo, new MockHttpServletRequest("GET", "http://www.test.com"));

        assertNotNull("Response from the legacy moxy consumer returned null", response);
        assertEquals("Expected to return the pserver data that was just put in memory",
                Response.Status.OK.getStatusCode(), response.getStatus());

        if ("".equalsIgnoreCase(payload)) {
            payload = "{}";
        }

        JSONAssert.assertEquals(payload, response.getEntity().toString(), false);
    }

    @Test
    public void bulkAddInvalidMethodTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("pserver-transactions-invalid-method");
        Response response = executeRequest(payload);

        assertEquals("Valid Response Code", Response.Status.CREATED.getStatusCode(), response.getStatus());
        assertEquals("Contains 1 {\"400\":\"{", 1,
                StringUtils.countMatches(response.getEntity().toString(), "{\"400\":\"{"));
        assertEquals("Contains 1 ERR.5.4.6118", 1,
                StringUtils.countMatches(response.getEntity().toString(), "ERR.5.4.6118"));
    }

    @Test
    public void bulkAddThrowExceptionWhenPayloadContainsNoTransactionsTest() {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = "{\"transactions\":[]}";
        Response response = executeRequest(payload);

        assertEquals("Bad Request", Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
        assertEquals("Contains error code", true, response.getEntity().toString().contains("ERR.5.4.6118"));
    }

    @Test
    public void bulkAddThrowExceptionWhenInvalidJsonTest() throws IOException {

        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = "{";
        Response response = executeRequest(payload);

        assertEquals("Bad Request", Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
        assertEquals("Contains error code", true, response.getEntity().toString().contains("ERR.5.4.6111"));
    }

    @Test
    public void bulkProcessCheckMeetsLimit() throws IOException {
        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

        String payload = getBulkPayload("pserver-bulk-limit-meet");
        Response response = executeRequest(payload);

        assertEquals("Created", Response.Status.CREATED.getStatusCode(), response.getStatus());
        assertEquals("Contains 30 {\"201\":null}", 30,
                StringUtils.countMatches(response.getEntity().toString(), "{\"201\":null}"));
    }

    @Test
    public void bulkProcessCheckExceedsLimit() throws IOException {
        when(uriInfo.getPath()).thenReturn(uri);
        when(uriInfo.getPath(false)).thenReturn(uri);

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

        assertEquals("Bad Request", Response.Status.BAD_REQUEST.getStatusCode(), response.getStatus());
        assertEquals("Contains error code", true, response.getEntity().toString().contains("ERR.5.4.6147"));
    }

    @Override
    protected BulkConsumer getConsumer() {
        return new BulkProcessConsumer();
    }

    @Override
    protected String getUri() {
        return "/aai/" + schemaVersions.getDefaultVersion().toString() + "/bulkprocess";
    }
}