/* * Copyright (c) 2008-2017, Hazelcast, Inc. 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. */ package com.hazelcast.logging; import com.hazelcast.test.HazelcastParallelClassRunner; import com.hazelcast.test.annotation.ParallelTest; import com.hazelcast.test.annotation.QuickTest; import org.apache.logging.log4j.spi.ExtendedLogger; import org.junit.Before; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import java.util.logging.Level; import static org.apache.logging.log4j.Level.DEBUG; import static org.apache.logging.log4j.Level.ERROR; import static org.apache.logging.log4j.Level.INFO; import static org.apache.logging.log4j.Level.OFF; import static org.apache.logging.log4j.Level.TRACE; import static org.apache.logging.log4j.Level.WARN; import static org.junit.Assert.assertFalse; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; @RunWith(HazelcastParallelClassRunner.class) @Category({QuickTest.class, ParallelTest.class}) public class Log4j2LoggerTest extends AbstractLoggerTest { private static final String LOGGER_NAME = Log4j2Factory.Log4j2Logger.class.getName(); private ExtendedLogger mockLogger; private ILogger hazelcastLogger; @Before public void setUp() { mockLogger = mock(ExtendedLogger.class); hazelcastLogger = new Log4j2Factory.Log4j2Logger(mockLogger); } @Test public void isLoggable_whenLevelOff_shouldReturnFalse() { assertFalse(hazelcastLogger.isLoggable(Level.OFF)); } @Test public void logWithThrowable_shouldCallLogWithThrowable() { hazelcastLogger.warning(MESSAGE, THROWABLE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, WARN, null, MESSAGE, THROWABLE); } @Test public void logAtLevelOff_shouldLogAtLevelOff() { hazelcastLogger.log(Level.OFF, MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, OFF, null, MESSAGE); } @Test public void logFinest_shouldLogTrace() { hazelcastLogger.finest(MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, TRACE, null, MESSAGE); } @Test public void logFiner_shouldLogDebug() { hazelcastLogger.log(Level.FINER, MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, DEBUG, null, MESSAGE); } @Test public void logFine_shouldLogDebug() { hazelcastLogger.fine(MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, DEBUG, null, MESSAGE); } @Test public void logInfo_shouldLogInfo() { hazelcastLogger.info(MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, INFO, null, MESSAGE); } @Test public void logWarning_shouldLogWarn() { hazelcastLogger.warning(MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, WARN, null, MESSAGE); } @Test public void logSevere_shouldLogError() { hazelcastLogger.severe(MESSAGE); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, ERROR, null, MESSAGE); } @Test public void logEvent_shouldLogWithCorrectLevel() { hazelcastLogger.log(LOG_EVENT); verify(mockLogger, times(1)).logIfEnabled(LOGGER_NAME, WARN, null, MESSAGE, THROWABLE); } }