aboutsummaryrefslogtreecommitdiffstats
path: root/mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/OrchestrationRequestsTest.java
blob: 582bc120772f94f74d375a02110ff38df8e60a17 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 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.so.apihandlerinfra;

import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.apache.http.HttpStatus;
import org.junit.Ignore;
import org.junit.Test;
import org.onap.so.apihandler.common.ErrorNumbers;
import org.onap.so.db.request.beans.InfraActiveRequests;
import org.onap.so.db.request.data.repository.InfraActiveRequestsRepository;
import org.onap.so.exceptions.ValidationException;
import org.onap.so.requestsdb.client.RequestsDbClient;
import org.onap.so.serviceinstancebeans.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.web.util.UriComponentsBuilder;

import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import static com.github.tomakehurst.wiremock.client.WireMock.*;
import static com.shazam.shazamcrest.MatcherAssert.assertThat;
import static com.shazam.shazamcrest.matcher.Matchers.sameBeanAs;
import static org.junit.Assert.assertEquals;

public class OrchestrationRequestsTest extends BaseTest {
    @Autowired
    private InfraActiveRequestsRepository iar;

    @Autowired
    private RequestsDbClient requestsDbClient;

    private static final String CHECK_HTML = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title></title></head><body></body></html>";
    private static final GetOrchestrationListResponse ORCHESTRATION_LIST = generateOrchestrationList();
    private static final String INVALID_REQUEST_ID = "invalid-request-id";

    private static GetOrchestrationListResponse generateOrchestrationList() {
        GetOrchestrationListResponse list = null;
        try {
            ObjectMapper mapper = new ObjectMapper();
            list = mapper.readValue(new File("src/test/resources/OrchestrationRequest/OrchestrationList.json"),
                    GetOrchestrationListResponse.class);
        } catch (JsonParseException jpe) {
            jpe.printStackTrace();
        } catch (JsonMappingException jme) {
            jme.printStackTrace();
        } catch (IOException ioe) {
            ioe.printStackTrace();
        }
        return list;
    }

    @Test
    public void testGetOrchestrationRequest() throws Exception {
        setupTestGetOrchestrationRequest();
        // TEST VALID REQUEST
        GetOrchestrationResponse testResponse = new GetOrchestrationResponse();

        Request request = ORCHESTRATION_LIST.getRequestList().get(1).getRequest();
        testResponse.setRequest(request);
        String testRequestId = request.getRequestId();

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v7/" + testRequestId));

        ResponseEntity<GetOrchestrationResponse> response = restTemplate.exchange(builder.toUriString(), HttpMethod.GET,
                entity, GetOrchestrationResponse.class);

        assertEquals(Response.Status.OK.getStatusCode(), response.getStatusCode().value());
        assertThat(response.getBody(),
                sameBeanAs(testResponse).ignoring("request.startTime").ignoring("request.requestStatus.finishTime"));
        assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
        assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
        assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
        assertEquals("7.0.0", response.getHeaders().get("X-LatestVersion").get(0));
        assertEquals("00032ab7-na18-42e5-965d-8ea592502018", response.getHeaders().get("X-TransactionID").get(0));
    }

    @Test
    public void testGetOrchestrationRequestRequestDetails() throws Exception {
        setupTestGetOrchestrationRequestRequestDetails("00032ab7-3fb3-42e5-965d-8ea592502017", "COMPLETED");
        //Test request with modelInfo request body
        GetOrchestrationResponse testResponse = new GetOrchestrationResponse();

        Request request = ORCHESTRATION_LIST.getRequestList().get(0).getRequest();
        testResponse.setRequest(request);
        String testRequestId = request.getRequestId();

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v7/" + testRequestId));

        ResponseEntity<GetOrchestrationResponse> response = restTemplate.exchange(builder.toUriString(), HttpMethod.GET,
                entity, GetOrchestrationResponse.class);

        assertEquals(Response.Status.OK.getStatusCode(), response.getStatusCode().value());
        assertThat(response.getBody(),
                sameBeanAs(testResponse).ignoring("request.startTime").ignoring("request.requestStatus.finishTime"));
        assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
        assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
        assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
        assertEquals("7.0.0", response.getHeaders().get("X-LatestVersion").get(0));
        assertEquals("00032ab7-3fb3-42e5-965d-8ea592502017", response.getHeaders().get("X-TransactionID").get(0));
    }

    @Test
    public void testGetOrchestrationRequestNoRequestID() {
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);
        headers.set("Accept", MediaType.APPLICATION_JSON);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v6/"));

