mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
25 lines
741 B
C#
25 lines
741 B
C#
using Bit.Core.Models.Data;
|
|
using Bit.Core.Services;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Bit.Test.Common.Helpers;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Services;
|
|
|
|
[SutProviderCustomize]
|
|
public class EventRepositoryHandlerTests
|
|
{
|
|
[Theory, BitAutoData]
|
|
public async Task HandleEventAsync_WritesEventToIEventWriteService(
|
|
EventMessage eventMessage,
|
|
SutProvider<EventRepositoryHandler> sutProvider)
|
|
{
|
|
await sutProvider.Sut.HandleEventAsync(eventMessage);
|
|
await sutProvider.GetDependency<IEventWriteService>().Received(1).CreateAsync(
|
|
Arg.Is(AssertHelper.AssertPropertyEqual<IEvent>(eventMessage))
|
|
);
|
|
}
|
|
}
|