Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable skipped Akka.Persistence.Tests specs #5018

Merged
merged 1 commit into from
May 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/core/Akka.Persistence.Tests/PersistentActorSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void PersistentActor_should_allow_behavior_changes_in_event_handler_as_la
ExpectMsgInOrder("a-1", "a-2", "b-0", "c-30", "c-31", "c-32", "d-0", "e-30", "e-31", "e-32");
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_support_snapshotting()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand All @@ -152,7 +152,7 @@ public void PersistentActor_should_support_snapshotting()
ExpectMsgInOrder("a-1", "a-2", "b-41", "b-42", "c-41", "c-42");
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_support_Context_Become_during_recovery()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand Down Expand Up @@ -433,7 +433,7 @@ public void PersistentActor_should_invoke_deferred_handlers_preserving_the_origi
ExpectNoMsg(TimeSpan.FromMilliseconds(100));
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_receive_RecoveryFinished_if_it_is_handled_after_all_events_have_been_replayed()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public void PersistentActor_should_allow_behavior_changes_in_event_handler_as_la
ExpectMsgInOrder("a-1", "a-2", "b-0", "c-30", "c-31", "c-32", "d-0", "e-30", "e-31", "e-32");
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_support_snapshotting()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand All @@ -151,7 +151,7 @@ public void PersistentActor_should_support_snapshotting()
ExpectMsgInOrder("a-1", "a-2", "b-41", "b-42", "c-41", "c-42");
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_support_Context_Become_during_recovery()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand Down Expand Up @@ -432,7 +432,7 @@ public void PersistentActor_should_invoke_deferred_handlers_preserving_the_origi
ExpectNoMsg(TimeSpan.FromMilliseconds(100));
}

[Fact(Skip = "Need https://github.com/akkadotnet/akka.net/pull/3668 merged")]
[Fact]
public void PersistentActor_should_receive_RecoveryFinished_if_it_is_handled_after_all_events_have_been_replayed()
{
var pref = ActorOf(Props.Create(() => new SnapshottingPersistentActor(Name, TestActor)));
Expand Down