class passed to MdcLogger() is compared by name
[sdc.git] / common-app-logging / src / test / java / org / openecomp / sdc / common / log / elements / LoggerFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2020 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.openecomp.sdc.common.log.elements;
22
23 import static org.junit.jupiter.api.Assertions.assertNotNull;
24 import static org.junit.jupiter.api.Assertions.assertNull;
25
26 import org.junit.jupiter.api.Test;
27 import org.mockito.Mock;
28 import org.slf4j.Logger;
29
30 public class LoggerFactoryTest {
31
32     @Mock
33     private Logger logger;
34
35     @Test
36     public void getMdcLoggerInstantiateProperly() {
37         assertNotNull(LoggerFactory.getMdcLogger(LoggerAudit.class, logger));
38         assertNotNull(LoggerFactory.getMdcLogger(LoggerDebug.class, logger));
39         assertNotNull(LoggerFactory.getMdcLogger(LoggerMetric.class, logger));
40         assertNotNull(LoggerFactory.getMdcLogger(LoggerError.class, logger));
41         assertNotNull(LoggerFactory.getMdcLogger(LoggerSupportability.class, logger));
42     }
43
44     @Test
45     public void getLoggerInstantiateProperly() {
46         assertNotNull(LoggerFactory.getLogger(LoggerAudit.class, logger));
47         assertNotNull(LoggerFactory.getLogger(LoggerDebug.class, logger));
48         assertNotNull(LoggerFactory.getLogger(LoggerMetric.class, logger));
49         assertNotNull(LoggerFactory.getLogger(LoggerError.class, logger));
50     }
51
52     @Test
53     public void getMdcLoggerReturnsNullForSomeInvalidClasses() {
54         assertNull(LoggerFactory.getMdcLogger(Integer.class, logger));
55     }
56
57     @Test
58     public void getLoggerReturnsNullForSomeInvalidClasses() {
59         assertNull(LoggerFactory.getLogger(Integer.class, logger));
60     }
61
62 }