Divergic.Logging.Xunit 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Divergic.Logging.Xunit --version 1.0.0
NuGet\Install-Package Divergic.Logging.Xunit -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Divergic.Logging.Xunit" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Divergic.Logging.Xunit --version 1.0.0
#r "nuget: Divergic.Logging.Xunit, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Divergic.Logging.Xunit as a Cake Addin
#addin nuget:?package=Divergic.Logging.Xunit&version=1.0.0

// Install Divergic.Logging.Xunit as a Cake Tool
#tool nuget:?package=Divergic.Logging.Xunit&version=1.0.0

Introduction

Divergic.Logging.Xunit is a NuGet package that returns an ILogger or ILogger<T> provider that wraps around the ITestOutputHelper supplied by xUnit. xUnit uses this helper to write log messages to the test output of each test execution. This means that any log messages from classes being tested will end up in the xUnit test result output.

Installation

Run the following in the NuGet command line or visit the NuGet package page.

Install-Package Divergic.Logging.Xunit

Usage

The common usage of this package is to call the BuildLogger extension method on the xUnit ITestOutputHelper.

using System;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

public class MyClass
{
    private readonly ILogger _logger;

    public MyClass(ILogger logger)
    {
        _logger = logger;
    }

    public string DoSomething()
    {
        _logger.LogInformation("Hey, we did something");

        return Guid.NewGuid().ToString();
    }
}

public class MyClassTests
{
    private readonly ITestOutputHelper _output;
    private readonly ILogger _logger;

    public MyClassTests(ITestOutputHelper output)
    {
        _output = output;
        _logger = output.BuildLogger();
    }

    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var sut = new MyClass(_logger);

        var actual = sut.DoSomething();

        // The xUnit test output should now include the log message from MyClass.DoSomething()

        actual.Should().NotBeNullOrWhiteSpace();
    }
}

This would output the following in the test results.

Information [0]: Hey, we did something

Support for ILogger<T> is there using the BuildLoggerFor<T> extension method.

using System;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

public class MyClassTests
{
    private readonly ITestOutputHelper _output;
    private readonly ILogger<MyClass> _logger;

    public MyClassTests(ITestOutputHelper output)
    {
        _output = output;
        _logger = output.BuildLoggerFor<MyClass>();
    }

    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var sut = new MyClass(_logger);

        var actual = sut.DoSomething();

        // The xUnit test output should now include the log message from MyClass.DoSomething()

        actual.Should().NotBeNull();
    }
}

Inspection

Using this library makes it really easy to output log messages from your code as part of the test results. You may want to also inspect the log messages written as part of the test assertions as well.

The BuildLogger and BuildLoggerFor<T> extension methods support this by returning a ICacheLogger or ICacheLogger<T> respectively. The cache logger is a wrapper around the created logger and exposes all the log entries written by the test.

using System;
using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

public class MyClassTests
{
    private readonly ITestOutputHelper _output;
    private readonly ICacheLogger _logger;

    public MyClassTests(ITestOutputHelper output)
    {
        _output = output;
        _logger = output.BuildLogger();
    }

    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var sut = new MyClass(_logger);

        sut.DoSomething();
        
        _logger.Count.Should().Be(1);
        _logger.Entries.Should().HaveCount(1);
        _logger.Last.Message.Should().Be("Hey, we did something");
    }
}

Perhaps you don't want to use the xUnit ITestOutputHelper but still want to use the ICacheLogger to run assertions over log messages written by the class under test. You can do this by creating a CacheLogger of CacheLogger<T> directly.

using System;
using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit;

public class MyClassTests
{
    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var logger = new CacheLogger();

        var sut = new MyClass(_logger);

        sut.DoSomething();
        
        logger.Count.Should().Be(1);
        logger.Entries.Should().HaveCount(1);
        logger.Last.Message.Should().Be("Hey, we did something");
    }
}

Configured LoggerFactory

You may have an integration or acceptance test that requires additional configuration to the log providers on ILoggerFactory while also supporting the logging out to xUnit test results. You can do this by create a factory that is already configured with xUnit support.

using System;
using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Xunit;
using Xunit.Abstractions;

public class MyClassTests
{
    private readonly ILogger _logger;

    public MyClassTests(ITestOutputHelper output)
    {
        var factory = LogFactory.Create(output);

        // call factory.UseConsole or other provider extension method

        _logger = factory.CreateLogger(nameof(MyClassTests));
    }

    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var sut = new MyClass(_logger);

        // The xUnit test output should now include the log message from MyClass.DoSomething()

        var actual = sut.DoSomething();

        actual.Should().NotBeNullOrWhiteSpace();
    }
}

Existing Loggers

Already have an existing logger and want the above cache support? Got you covered there too using the WithCache() method.

using System;
using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using NSubstitute;
using Xunit;

public class MyClassTests
{
    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var logger = Substitute.For<ILogger>();

        logger.IsEnabled(Arg.Any<LogLevel>()).Returns(true);

        var cacheLogger = logger.WithCache();

        var sut = new MyClass(cacheLogger);

        sut.DoSomething();

        cacheLogger.Count.Should().Be(1);
        cacheLogger.Entries.Should().HaveCount(1);
        cacheLogger.Last.Message.Should().Be("Hey, we did something");
    }
}

