-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added edge case specs for Akka.Persistence.Query (#60)
* added edge case specs for Akka.Persistence.Query * updated the spec names
- Loading branch information
1 parent
289f8d2
commit b2e3c85
Showing
2 changed files
with
191 additions
and
1 deletion.
There are no files selected for viewing
190 changes: 190 additions & 0 deletions
190
src/Akka.Persistence.Azure.Tests/Query/AzureTableQueryEdgeCaseSpecs.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,190 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Akka.Actor; | ||
using Akka.Configuration; | ||
using Akka.Persistence.Azure.Query; | ||
using Akka.Persistence.Azure.TestHelpers; | ||
using Akka.Persistence.Azure.Tests.Helper; | ||
using Akka.Persistence.Journal; | ||
using Akka.Persistence.Query; | ||
using Akka.Streams; | ||
using Akka.Util.Internal; | ||
using FluentAssertions; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace Akka.Persistence.Azure.Tests.Query | ||
{ | ||
[Collection("AzureQuery")] | ||
public class AzureTableQueryEdgeCaseSpecs : Akka.TestKit.Xunit2.TestKit | ||
{ | ||
public static readonly AtomicCounter Counter = new AtomicCounter(0); | ||
private readonly ITestOutputHelper _output; | ||
|
||
protected AzureTableStorageReadJournal ReadJournal { get; } | ||
|
||
protected IMaterializer Materializer { get; } | ||
|
||
public class RealMsg | ||
{ | ||
public RealMsg(string msg) | ||
{ | ||
Msg = msg; | ||
} | ||
public string Msg { get; } | ||
} | ||
|
||
public const int MessageCount = 20; | ||
|
||
public AzureTableQueryEdgeCaseSpecs(ITestOutputHelper output) | ||
: base(Config(), nameof(AzureTableQueryEdgeCaseSpecs), output) | ||
{ | ||
_output = output; | ||
Materializer = Sys.Materializer(); | ||
ReadJournal = Sys.ReadJournalFor<AzureTableStorageReadJournal>(AzureTableStorageReadJournal.Identifier); | ||
} | ||
|
||
/// <summary> | ||
/// Reproduction spec for https://github.com/akkadotnet/Akka.Persistence.MongoDB/issues/61 | ||
/// </summary> | ||
[Fact] | ||
public async Task Bug61_Events_Recovered_By_Id_Should_Match_Tag() | ||
{ | ||
var actor = Sys.ActorOf(TagActor.Props("x")); | ||
|
||
actor.Tell(MessageCount); | ||
ExpectMsg($"{MessageCount}-done", TimeSpan.FromSeconds(20)); | ||
|
||
var eventsById = await ReadJournal.CurrentEventsByPersistenceId("x", 0L, long.MaxValue) | ||
.RunAggregate(ImmutableHashSet<EventEnvelope>.Empty, (agg, e) => agg.Add(e), Materializer); | ||
|
||
eventsById.Count.Should().Be(MessageCount); | ||
|
||
var eventsByTag = await ReadJournal.CurrentEventsByTag(typeof(RealMsg).Name) | ||
.RunAggregate(ImmutableHashSet<EventEnvelope>.Empty, (agg, e) => agg.Add(e), Materializer); | ||
|
||
eventsByTag.Count.Should().Be(MessageCount); | ||
|
||
eventsById.All(x => x.Event is RealMsg).Should().BeTrue("Expected all events by id to be RealMsg"); | ||
eventsByTag.All(x => x.Event is RealMsg).Should().BeTrue("Expected all events by tag to be RealMsg"); | ||
} | ||
|
||
/// <summary> | ||
/// Reproduction spec for https://github.com/akkadotnet/Akka.Persistence.MongoDB/issues/80 | ||
/// </summary> | ||
[Fact] | ||
public void Bug80_CurrentEventsByTag_should_Recover_until_end() | ||
{ | ||
var actor = Sys.ActorOf(TagActor.Props("y")); | ||
var msgCount = 1200; | ||
actor.Tell(msgCount); | ||
ExpectMsg($"{msgCount}-done", TimeSpan.FromSeconds(20)); | ||
|
||
var eventsByTag = ReadJournal.CurrentEventsByTag(typeof(RealMsg).Name) | ||
.RunForeach(e => TestActor.Tell(e), Materializer); | ||
|
||
ReceiveN(msgCount); | ||
} | ||
|
||
/// <summary> | ||
/// Making sure EventsByTag didn't break during implementation of https://github.com/akkadotnet/Akka.Persistence.MongoDB/issues/80 | ||
/// </summary> | ||
[Fact] | ||
public void Bug80_AllEventsByTag_should_Recover_all_messages() | ||
{ | ||
var actor = Sys.ActorOf(TagActor.Props("y")); | ||
var msgCount = 1200; | ||
actor.Tell(msgCount); | ||
ExpectMsg($"{msgCount}-done", TimeSpan.FromSeconds(20)); | ||
|
||
var eventsByTag = ReadJournal.EventsByTag(typeof(RealMsg).Name) | ||
.RunForeach(e => TestActor.Tell(e), Materializer); | ||
|
||
// can't do this because Offset isn't IComparable | ||
// ReceiveN(msgCount).Cast<EventEnvelope>().Select(x => x.Offset).Should().BeInAscendingOrder(); | ||
ReceiveN(msgCount); | ||
|
||
// should receive more messages after the fact | ||
actor.Tell(msgCount); | ||
ExpectMsg($"{msgCount}-done", TimeSpan.FromSeconds(20)); | ||
ReceiveN(msgCount); | ||
} | ||
|
||
private class TagActor : ReceivePersistentActor | ||
{ | ||
public static Props Props(string id) | ||
{ | ||
return Akka.Actor.Props.Create(() => new TagActor(id)); | ||
} | ||
|
||
public TagActor(string id) | ||
{ | ||
PersistenceId = id; | ||
|
||
Command<int>(i => | ||
{ | ||
var msgs = new List<RealMsg>(); | ||
foreach (var n in Enumerable.Range(0, i)) | ||
{ | ||
msgs.Add(new RealMsg(i.ToString())); | ||
} | ||
PersistAll(msgs, m => | ||
{ | ||
if (LastSequenceNr >= i) | ||
{ | ||
Sender.Tell($"{i}-done"); | ||
} | ||
}); | ||
}); | ||
|
||
Command<RealMsg>(r => | ||
{ | ||
Persist(r, e => | ||
{ | ||
Sender.Tell($"{e.Msg}-done"); | ||
}); | ||
}); | ||
} | ||
|
||
public override string PersistenceId { get; } | ||
} | ||
|
||
private class EventTagger : IWriteEventAdapter | ||
{ | ||
public string DefaultTag { get; } | ||
|
||
public EventTagger() | ||
{ | ||
DefaultTag = "accounts"; | ||
} | ||
|
||
public string Manifest(object evt) | ||
{ | ||
return string.Empty; | ||
} | ||
|
||
public object ToJournal(object evt) | ||
{ | ||
return new Tagged(evt, ImmutableHashSet<string>.Empty.Add(DefaultTag).Add(evt.GetType().Name)); | ||
} | ||
} | ||
|
||
public static string TableName { get; private set; } | ||
|
||
public static Config Config() | ||
{ | ||
var azureConfig = | ||
!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("AZURE_CONNECTION_STR")) | ||
? AzureStorageConfigHelper.AzureConfig(Environment.GetEnvironmentVariable("AZURE_CONNECTION_STR")) | ||
: AzureStorageConfigHelper.AzureConfig(WindowsAzureStorageEmulatorFixture.GenerateConnStr()); | ||
|
||
TableName = azureConfig.GetString("akka.persistence.journal.azure-table.table-name"); | ||
|
||
return azureConfig; | ||
} | ||
} | ||
} |
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