Release 1.9.2 DCAEGEN2 VESCollector container
[dcaegen2/collectors/ves.git] / src / test / java / org / onap / dcae / vestest / TestVESLogger.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PROJECT
4  * ================================================================================
5  * Copyright (C) 2018 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.dcae.vestest;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertNotSame;
26 import static org.onap.dcae.common.VESLogger.REQUEST_ID;
27
28 import com.att.nsa.logging.LoggingContext;
29 import com.att.nsa.logging.log4j.EcompFields;
30 import java.util.UUID;
31 import org.junit.Test;
32 import org.onap.dcae.common.VESLogger;
33
34 public class TestVESLogger {
35
36     @Test
37     public void shouldOnLoggingContextInitializationPutRandomUuidAsRequestId() {
38         LoggingContext commonLoggingContext = VESLogger.getCommonLoggingContext();
39         String requestId = commonLoggingContext.get(REQUEST_ID, "default");
40
41         assertNotNull(requestId);
42         assertNotSame(requestId, "default");
43
44     }
45
46     @Test
47     public void shouldOnLoggingContextInitializationPutGivenUuuidAsRequestIdAndSupplyEndTimestamp() {
48         final UUID uuid = UUID.randomUUID();
49         LoggingContext loggingContextForThread = VESLogger.getLoggingContextForThread(uuid);
50         String requestId = loggingContextForThread.get(REQUEST_ID, "default");
51         String endTimestamp = loggingContextForThread.get(EcompFields.kEndTimestamp, "default");
52
53         assertNotNull(requestId);
54         assertNotNull(endTimestamp);
55         assertNotSame(endTimestamp, "default");
56         assertEquals(requestId, uuid.toString());
57     }
58
59     @Test
60     public void shouldOnLoggingContextInitializationPutGivenUuidAsRequestIdAndSupplyEndTimestampAndCompleteStatusCode() {
61         final UUID uuid = UUID.randomUUID();
62         LoggingContext loggingContextForThread = VESLogger.getLoggingContextForThread(uuid.toString());
63         String requestId = loggingContextForThread.get(REQUEST_ID, "default");
64         String statusCode = loggingContextForThread.get("statusCode", "default");
65         String endTimestamp = loggingContextForThread.get(EcompFields.kEndTimestamp, "default");
66
67         assertNotNull(requestId);
68         assertNotNull(endTimestamp);
69         assertNotNull(statusCode);
70         assertNotSame(endTimestamp, "default");
71         assertEquals(requestId, uuid.toString());
72         assertEquals(statusCode, "COMPLETE");
73     }
74
75 }
76