23071eb57dc6380e8a080ef075778a29bd760b60
[aai/search-data-service.git] / src / test / java / org / onap / aai / sa / rest / BulkApiTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sa.rest;
22
23
24 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
25 import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
26
27 import java.io.File;
28 import java.io.IOException;
29 import org.junit.Test;
30 import org.junit.runner.RunWith;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
33 import org.springframework.boot.test.context.SpringBootTest;
34 import org.springframework.http.MediaType;
35 import org.springframework.test.context.junit4.SpringRunner;
36 import org.springframework.test.web.servlet.MockMvc;
37
38
39 /**
40  * This suite of tests validates the behaviour of the bulk operations REST end point.
41  */
42 @RunWith(SpringRunner.class)
43 @SpringBootTest(classes = org.onap.aai.sa.Application.class)
44 @AutoConfigureMockMvc
45 public class BulkApiTest {
46
47     private final String TOP_URI = "/test/bulk";
48
49     @Autowired
50     private MockMvc mockMvc;
51
52     @Test
53     public void authenticationFailureTest() throws Exception {
54
55         this.mockMvc
56                 .perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON)
57                         .content(SearchServiceApiHarness.FAIL_AUTHENTICATION_TRIGGER))
58                 .andExpect(status().isForbidden());
59     }
60
61
62     /**
63      * This test validates that properly constructed json payloads are correctly validated and that improperly
64      * contructed payloads will be rejected with the appropriate response code returned to the client.
65      *
66      * @throws IOException
67      */
68     @Test
69     public void payloadValidationTest() throws Exception {
70
71         // Post a request to the bulk operations endpoint with a valid
72         // operations list payload.
73         File validBulkOpsFile = new File("src/test/resources/json/bulk-ops-valid.json");
74         String validPayloadStr = TestUtils.readFileToString(validBulkOpsFile);
75
76         // Validate that the payload is accepted as expected.
77         this.mockMvc.perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON).content(validPayloadStr))
78                 .andExpect(status().isOk());
79
80         // Post a request to the bulk operations endpoint with an invalid
81         // operations list payload.
82         File inValidBulkOpsFile = new File("src/test/resources/json/bulk-ops-invalid.json");
83         String inValidPayloadStr = TestUtils.readFileToString(inValidBulkOpsFile);
84         this.mockMvc.perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON).content(inValidPayloadStr))
85                 .andExpect(status().isBadRequest());
86     }
87 }