onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Application.SharedKernel.Tests/IntegrationEvents/TestableIntegrationEventHandler1.cs

Summary

Maintainability
A
3 hrs
Test Coverage
using System;
using System.Threading;
using System.Threading.Tasks;
using EnsureThat;
using OneBeyond.Studio.Application.SharedKernel.IntegrationEvents;
using OneBeyond.Studio.Application.SharedKernel.Tests.Testables;

namespace OneBeyond.Studio.Application.SharedKernel.Tests.IntegrationEvents;

internal sealed class TestableIntegrationEventHandler1
    : IIntegrationEventHandler<TestableIntegrationEvents.ThisHappened_1_1>
{
    private readonly TestableContainer<Type> _typeContainer;
    private readonly TestableContainer<TestableScopedItem> _scopedItemContainer;
    private readonly TestableScopedItem _scopedItem;

    public TestableIntegrationEventHandler1(
        TestableContainer<Type> typeContainer,
        TestableContainer<TestableScopedItem> scopedItemContainer,
        TestableScopedItem scopedItem)
    {
        EnsureArg.IsNotNull(typeContainer, nameof(typeContainer));
        EnsureArg.IsNotNull(scopedItemContainer, nameof(scopedItemContainer));
        EnsureArg.IsNotNull(scopedItem, nameof(scopedItem));

        _typeContainer = typeContainer;
        _scopedItemContainer = scopedItemContainer;
        _scopedItem = scopedItem;
    }

    public Task HandleAsync(
        TestableIntegrationEvents.ThisHappened_1_1 integrationEvent,
        CancellationToken cancellationToken)
    {
        EnsureArg.IsNotNull(integrationEvent, nameof(integrationEvent));

        _typeContainer.Add(GetType());
        _scopedItemContainer.Add(_scopedItem);
        _scopedItem.SetHandlerType(GetType());

        return Task.CompletedTask;
    }
}