The WithCache() also supports ILogger<T>.

using System;
using Divergic.Logging.Xunit;
using FluentAssertions;
using Microsoft.Extensions.Logging;
using NSubstitute;
using Xunit;

public class MyClassTests
{
    [Fact]
    public void DoSomethingReturnsValueTest()
    {
        var logger = Substitute.For<ILogger<MyClass>>();

        logger.IsEnabled(Arg.Any<LogLevel>()).Returns(true);

        var cacheLogger = logger.WithCache();

        var sut = new MyClass(cacheLogger);

        sut.DoSomething();

        cacheLogger.Count.Should().Be(1);
        cacheLogger.Entries.Should().HaveCount(1);
        cacheLogger.Last.Message.Should().Be("Hey, we did something");
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Divergic.Logging.Xunit:

Package Downloads
AutoMoqFixture

Package Description

U2U.EntityFrameworkCore.Testing

Package Description

InsonusK.Xunit.ExpectationsTest

Base class of Xunit test expectation methods support

Reductech.Sequence.Core.TestHarness

Class library for automatically testing Sequence® Core steps.

HerrGeneral.Test.Extension

Helper methods for HerrGeneral testing

GitHub repositories (9)

Showing the top 5 popular GitHub repositories that depend on Divergic.Logging.Xunit:

Repository Stars
JasperFx/marten
.NET Transactional Document DB and Event Store on PostgreSQL
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
zoriya/Kyoo
A portable and vast media library solution.
imperugo/StackExchange.Redis.Extensions
Azure/Industrial-IoT
Azure Industrial IoT Platform
Version Downloads Last updated
4.3.0 196,699 11/21/2023
4.2.0 1,406,100 8/9/2022
4.2.0-beta0001 153 8/9/2022
4.1.0 129,089 6/23/2022
4.1.0-beta0002 161 6/23/2022
4.1.0-beta0001 162 6/22/2022
4.0.0 487,930 1/10/2022
3.6.1-beta0010 191 1/10/2022
3.6.0 1,124,354 11/13/2020
3.5.2-beta0019 315 11/13/2020
3.5.2-beta0018 308 11/13/2020
3.5.2-beta0017 302 11/13/2020
3.5.2-beta0016 309 11/13/2020
3.5.2-beta0015 353 11/12/2020
3.5.2-beta0010 312 11/12/2020
3.5.2-beta0006 349 11/10/2020
3.5.2-beta0003 723 10/14/2020
3.5.2-beta0001 13,996 10/12/2020
3.5.1 132,435 10/8/2020
3.5.1-releasejob0001 517 8/4/2020
3.5.1-beta0032 400 10/8/2020
3.5.1-beta0031 335 10/8/2020
3.5.1-beta0030 348 10/8/2020
3.5.1-beta0029 418 9/27/2020
3.5.1-beta0028 350 9/15/2020
3.5.1-beta0027 358 9/9/2020
3.5.1-beta0026 352 9/9/2020
3.5.1-beta0025 356 9/2/2020
3.5.1-beta0024 344 8/21/2020
3.5.1-beta0023 390 8/15/2020
3.5.1-beta0022 395 8/12/2020
3.5.1-beta0021 336 8/12/2020
3.5.1-beta0020 364 8/11/2020
3.5.1-beta0019 391 8/8/2020
3.5.1-beta0018 399 8/8/2020
3.5.1-beta0017 406 8/8/2020
3.5.1-beta0015 376 8/5/2020
3.5.1-beta0013 350 8/4/2020
3.5.1-beta0012 355 8/4/2020
3.5.1-beta0011 368 8/4/2020
3.5.1-beta0010 375 8/2/2020
3.5.1-beta0009 402 7/31/2020
3.5.1-beta0008 405 7/31/2020
3.5.1-beta0007 409 7/31/2020
3.5.1-beta0003 412 7/31/2020
3.5.0 176,250 6/22/2020
3.5.0-beta0001 378 6/17/2020
3.4.0 108,063 4/28/2020
3.3.1-beta0004 373 4/28/2020
3.3.0 61,156 3/18/2020
3.3.0-beta0005 465 3/18/2020
3.2.2-beta0003 2,763 1/12/2020
3.2.2-beta0002 439 1/12/2020
3.2.2-beta0001 435 1/12/2020
3.2.1 219,440 12/18/2019
3.2.1-beta0001 464 12/18/2019
3.2.0 658 12/18/2019
3.2.0-beta0002 456 12/18/2019
3.1.0 196,311 9/27/2019
3.1.0-beta0002 427 9/27/2019
3.0.0 68,183 5/3/2019
2.2.0 47,730 4/18/2019
2.2.0-beta0001 485 4/18/2019
2.1.0 1,779 4/14/2019
2.1.0-beta0003 501 4/14/2019
2.1.0-beta0002 471 4/13/2019
2.0.1-beta0001 521 3/25/2019
2.0.0 46,988 3/19/2019
1.1.0 51,424 6/3/2018
1.0.0 9,242 6/1/2018
0.2.0-beta0047 360 8/5/2020
0.2.0-beta0045 348 8/4/2020
0.2.0-beta0036 357 7/31/2020
0.2.0-beta0035 364 7/31/2020
0.2.0-beta0034 411 6/22/2020