update the package name
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / util / ContentLengthInterceptorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 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  */
20
21  package org.onap.dmaap.util;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.util.Map;
26
27 import javax.servlet.http.HttpServletRequest;
28 import javax.servlet.http.HttpServletResponse;
29
30 import org.junit.After;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.junit.runner.RunWith;
34 import org.mockito.InjectMocks;
35 import org.mockito.Mock;
36 import org.powermock.api.mockito.PowerMockito;
37 import org.powermock.core.classloader.annotations.PrepareForTest;
38 import org.powermock.modules.junit4.PowerMockRunner;
39
40 @RunWith(PowerMockRunner.class)
41 @PrepareForTest({ System.class })
42 public class ContentLengthInterceptorTest {
43         @InjectMocks
44         ContentLengthInterceptor interceptor = null;
45
46         @Mock
47         Map map;
48
49         @Mock
50         HttpServletRequest req;
51
52         @Mock
53         HttpServletResponse res;
54
55         @Before
56         public void setUp() throws Exception {
57                 // interceptor = new ContentLengthInterceptor();
58         }
59
60         @After
61         public void tearDown() throws Exception {
62         }
63
64         @Test
65         public void testAllowOrReject() throws Exception {
66                 PowerMockito.when(req.getHeader("Transfer-Encoding")).thenReturn("UTF-8");
67                 PowerMockito.when(req.getHeader("Content-Length")).thenReturn("1027");
68
69                 interceptor.allowOrReject(req, res, map);
70                 assertTrue(true);
71         }
72         
73         //@Test(expected = NullPointerException.class) 
74         public void testAllowOrRejectWithException() throws Exception {
75                 PowerMockito.when(req.getHeader("Transfer-Encoding")).thenThrow(new NumberFormatException());
76                 interceptor.allowOrReject(req, res, map);
77                 assertTrue(true);
78         }
79         
80
81         @Test
82         public void testGetDefLength() {
83                 interceptor.getDefLength();
84                 assertTrue(true);
85         }
86
87         @Test
88         public void testSetDefLength() {
89                 interceptor.setDefLength("defLength");
90                 assertTrue(true);
91
92         }
93 }