I want to verify some logs logged. I am using the asp.net core built-in ILogger, and inject it with the asp.net core built-in DI:
private readonly ILogger<InvoiceApi> _logger;
public InvoiceApi(ILogger<InvoiceApi> logger)
{
_logger = logger;
}
then I use it like: _logger.LogError("error));
I tried to mock it (with moq) as usual by:
MockLogger = new Mock<ILogger<InvoiceApi>>();
and inject this in the service for test by:
new InvoiceApi(MockLogger.Object);
then tried verify:
MockLogger.Verify(m => m.LogError(It.Is<string>(s => s.Contains("CreateInvoiceFailed"))));
but it throw:
Invalid verify on a non-virtual (overridable in VB) member: m => m.LogError
So, how can I verify this logs logged?
LogError
is an extension method (static) not an instance method. You can't "directly" mock static methods (hence extension method) with a mocking framework therefore Moq is unable to mock and hence verify that method. I have seen suggestions online about adapting/wrapping the target interface and doing your mocks on that but that would mean rewrites if you have used the defaultILogger
throughout your code in many places. You would have to create 2 new types, one for the wrapper class and the other for the mockable interface.I've written a short article showing a variety of approaches, including mocking the underlying Log() method as described in other answers here. The article includes a full GitHub repo with each of the different options. In the end, my recommendation is to use your own adapter rather than working directly with the ILogger type, if you need to be able to test that it's being called.
https://ardalis.com/testing-logging-in-aspnet-core
As @Nkosi've already said, you can't mock an extension method. What you should mock, is the
ILogger.Log
method, whichLogError
calls into. It makes the verification code a bit clunky, but it should work:(Not sure if this compiles, but you get the gist)
After some upgrades to .net core 3.1 FormattedLogValues become internal. We can not access it anymore. I made a extensions method with some changes. Some sample usage for extension method: