Catalog alignment
[sdc.git] / catalog-fe / src / test / java / org / openecomp / sdc / fe / impl / HttpRequestInfoTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22
23 package org.openecomp.sdc.fe.impl;
24
25 import org.apache.commons.io.IOUtils;
26 import org.junit.Assert;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Mock;
30 import org.mockito.Mockito;
31 import org.mockito.junit.MockitoJUnitRunner;
32
33 import javax.servlet.http.HttpServletRequest;
34 import java.io.IOException;
35 import java.util.HashMap;
36 import java.util.Map;
37
38 import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
39
40 @RunWith(MockitoJUnitRunner.class)
41 public class HttpRequestInfoTest {
42
43     @Mock
44     private HttpServletRequest request;
45     private Map<String, String> headersMap = new HashMap<>();
46
47     @Test
48     public void shouldHaveGettersAndSetters() {
49         Assert.assertThat(HttpRequestInfo.class, hasValidGettersAndSetters());
50     }
51
52     @Test
53     public void shouldHaveValidConstructor() throws IOException {
54         String any_url = "ANY_URL";
55         Mockito.when(request.getRequestURI()).thenReturn(any_url);
56         String context = "PATH";
57         Mockito.when(request.getContextPath()).thenReturn(context);
58         String data = "ABC";
59         HttpRequestInfo httpRequestInfo = new HttpRequestInfo(request, headersMap, data);
60         byte[] requestData = IOUtils.toByteArray(httpRequestInfo.getRequestData());
61         Assert.assertArrayEquals(requestData, data.getBytes());
62         Assert.assertEquals(httpRequestInfo.getRequestURL(), any_url);
63         Assert.assertEquals(httpRequestInfo.getOriginServletContext(), context);
64     }
65 }