Format Java code to ONAP standard
[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 import org.springframework.test.web.servlet.ResultActions;
38
39
40 /**
41  * This suite of tests validates the behaviour of the bulk operations REST end point.
42  */
43 @RunWith(SpringRunner.class)
44 @SpringBootTest(classes = org.onap.aai.sa.Application.class)
45 @AutoConfigureMockMvc
46 public class BulkApiTest {
47
48     private final String TOP_URI = "/test/bulk";
49
50     @Autowired
51     private MockMvc mockMvc;
52
53     @Test
54     public void authenticationFailureTest() throws Exception {
55
56         this.mockMvc
57                 .perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON)
58                         .content(SearchServiceApiHarness.FAIL_AUTHENTICATION_TRIGGER))
59                 .andExpect(status().isForbidden());
60     }
61
62
63     /**
64      * This test validates that properly constructed json payloads are correctly validated and that improperly
65      * contructed payloads will be rejected with the appropriate response code returned to the client.
66      *
67      * @throws IOException
68      */
69     @Test
70     public void payloadValidationTest() throws Exception {
71
72         // Post a request to the bulk operations endpoint with a valid
73         // operations list payload.
74         File validBulkOpsFile = new File("src/test/resources/json/bulk-ops-valid.json");
75         String validPayloadStr = TestUtils.readFileToString(validBulkOpsFile);
76
77         // Validate that the payload is accepted as expected.
78         this.mockMvc.perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON).content(validPayloadStr))
79                 .andExpect(status().isOk());
80
81
82         // Post a request to the bulk operations endpoint with an invalid
83         // operations list payload.
84         File inValidBulkOpsFile = new File("src/test/resources/json/bulk-ops-invalid.json");
85         String inValidPayloadStr = TestUtils.readFileToString(inValidBulkOpsFile);
86         ResultActions invalid =
87                 this.mockMvc.perform(post(TOP_URI).contentType(MediaType.APPLICATION_JSON).content(inValidPayloadStr))
88                         .andExpect(status().isBadRequest());
89     }
90 }