aboutsummaryrefslogtreecommitdiffstats
path: root/reference/logging-filter/logging-filter-base/src/test/java/org/onap/logging/filter/base/MetricLogClientFilterTest.java
blob: cfce542dbd557395d82690e22739c358ffefc272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*-
 * ============LICENSE_START=======================================================
 * ONAP - Logging
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.logging.filter.base;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Mockito.doReturn;
import java.net.URI;
import java.net.URISyntaxException;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import javax.ws.rs.client.ClientRequestContext;
import javax.ws.rs.core.MultivaluedHashMap;
import javax.ws.rs.core.MultivaluedMap;
import org.junit.After;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Spy;
import org.mockito.junit.MockitoJUnitRunner;
import org.onap.logging.ref.slf4j.ONAPLogConstants;
import org.slf4j.MDC;

@RunWith(MockitoJUnitRunner.class)
public class MetricLogClientFilterTest {
    @Mock
    private ClientRequestContext clientRequest;

    @Spy
    @InjectMocks
    private MetricLogClientFilter metricLogClientFilter;

    @After
    public void tearDown() {
        MDC.clear();
    }

    @Test
    public void setupHeadersTest() {
        MultivaluedMap<String, Object> headers = new MultivaluedHashMap<>();

        metricLogClientFilter.setupHeaders(clientRequest, headers, "0a908a5d-e774-4558-96ff-6edcbba65483", "hello");

        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", headers.getFirst(ONAPLogConstants.Headers.REQUEST_ID));
        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", headers.getFirst(Constants.HttpHeaders.HEADER_REQUEST_ID));
        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", headers.getFirst(Constants.HttpHeaders.TRANSACTION_ID));
        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", headers.getFirst(Constants.HttpHeaders.TRANSACTION_ID));
        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", headers.getFirst(Constants.HttpHeaders.ECOMP_REQUEST_ID));
        assertNotNull(headers.getFirst(ONAPLogConstants.Headers.INVOCATION_ID));
        assertEquals("UNKNOWN", headers.getFirst(ONAPLogConstants.Headers.PARTNER_NAME));
    }

    @Test
    public void setInvocationIdTest() {
        String invocationId = metricLogClientFilter.setInvocationId();

        assertEquals(invocationId, MDC.get(ONAPLogConstants.MDCs.CLIENT_INVOCATION_ID));
        assertEquals(invocationId, MDC.get(ONAPLogConstants.MDCs.INVOCATION_ID));
    }

    @Test
    public void setupMDCTest() throws URISyntaxException {
        // TODO ingest change from upstream
        MDC.put(ONAPLogConstants.MDCs.TARGET_ENTITY, "SO");
        URI uri = new URI("onap/so/serviceInstances");
        doReturn(uri).when(clientRequest).getUri();

        metricLogClientFilter.setupMDC(clientRequest);

        assertEquals("onap/so/serviceInstances", MDC.get(ONAPLogConstants.MDCs.TARGET_SERVICE_NAME));
        assertEquals("SO", MDC.get(ONAPLogConstants.MDCs.TARGET_ENTITY));
        assertEquals("INPROGRESS", MDC.get(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE));
        assertNotNull(ONAPLogConstants.MDCs.SERVICE_NAME);
        assertNotNull(ONAPLogConstants.MDCs.SERVER_FQDN);
        assertNotNull(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE);
    }

    @Test
    public void setupMDCNoTargetEntityTest() throws URISyntaxException {
        URI uri = new URI("onap/so/serviceInstances");
        doReturn(uri).when(clientRequest).getUri();

        metricLogClientFilter.setupMDC(clientRequest);

        assertEquals("onap/so/serviceInstances", MDC.get(ONAPLogConstants.MDCs.TARGET_SERVICE_NAME));
        assertEquals("Unknown-Target-Entity", MDC.get(ONAPLogConstants.MDCs.TARGET_ENTITY));
        assertEquals("INPROGRESS", MDC.get(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE));
        assertNotNull(ONAPLogConstants.MDCs.RESPONSE_STATUS_CODE);
    }

    @Test
    public void extractRequestIDTest() {
        MDC.put(ONAPLogConstants.MDCs.REQUEST_ID, "0a908a5d-e774-4558-96ff-6edcbba65483");
        String requestId = metricLogClientFilter.extractRequestID();
        assertEquals("0a908a5d-e774-4558-96ff-6edcbba65483", requestId);
    }

    @Test
    public void extractRequestIDNullTest() throws URISyntaxException {
        MDC.put(ONAPLogConstants.MDCs.INVOKE_TIMESTAMP,
                ZonedDateTime.now(ZoneOffset.UTC).format(DateTimeFormatter.ISO_INSTANT));
        String requestId = metricLogClientFilter.extractRequestID();
        assertNotNull(requestId);
        assertNotNull(ONAPLogConstants.MDCs.LOG_TIMESTAMP);
        assertNotNull(ONAPLogConstants.MDCs.ELAPSED_TIME);

    }
}