a38686f153c588ce924dd8a6cc4131e17f53e1c4
[aai/babel.git] / src / test / java / org / onap / aai / babel / service / TestGenerateArtifactsServiceImpl.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2019 European Software Marketing Ltd.
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
22 package org.onap.aai.babel.service;
23
24 import static org.hamcrest.Matchers.is;
25 import static org.junit.Assert.assertThat;
26
27 import com.google.gson.Gson;
28 import java.io.IOException;
29 import java.net.URI;
30 import java.net.URISyntaxException;
31 import java.security.cert.X509Certificate;
32 import java.util.Collections;
33 import java.util.List;
34 import java.util.Map.Entry;
35 import javax.inject.Inject;
36 import javax.security.auth.x500.X500Principal;
37 import javax.ws.rs.core.HttpHeaders;
38 import javax.ws.rs.core.MultivaluedHashMap;
39 import javax.ws.rs.core.Response;
40 import javax.ws.rs.core.UriInfo;
41 import org.junit.BeforeClass;
42 import org.junit.Test;
43 import org.junit.runner.RunWith;
44 import org.mockito.Mockito;
45 import org.onap.aai.auth.AAIMicroServiceAuth;
46 import org.onap.aai.babel.service.data.BabelRequest;
47 import org.onap.aai.babel.testdata.CsarTest;
48 import org.onap.aai.babel.util.ArtifactTestUtils;
49 import org.springframework.mock.web.MockHttpServletRequest;
50 import org.springframework.test.context.ContextConfiguration;
51 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
52
53 /**
54  * Direct invocation of the generate artifacts service implementation.
55  *
56  */
57 @RunWith(SpringJUnit4ClassRunner.class)
58 @ContextConfiguration(locations = {"classpath:/babel-beans.xml"})
59 public class TestGenerateArtifactsServiceImpl {
60
61     static {
62         if (System.getProperty("APP_HOME") == null) {
63             System.setProperty("APP_HOME", ".");
64         }
65         System.setProperty("CONFIG_HOME", "src/test/resources");
66     }
67
68
69     @Inject
70     private AAIMicroServiceAuth auth;
71
72     @BeforeClass
73     public static void setup() {
74         new ArtifactTestUtils().setGeneratorSystemProperties();
75
76     }
77
78     @Test
79     public void testGenerateArtifacts() throws Exception {
80         Response response = processJsonRequest(CsarTest.VNF_VENDOR_CSAR);
81         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
82         assertThat(response.getEntity(), is(getResponseJson("response.json")));
83     }
84
85     /**
86      * No VNF Configuration exists.
87      * 
88      * @throws URISyntaxException
89      *             if the URI cannot be created
90      * @throws IOException
91      *             if the resource cannot be loaded
92      */
93     @Test
94     public void testGenerateArtifactsWithoutVnfConfiguration() throws IOException, URISyntaxException {
95         Response response = processJsonRequest(CsarTest.NO_VNF_CONFIG_CSAR);
96         assertThat(response.getStatus(), is(Response.Status.OK.getStatusCode()));
97         assertThat(response.getEntity(), is(getResponseJson("validNoVnfConfigurationResponse.json")));
98     }
99
100     @Test
101     public void testInvalidCsarFile() throws URISyntaxException, IOException {
102         BabelRequest request = new BabelRequest();
103         request.setArtifactName("hello");
104         request.setArtifactVersion("1.0");
105         request.setCsar("xxxx");
106         Response response = invokeService(new Gson().toJson(request));
107         assertThat(response.getStatus(), is(Response.Status.INTERNAL_SERVER_ERROR.getStatusCode()));
108         assertThat(response.getEntity(), is("Error converting CSAR artifact to XML model."));
109     }
110
111     @Test
112     public void testInvalidJsonFile() throws URISyntaxException, IOException {
113         Response response = invokeService("{\"csar:\"xxxx\"");
114         assertThat(response.getStatus(), is(Response.Status.BAD_REQUEST.getStatusCode()));
115         assertThat(response.getEntity(), is("Malformed request."));
116     }
117
118     @Test
119     public void testMissingArtifactName() throws Exception {
120         BabelRequest request = new BabelRequest();
121         request.setArtifactVersion("1.0");
122         request.setCsar("");
123         Response response = invokeService(new Gson().toJson(request));
124         assertThat(response.getStatus(), is(Response.Status.BAD_REQUEST.getStatusCode()));
125         assertThat(response.getEntity(), is("No artifact name attribute found in the request body."));
126     }
127
128     @Test
129     public void testMissingArtifactVersion() throws Exception {
130         BabelRequest request = new BabelRequest();
131         request.setArtifactName("hello");
132         request.setCsar("");
133         Response response = invokeService(new Gson().toJson(request));
134         assertThat(response.getStatus(), is(Response.Status.BAD_REQUEST.getStatusCode()));
135         assertThat(response.getEntity(), is("No artifact version attribute found in the request body."));
136     }
137
138     @Test
139     public void testMissingCsarFile() throws Exception {
140         BabelRequest request = new BabelRequest();
141         request.setArtifactName("test-name");
142         request.setArtifactVersion("1.0");
143         Response response = invokeService(new Gson().toJson(request));
144         assertThat(response.getStatus(), is(Response.Status.BAD_REQUEST.getStatusCode()));
145         assertThat(response.getEntity(), is("No csar attribute found in the request body."));
146     }
147
148     /**
149      * Create a (mocked) HTTPS request and invoke the Babel generate artifacts API.
150      *
151      * @param csar
152      *            test CSAR file
153      * @return the Response from the HTTP API
154      * @throws URISyntaxException
155      *             if the URI cannot be created
156      * @throws IOException
157      *             if the resource cannot be loaded
158      */
159     private Response processJsonRequest(CsarTest csar) throws IOException, URISyntaxException {
160         String jsonString = csar.getJsonRequest();
161         return invokeService(jsonString);
162     }
163
164     /**
165      * Create a (mocked) HTTPS request and invoke the Babel generate artifacts API.
166      *
167      * @param jsonString
168      *            the JSON request
169      * @return the Response from the HTTP API
170      * @throws URISyntaxException
171      *             if the URI cannot be created
172      */
173     private Response invokeService(String jsonString) throws URISyntaxException {
174         UriInfo mockUriInfo = Mockito.mock(UriInfo.class);
175         Mockito.when(mockUriInfo.getRequestUri()).thenReturn(new URI("/validate")); // NOSONAR (mocked)
176         Mockito.when(mockUriInfo.getPath(false)).thenReturn("validate"); // URI prefix is stripped by AJSC routing
177         Mockito.when(mockUriInfo.getPathParameters()).thenReturn(new MultivaluedHashMap<String, String>());
178
179         // Create mocked request headers map
180         MultivaluedHashMap<String, String> headersMap = new MultivaluedHashMap<>();
181         headersMap.put("X-TransactionId", createSingletonList("transaction-id"));
182         headersMap.put("X-FromAppId", createSingletonList("app-id"));
183         headersMap.put("Host", createSingletonList("hostname"));
184
185         HttpHeaders headers = Mockito.mock(HttpHeaders.class);
186         for (Entry<String, List<String>> entry : headersMap.entrySet()) {
187             Mockito.when(headers.getRequestHeader(entry.getKey())).thenReturn(entry.getValue());
188         }
189         Mockito.when(headers.getRequestHeaders()).thenReturn(headersMap);
190
191         MockHttpServletRequest servletRequest = new MockHttpServletRequest();
192         servletRequest.setSecure(true);
193         servletRequest.setScheme("https");
194         servletRequest.setServerPort(9501);
195         servletRequest.setServerName("localhost");
196         servletRequest.setRequestURI("/services/validation-service/v1/app/validate");
197
198         X509Certificate mockCertificate = Mockito.mock(X509Certificate.class);
199         Mockito.when(mockCertificate.getSubjectX500Principal())
200                 .thenReturn(new X500Principal("CN=test, OU=qa, O=Test Ltd, L=London, ST=London, C=GB"));
201
202         servletRequest.setAttribute("javax.servlet.request.X509Certificate", new X509Certificate[] {mockCertificate});
203         servletRequest.setAttribute("javax.servlet.request.cipher_suite", "");
204
205         GenerateArtifactsServiceImpl service = new GenerateArtifactsServiceImpl(auth);
206         return service.generateArtifacts(mockUriInfo, headers, servletRequest, jsonString);
207     }
208
209     private String getResponseJson(String jsonResponse) throws IOException, URISyntaxException {
210         return new ArtifactTestUtils().getResponseJson(jsonResponse);
211     }
212
213     private List<String> createSingletonList(String listItem) {
214         return Collections.<String>singletonList(listItem);
215     }
216
217 }