Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-sdc-logging-lib / openecomp-sdc-logging-api / src / test / java / org / openecomp / sdc / logging / api / LoggerFactoryTest.java
1 /*
2  * Copyright © 2016-2017 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.logging.api;
18
19 import org.testng.annotations.Test;
20
21 import java.lang.reflect.Field;
22 import java.util.ServiceLoader;
23
24 import static org.testng.Assert.assertEquals;
25 import static org.testng.Assert.assertFalse;
26 import static org.testng.Assert.assertNotNull;
27
28 /**
29  * @author evitaliy
30  * @since 14/09/2016.
31  */
32 public class LoggerFactoryTest {
33
34   @Test
35   public void testNoOpLoggerService() throws Exception {
36
37     assertFalse(ServiceLoader.load(LoggerCreationService.class).iterator().hasNext());
38
39     LoggerFactory.getLogger(LoggerFactoryTest.class);
40     Field factory = LoggerFactory.class.getDeclaredField("SERVICE");
41     factory.setAccessible(true);
42     Object impl = factory.get(null);
43     assertEquals("org.openecomp.sdc.logging.api.LoggerFactory$NoOpLoggerCreationService",
44         impl.getClass().getName());
45   }
46
47   @Test
48   public void testNoOpLoggerByClass() throws Exception {
49     Logger logger = LoggerFactory.getLogger(LoggerFactoryTest.class);
50     verifyLogger(logger);
51   }
52
53   @Test
54   public void testNoOpLoggerByName() throws Exception {
55     Logger logger = LoggerFactory.getLogger(LoggerFactoryTest.class.getName());
56     verifyLogger(logger);
57   }
58
59   private void verifyLogger(Logger logger) {
60     assertNotNull(logger);
61
62     // make sure no exceptions are thrown
63     logger.error("");
64     logger.warn("");
65     logger.info("");
66     logger.debug("");
67     logger.audit("");
68     logger.metrics("");
69   }
70 }