-
-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
260 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
Source/EventFlow.Tests/Exploration/CustomAggregateIdExplorationTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
// The MIT License (MIT) | ||
// | ||
// Copyright (c) 2015-2016 Rasmus Mikkelsen | ||
// Copyright (c) 2015-2016 eBay Software Foundation | ||
// https://github.com/rasmus/EventFlow | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
// this software and associated documentation files (the "Software"), to deal in | ||
// the Software without restriction, including without limitation the rights to | ||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
// the Software, and to permit persons to whom the Software is furnished to do so, | ||
// subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using EventFlow.Aggregates; | ||
using EventFlow.Core; | ||
using EventFlow.TestHelpers; | ||
using FluentAssertions; | ||
using NUnit.Framework; | ||
|
||
namespace EventFlow.Tests.Exploration | ||
{ | ||
public class CustomAggregateIdExplorationTest : Test | ||
{ | ||
[Test] | ||
public async Task AggregatesCanHaveCustomImplementedIdentity() | ||
{ | ||
using (var resolver = EventFlowOptions.New | ||
.CreateResolver(false)) | ||
{ | ||
// Arrange | ||
var customId = new CustomId(A<string>()); | ||
var aggregateStore = resolver.Resolve<IAggregateStore>(); | ||
|
||
// Act | ||
var customAggregate = await aggregateStore.LoadAsync<CustomAggregate, CustomId>(customId, CancellationToken.None).ConfigureAwait(false); | ||
|
||
// Assert | ||
customAggregate.Id.Value.Should().Be(customId.Value); | ||
} | ||
} | ||
|
||
public class CustomId : IIdentity | ||
{ | ||
public CustomId(string value) | ||
{ | ||
Value = value; | ||
} | ||
|
||
public string Value { get; } | ||
} | ||
|
||
public class CustomAggregate : AggregateRoot<CustomAggregate, CustomId> | ||
{ | ||
public CustomAggregate(CustomId id) : base(id) | ||
{ | ||
} | ||
} | ||
} | ||
} |
101 changes: 101 additions & 0 deletions
101
Source/EventFlow.Tests/Exploration/RegisterSubscribersExplorationTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
// The MIT License (MIT) | ||
// | ||
// Copyright (c) 2015-2017 Rasmus Mikkelsen | ||
// Copyright (c) 2015-2017 eBay Software Foundation | ||
// https://github.com/rasmus/EventFlow | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
// this software and associated documentation files (the "Software"), to deal in | ||
// the Software without restriction, including without limitation the rights to | ||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
// the Software, and to permit persons to whom the Software is furnished to do so, | ||
// subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using EventFlow.Aggregates; | ||
using EventFlow.Core; | ||
using EventFlow.Extensions; | ||
using EventFlow.Subscribers; | ||
using EventFlow.TestHelpers; | ||
using EventFlow.TestHelpers.Aggregates; | ||
using EventFlow.TestHelpers.Aggregates.Commands; | ||
using EventFlow.TestHelpers.Aggregates.Events; | ||
using EventFlow.TestHelpers.Aggregates.ValueObjects; | ||
using FluentAssertions; | ||
using NUnit.Framework; | ||
|
||
namespace EventFlow.Tests.Exploration | ||
{ | ||
public class RegisterSubscribersExplorationTests : Test | ||
{ | ||
[TestCaseSource(nameof(TestCases))] | ||
public async Task TestRegisterAsynchronousSubscribersAsync(Func<IEventFlowOptions, IEventFlowOptions> register) | ||
{ | ||
// Arrange | ||
var wasHandled = false; | ||
TestSubscriber.OnHandleAction = () => wasHandled = true; | ||
using (new DisposableAction(() => TestSubscriber.OnHandleAction = null)) | ||
using (var resolver = register(EventFlowOptions.New) | ||
.AddCommands(typeof(ThingyPingCommand)) | ||
.AddCommandHandlers(typeof(ThingyPingCommandHandler)) | ||
.AddEvents(typeof(ThingyPingEvent)) | ||
.Configure(c => c.IsAsynchronousSubscribersEnabled = true) | ||
.CreateResolver(false)) | ||
{ | ||
var commandBus = resolver.Resolve<ICommandBus>(); | ||
|
||
// Act | ||
await commandBus.PublishAsync( | ||
new ThingyPingCommand(A<ThingyId>(), A<PingId>()), | ||
CancellationToken.None) | ||
.ConfigureAwait(false); | ||
} | ||
|
||
// Assert | ||
wasHandled.Should().BeTrue(); | ||
} | ||
|
||
public static IEnumerable<Func<IEventFlowOptions, IEventFlowOptions>> TestCases() | ||
{ | ||
yield return o => | ||
{ | ||
Console.WriteLine("Using generic"); | ||
return o.AddAsynchronousSubscriber<ThingyAggregate, ThingyId, ThingyPingEvent, TestSubscriber>() ; | ||
}; | ||
yield return o => | ||
{ | ||
Console.WriteLine("Using add specific type"); | ||
return o.AddSubscribers(typeof(TestSubscriber)); | ||
}; | ||
yield return o => | ||
{ | ||
Console.WriteLine("Using assembly scanner"); | ||
return o.AddSubscribers(typeof(RegisterSubscribersExplorationTests).Assembly, t => t == typeof(TestSubscriber)); | ||
}; | ||
} | ||
} | ||
|
||
public class TestSubscriber : ISubscribeAsynchronousTo<ThingyAggregate, ThingyId, ThingyPingEvent> | ||
{ | ||
public static Action OnHandleAction { get; set; } | ||
|
||
public Task HandleAsync(IDomainEvent<ThingyAggregate, ThingyId, ThingyPingEvent> domainEvent, CancellationToken cancellationToken) | ||
{ | ||
OnHandleAction?.Invoke(); | ||
return Task.FromResult(0); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters