updating logging filters
[logging-analytics.git] / reference / logging-filter / logging-filter-spring / src / test / java / org / onap / logging / filter / spring / LoggingInterceptorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - Logging
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  */
20
21 package org.onap.logging.filter.spring;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import javax.servlet.http.HttpServletRequest;
26 import javax.servlet.http.HttpServletResponse;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.InjectMocks;
30 import org.mockito.Mock;
31 import org.mockito.Spy;
32 import org.mockito.junit.MockitoJUnitRunner;
33 import org.onap.logging.ref.slf4j.ONAPLogConstants;
34 import org.slf4j.MDC;
35
36 @RunWith(MockitoJUnitRunner.class)
37 public class LoggingInterceptorTest {
38
39     @Mock
40     private HttpServletRequest request;
41
42     @Mock
43     private HttpServletResponse response;
44
45     @Mock
46     private Object handler;
47
48     @Spy
49     @InjectMocks
50     private LoggingInterceptor loggingInterceptor;
51
52     @Test
53     public void preHandleTest() throws Exception {
54         loggingInterceptor.preHandle(request, response, handler);
55         assertEquals(MDC.get(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE), "INPROGRESS");
56         assertNotNull(MDC.get(ONAPLogConstants.MDCs.REQUEST_ID));
57     }
58 }