1a6d7017feebf720a1e6c6028435717a1e29fe10
[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.mockito.ArgumentMatchers.any;
25 import static org.mockito.Mockito.when;
26 import javax.servlet.http.HttpServletRequest;
27 import javax.servlet.http.HttpServletResponse;
28 import org.junit.Test;
29 import org.junit.runner.RunWith;
30 import org.mockito.InjectMocks;
31 import org.mockito.Mock;
32 import org.mockito.Spy;
33 import org.mockito.junit.MockitoJUnitRunner;
34 import org.onap.logging.filter.base.MDCSetup;
35 import org.onap.logging.filter.base.SimpleMap;
36 import org.onap.logging.ref.slf4j.ONAPLogConstants;
37 import org.slf4j.MDC;
38
39 @RunWith(MockitoJUnitRunner.class)
40 public class LoggingInterceptorTest {
41
42     @Mock
43     private HttpServletRequest request;
44
45     @Mock
46     private HttpServletResponse response;
47
48     @Mock
49     private Object handler;
50
51     @Mock
52     private MDCSetup mdcSetup;
53
54     @Spy
55     @InjectMocks
56     private LoggingInterceptor loggingInterceptor;
57
58     @Test
59     public void preHandleTest() throws Exception {
60         when(mdcSetup.getRequestId(any(SimpleMap.class))).thenReturn("428443e6-eeb2-4e4a-9a8c-2ca9e2bc8067");
61         loggingInterceptor.preHandle(request, response, handler);
62         assertEquals(MDC.get(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE), "INPROGRESS");
63         assertEquals("428443e6-eeb2-4e4a-9a8c-2ca9e2bc8067", MDC.get(ONAPLogConstants.MDCs.REQUEST_ID));
64     }
65 }