summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-logging-lib/openecomp-sdc-logging-core/src/test/java/org/openecomp/sdc/logging/slf4j/LoggingContextTest.java
blob: 1e7cfe834f21b37e0bd47f35a2ce15c0e8fedfe1 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
 * Copyright © 2016-2017 European Support Limited
 *
 * 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.
 */

package org.openecomp.sdc.logging.slf4j;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import java.util.UUID;
import org.junit.After;
import org.junit.Test;
import org.openecomp.sdc.logging.api.ContextData;
import org.openecomp.sdc.logging.api.LoggingContext;
import org.slf4j.MDC;

/**
 * Unit-testing logging context service via its facade.
 *
 * @author evitaliy
 * @since 12 Sep 2016
 */
public class LoggingContextTest {

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

    @Test
    public void returnMdcWrapperWhenToRunnableCalled() {
        assertEquals(MDCRunnableWrapper.class, LoggingContext.copyToRunnable(() -> { }).getClass());
    }

    @Test(expected = NullPointerException.class)
    public void throwNpeWhenToRunnableWithNull() {
        LoggingContext.copyToRunnable(null);
    }

    @Test
    public void returnMdcWrapperWhenToCallableCalled() {
        assertEquals(MDCCallableWrapper.class, LoggingContext.copyToCallable(() -> "").getClass());
    }

    @Test(expected = NullPointerException.class)
    public void throwNpeWhenToCallableWithNull() {
        LoggingContext.copyToCallable(null);
    }

    @Test
    public void keysClearedWhenContextCleared() {

        String value = UUID.randomUUID().toString();

        ContextData context = ContextData.builder().partnerName(value).requestId(value).serviceName(value).build();
        LoggingContext.put(context);
        LoggingContext.clear();

        for (ContextField field : ContextField.values()) {
            assertNull(MDC.get(field.asKey()));
        }
    }

    @Test
    public void unrelatedKeysRemainWhenContextCleared() {

        String randomValue = UUID.randomUUID().toString();
        String randomKey = "Key-" + randomValue;

        MDC.put(randomKey, randomValue);
        LoggingContext.clear();
        assertEquals(randomValue, MDC.get(randomKey));
    }

    @Test
    public void contextHasServiceNameWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().serviceName(random).build();
        LoggingContext.put(context);
        assertEquals(random, MDC.get(ContextField.SERVICE_NAME.asKey()));
    }

    @Test(expected = NullPointerException.class)
    public void throwNpeWhenContextDataNull() {
        LoggingContext.put(null);
    }

    @Test
    public void contextHasRequestIdWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().requestId(random).build();
        LoggingContext.put(context);
        assertEquals(random, MDC.get(ContextField.REQUEST_ID.asKey()));
    }

    @Test
    public void contextHasPartnerNameWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().partnerName(random).build();
        LoggingContext.put(context);
        assertEquals(random, MDC.get(ContextField.PARTNER_NAME.asKey()));
    }

    @Test
    public void contextHasServerHostWhenPopulated() {

        ContextData context = ContextData.builder().build();
        LoggingContext.put(context);
        assertNotNull(MDC.get(ContextField.SERVER.asKey()));
    }

    @Test
    public void contextHasServerAddressWhenPopulated() {

        ContextData context = ContextData.builder().build();
        LoggingContext.put(context);
        assertNotNull(MDC.get(ContextField.SERVER_IP_ADDRESS.asKey()));
    }

    @Test
    public void contextHasInstanceIdWhenPopulated() {

        ContextData context = ContextData.builder().build();
        LoggingContext.put(context);
        assertNotNull(MDC.get(ContextField.INSTANCE_ID.asKey()));
    }

    @Test
    public void contextReturnsServiceNameWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().serviceName(random).build();
        LoggingContext.put(context);
        assertEquals(context, LoggingContext.get());
    }

    @Test
    public void contextReturnsRequestIdWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().requestId(random).build();
        LoggingContext.put(context);
        assertEquals(context, LoggingContext.get());
    }

    @Test
    public void contextReturnsPartnerNameWhenPut() {

        String random = UUID.randomUUID().toString();
        ContextData context = ContextData.builder().partnerName(random).build();
        LoggingContext.put(context);
        assertEquals(context, LoggingContext.get());
    }

}