        ResponseEntity<GetOrchestrationListResponse> response = restTemplate.exchange(builder.toUriString(),
                HttpMethod.GET, entity, GetOrchestrationListResponse.class);
        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatusCode().value());
    }

    @Test
    public void testGetOrchestrationRequestFilter() throws Exception {
        setupTestGetOrchestrationRequestFilter();
        List<String> values = new ArrayList<>();
        values.add("EQUALS");
        values.add("vfModule");

        Map<String, List<String>> orchestrationMap = new HashMap<>();
        orchestrationMap.put("modelType", values);

        List<InfraActiveRequests> requests = requestsDbClient.getOrchestrationFiltersFromInfraActive(orchestrationMap);
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);
        headers.set("Accept", MediaType.APPLICATION_JSON);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v6?filter=modelType:EQUALS:vfModule"));

        ResponseEntity<GetOrchestrationListResponse> response = restTemplate.exchange(builder.toUriString(),
                HttpMethod.GET, entity, GetOrchestrationListResponse.class);
        assertEquals(Response.Status.OK.getStatusCode(), response.getStatusCode().value());
        assertEquals(requests.size(), response.getBody().getRequestList().size());
    }

    @Test
    public void testUnlockOrchestrationRequest() throws Exception {
        setupTestUnlockOrchestrationRequest("0017f68c-eb2d-45bb-b7c7-ec31b37dc349", "UNLOCKED");
        ObjectMapper mapper = new ObjectMapper();
        mapper.configure(DeserializationFeature.UNWRAP_ROOT_VALUE, true);
        String requestJSON = new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/Request.json")));

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<String> entity = new HttpEntity<String>(requestJSON, headers);

        UriComponentsBuilder builder;
        ResponseEntity<String> response;
        RequestError expectedRequestError;
        RequestError actualRequestError;
        ServiceException se;

        // Test invalid JSON
        expectedRequestError = new RequestError();
        se = new ServiceException();
        se.setMessageId(ErrorNumbers.SVC_DETAILED_SERVICE_ERROR);
        se.setText("Orchestration RequestId 0017f68c-eb2d-45bb-b7c7-ec31b37dc349 has a status of UNLOCKED and can not be unlocked");
        expectedRequestError.setServiceException(se);

        builder = UriComponentsBuilder.fromHttpUrl(
                createURLWithPort("/onap/so/infra/orchestrationRequests/v6/0017f68c-eb2d-45bb-b7c7-ec31b37dc349/unlock"));

        response = restTemplate.exchange(builder.toUriString(), HttpMethod.POST, entity, String.class);
        actualRequestError = mapper.readValue(response.getBody(), RequestError.class);

        assertEquals(Response.Status.BAD_REQUEST.getStatusCode(), response.getStatusCode().value());
        assertThat(actualRequestError, sameBeanAs(expectedRequestError));
    }

    @Test
    public void testUnlockOrchestrationRequest_invalid_Json() throws Exception {
        setupTestUnlockOrchestrationRequest_invalid_Json();
        ObjectMapper mapper = new ObjectMapper();
        mapper.configure(DeserializationFeature.UNWRAP_ROOT_VALUE, true);
        String requestJSON = new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/Request.json")));

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<String> entity = new HttpEntity<String>(requestJSON, headers);

        UriComponentsBuilder builder;
        ResponseEntity<String> response;
        RequestError expectedRequestError;
        RequestError actualRequestError;
        ServiceException se;

        // Test invalid requestId
        expectedRequestError = new RequestError();
        se = new ServiceException();
        se.setMessageId(ErrorNumbers.SVC_DETAILED_SERVICE_ERROR);
        se.setText("Null response from RequestDB when searching by RequestId");
        expectedRequestError.setServiceException(se);

        builder = UriComponentsBuilder.fromHttpUrl(
                createURLWithPort("/onap/so/infra/orchestrationRequests/v6/" + INVALID_REQUEST_ID + "/unlock"));

        response = restTemplate.exchange(builder.toUriString(), HttpMethod.POST, entity, String.class);
        actualRequestError = mapper.readValue(response.getBody(), RequestError.class);

        assertEquals(Response.Status.NOT_FOUND.getStatusCode(), response.getStatusCode().value());
        assertThat(actualRequestError, sameBeanAs(expectedRequestError));
    }

    @Test
    public void testUnlockOrchestrationRequest_Valid_Status()
            throws JsonParseException, JsonMappingException, IOException, ValidationException {
        setupTestUnlockOrchestrationRequest_Valid_Status("5ffbabd6-b793-4377-a1ab-082670fbc7ac", "PENDING");
        ObjectMapper mapper = new ObjectMapper();
        String requestJSON = new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/Request.json")));

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<String> entity = new HttpEntity<String>(requestJSON, headers);

        UriComponentsBuilder builder;
        ResponseEntity<String> response;
        Request request;

        // Test valid status
        request = ORCHESTRATION_LIST.getRequestList().get(1).getRequest();
        builder = UriComponentsBuilder.fromHttpUrl(
                createURLWithPort("/onap/so/infra/orchestrationRequests/v7/" + "5ffbabd6-b793-4377-a1ab-082670fbc7ac" + "/unlock"));

        response = restTemplate.exchange(builder.toUriString(), HttpMethod.POST, entity, String.class);
        //Cannot assert anything further here, already have a wiremock in place which ensures that the post was properly called to update.
    }

    @Ignore //What is this testing?
    @Test
    public void testGetOrchestrationRequestRequestDetailsWhiteSpace() throws Exception {
        InfraActiveRequests requests = new InfraActiveRequests();
        requests.setAction("create");
        requests.setRequestBody("  ");
        requests.setRequestId("requestId");
        requests.setRequestScope("service");
        requests.setRequestType("createInstance");
        ObjectMapper mapper = new ObjectMapper();
        String json = mapper.writeValueAsString(requests);

        requestsDbClient.save(requests);

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v7/requestId"));

        ResponseEntity<GetOrchestrationResponse> response = restTemplate.exchange(builder.toUriString(), HttpMethod.GET,
                entity, GetOrchestrationResponse.class);

        assertEquals(Response.Status.OK.getStatusCode(), response.getStatusCode().value());
        assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
        assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
        assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
        assertEquals("7.0.0", response.getHeaders().get("X-LatestVersion").get(0));
        assertEquals("requestId", response.getHeaders().get("X-TransactionID").get(0));
    }

    @Ignore //What is this testing?
    @Test
    public void testGetOrchestrationRequestRequestDetailsAlaCarte() throws IOException {
        InfraActiveRequests requests = new InfraActiveRequests();

        String requestJSON = new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/AlaCarteRequest.json")));

        requests.setAction("create");
        requests.setRequestBody(requestJSON);
        requests.setRequestId("requestId");
        requests.setRequestScope("service");
        requests.setRequestType("createInstance");
        iar.save(requests);

        headers.set("Accept", MediaType.APPLICATION_JSON);
        headers.set("Content-Type", MediaType.APPLICATION_JSON);
        HttpEntity<Request> entity = new HttpEntity<Request>(null, headers);

        UriComponentsBuilder builder = UriComponentsBuilder
                .fromHttpUrl(createURLWithPort("/onap/so/infra/orchestrationRequests/v7/requestId"));

        ResponseEntity<GetOrchestrationResponse> response = restTemplate.exchange(builder.toUriString(), HttpMethod.GET,
                entity, GetOrchestrationResponse.class);

        assertEquals(Response.Status.OK.getStatusCode(), response.getStatusCode().value());
        assertEquals("application/json", response.getHeaders().get(HttpHeaders.CONTENT_TYPE).get(0));
        assertEquals("0", response.getHeaders().get("X-MinorVersion").get(0));
        assertEquals("0", response.getHeaders().get("X-PatchVersion").get(0));
        assertEquals("7.0.0", response.getHeaders().get("X-LatestVersion").get(0));
        assertEquals("requestId", response.getHeaders().get("X-TransactionID").get(0));
    }

    public void setupTestGetOrchestrationRequest() throws Exception{
        //For testGetOrchestrationRequest
        stubFor(any(urlPathEqualTo("/infraActiveRequests/00032ab7-na18-42e5-965d-8ea592502018")).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/getOrchestrationRequest.json"))))
                .withStatus(HttpStatus.SC_OK)));
    }

    private void setupTestGetOrchestrationRequestRequestDetails(String requestId, String status) throws Exception{
        stubFor(get(urlPathEqualTo(getTestUrl(requestId))).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/getOrchestrationRequestDetails.json"))))
                .withStatus(HttpStatus.SC_OK)));
    }

    private void setupTestUnlockOrchestrationRequest(String requestId, String status) {
        stubFor(get(urlPathEqualTo(getTestUrl(requestId))).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(String.format(getResponseTemplate, requestId, status))
                .withStatus(HttpStatus.SC_OK)));

    }



    private void setupTestUnlockOrchestrationRequest_invalid_Json() {
        stubFor(get(urlPathEqualTo(getTestUrl(INVALID_REQUEST_ID))).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withStatus(HttpStatus.SC_NOT_FOUND)));

    }

    private void setupTestUnlockOrchestrationRequest_Valid_Status(String requestID, String status) {
        stubFor(get(urlPathEqualTo(getTestUrl(requestID))).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(String.format(getResponseTemplate, requestID, status))
                .withStatus(HttpStatus.SC_OK)));

        stubFor(post(urlPathEqualTo(getTestUrl(""))).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(String.format(infraActivePost, requestID))
                .withStatus(HttpStatus.SC_OK)));
    }

    private void setupTestGetOrchestrationRequestFilter() throws Exception{
        //for testGetOrchestrationRequestFilter();
        stubFor(any(urlPathEqualTo("/infraActiveRequests/getOrchestrationFiltersFromInfraActive/")).withRequestBody(equalToJson("{\"modelType\":[\"EQUALS\",\"vfModule\"]}")).willReturn(aResponse().withHeader(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON)
                .withBody(new String(Files.readAllBytes(Paths.get("src/test/resources/OrchestrationRequest/getRequestDetailsFilter.json"))))
                .withStatus(HttpStatus.SC_OK)));
    }
}