I have the following Logger I want to mock out, but to validate log entries are getting called, not for the content.

    private static Logger logger = LoggerFactory.getLogger(GoodbyeController.class);

I want to Mock ANY class that is used for LoggerFactory.getLogger() but I could not find out how to do that. This is what I ended up with so far:

    @Before
    public void performBeforeEachTest() {
        PowerMockito.mockStatic(LoggerFactory.class);
        when(LoggerFactory.getLogger(GoodbyeController.class)).thenReturn(loggerMock);

        when(loggerMock.isDebugEnabled()).thenReturn(true);
        doNothing().when(loggerMock).error(any(String.class));

        ...
    }

I would like to know:

  1. Can I Mock the static LoggerFactory.getLogger() to work for any class?
  2. I can only seem to run when(loggerMock.isDebugEnabled()).thenReturn(true); in the @Before and thus I cannot seem to change the characteristics per method. Is there a way around this?

Edit findings:

I thought I tried this already and it didnt work:

 when(LoggerFactory.getLogger(any(Class.class))).thenReturn(loggerMock);

But thank you, as it did work.

However I have tried countless variations to:

when(loggerMock.isDebugEnabled()).thenReturn(true);

I cannot get the loggerMock to change its behavior outside of @Before but this only happens with Coburtura. With Clover, the coverage shows 100% but there is still an issue either way.

I have this simple class:

       public ExampleService{
    private static final Logger logger = LoggerFactory.getLogger(ExampleService.class);

    public String getMessage() {        
        if(logger.isDebugEnabled()){
            logger.debug("isDebugEnabled");
            logger.debug("isDebugEnabled");
        }

        return "Hello world!";
    }
        ...
        }

Then I have this test:

    @RunWith(PowerMockRunner.class)
    @PrepareForTest({LoggerFactory.class})
    public class ExampleServiceTests {

        @Mock
        private Logger loggerMock;

        private ExampleServiceservice = new ExampleService();

        @Before
        public void performBeforeEachTest() {
            PowerMockito.mockStatic(LoggerFactory.class);
            when(LoggerFactory.getLogger(any(Class.class))).thenReturn(loggerMock);

            //PowerMockito.verifyStatic(); // fails
        }

        @Test
        public void testIsDebugEnabled_True() throws Exception {
            when(loggerMock.isDebugEnabled()).thenReturn(true);
            doNothing().when(loggerMock).debug(any(String.class));

            assertThat(service.getMessage(), is("Hello null: 0"));
            //verify(loggerMock, atLeast(1)).isDebugEnabled(); // fails
        }

        @Test
        public void testIsDebugEnabled_False() throws Exception {
            when(loggerMock.isDebugEnabled()).thenReturn(false);
            doNothing().when(loggerMock).debug(any(String.class));

            assertThat(service.getMessage(), is("Hello null: 0"));
            //verify(loggerMock, atLeast(1)).isDebugEnabled(); // fails
        }
    }

In clover I show 100% coverage of the if(logger.isDebugEnabled()){ block. But if I try to verify the loggerMock:

    verify(loggerMock, atLeast(1)).isDebugEnabled();

I get zero interactions. I also tried PowerMockito.verifyStatic(); in @Before but that also has zero interactions.

This just seems strange that Cobertura shows the if(logger.isDebugEnabled()){ as being not 100% complete, and Clover does, but both agree the verification fails.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

@Mick, try to prepare the owner of the static field too, eg :

@PrepareForTest({GoodbyeController.class, LoggerFactory.class})

EDIT : I just crafted a small example. First the controller :

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Controller {
    Logger logger = LoggerFactory.getLogger(Controller.class);

    public void log() { logger.warn("yup"); }
}

Then the test :

import org.junit.Test;
import org.junit.runner.RunWith;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.verify;
import static org.powermock.api.mockito.PowerMockito.mock;
import static org.powermock.api.mockito.PowerMockito.mockStatic;
import static org.powermock.api.mockito.PowerMockito.when;

@RunWith(PowerMockRunner.class)
@PrepareForTest({Controller.class, LoggerFactory.class})
public class ControllerTest {

    @Test
    public void name() throws Exception {
        mockStatic(LoggerFactory.class);
        Logger logger = mock(Logger.class);
        when(LoggerFactory.getLogger(any(Class.class))).thenReturn(logger);

        new Controller().log();

        verify(logger).warn(anyString());
    }
}

Note the imports ! Noteworthy libs in the classpath : Mockito, PowerMock, JUnit, logback-core, logback-clasic, slf4j

link|improve this answer
feedback

In answer to your first question, it should be as simple as replacing:

   when(LoggerFactory.getLogger(GoodbyeController.class)).thenReturn(loggerMock);

with

   when(LoggerFactory.getLogger(any(Class.class))).thenReturn(loggerMock);

Regarding your second question (and possibly the puzzling behavior with the first), I think the problem is that logger is static. So,

private static Logger logger = LoggerFactory.getLogger(GoodbyeController.class);

is executed when the class is initialized, not the when the object is instantiated. Sometimes this can be at about the same time, so you'll be OK, but it's hard to guarantee that. So you set up LoggerFactory.getLogger to return your mock, but the logger variable may have already been set with a real Logger object by the time your mocks are set up.

You may be able to set the logger explicitly using something like ReflectionTestUtils (I don't know if that works with static fields) or change it from a static field to an instance field. Either way, you don't need to mock LoggerFactory.getLogger because you'll be directly injecting the mock Logger instance.

link|improve this answer
I dont know why – Mick Knutson Jan 23 at 23:19
What error are you getting when you put it in the @Test classes? Can you show the whole test class (maybe stripped down to just enough to reproduce the problem)? – jhericks Jan 24 at 1:02
Edited above question with full unit test. – Mick Knutson Jan 24 at 2:46
Edited my answer in response to your edit. – jhericks Jan 24 at 6:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.