-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added multi-transport addressing spec (#7391)
Added to prove the existence of #7378
- Loading branch information
1 parent
866e053
commit bd8a823
Showing
2 changed files
with
223 additions
and
91 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
123 changes: 123 additions & 0 deletions
123
src/core/Akka.Remote.Tests/Transport/MultiTransportAddressingSpec.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,123 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="Bugfix7378Spec.cs" company="Akka.NET Project"> | ||
// Copyright (C) 2009-2024 Lightbend Inc. <http://www.lightbend.com> | ||
// Copyright (C) 2013-2024 .NET Foundation <https://github.com/akkadotnet/akka.net> | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Threading.Tasks; | ||
using Akka.Actor; | ||
using Akka.Configuration; | ||
using Akka.TestKit; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace Akka.Remote.Tests.Transport; | ||
|
||
/// <summary> | ||
/// Added this spec to prove the existence of https://github.com/akkadotnet/akka.net/issues/7378 | ||
/// </summary> | ||
public class MultiTransportAddressingSpec : AkkaSpec | ||
{ | ||
public MultiTransportAddressingSpec(ITestOutputHelper output) : base(GetConfig(Sys1Port1, Sys1Port2), output) | ||
{ | ||
} | ||
|
||
public const int Sys1Port1 = 9991; | ||
public const int Sys1Port2 = 9992; | ||
|
||
public const int Sys2Port1 = 9993; | ||
public const int Sys2Port2 = 9994; | ||
|
||
private static Config GetConfig(int transportPort1, int transportPort2) | ||
{ | ||
return $$""" | ||
|
||
akka { | ||
actor.provider = remote | ||
remote { | ||
enabled-transports = [ | ||
"akka.remote.test1", | ||
"akka.remote.test2" | ||
] | ||
test1 { | ||
transport-class = "Akka.Remote.Transport.TestTransport, Akka.Remote" | ||
applied-adapters = [] | ||
registry-key = aX33k0jWKg | ||
local-address = "test1://MultiTransportSpec@localhost:{{transportPort1}}" | ||
maximum-payload-bytes = 32000b | ||
scheme-identifier = test1 | ||
} | ||
test2 { | ||
transport-class = "Akka.Remote.Transport.TestTransport, Akka.Remote" | ||
applied-adapters = [] | ||
registry-key = aX33k0j11c | ||
local-address = "test2://MultiTransportSpec@localhost:{{transportPort2}}" | ||
maximum-payload-bytes = 32000b | ||
scheme-identifier = test2 | ||
} | ||
} | ||
} | ||
|
||
"""; | ||
} | ||
|
||
|
||
[Fact] | ||
public async Task Should_Use_Second_Transport_For_Communication() | ||
{ | ||
var secondSystem = ActorSystem.Create("MultiTransportSpec", GetConfig(Sys2Port1, Sys2Port2).WithFallback(Sys.Settings.Config)); | ||
InitializeLogger(secondSystem); | ||
var assertProbe = CreateTestProbe(secondSystem); | ||
|
||
try | ||
{ | ||
|
||
var echoActor = secondSystem.ActorOf(Props.Create(() => new EchoActor(assertProbe)), "echo"); | ||
|
||
// use the first connection | ||
await PingAndVerify("test1", Sys2Port1); | ||
|
||
// use the second connection | ||
await PingAndVerify("test2", Sys2Port2); | ||
} | ||
finally | ||
{ | ||
Shutdown(secondSystem); | ||
} | ||
|
||
async Task PingAndVerify(string scheme, int port) | ||
{ | ||
var selection = Sys.ActorSelection($"akka.{scheme}://MultiTransportSpec@localhost:{port}/user/echo"); | ||
selection.Tell("ping", TestActor); | ||
|
||
var reply = await ExpectMsgAsync<string>(TimeSpan.FromSeconds(3)); | ||
Assert.Equal("pong", reply); | ||
|
||
var senderFromNode2Pov = await assertProbe.ExpectMsgAsync<IActorRef>(); | ||
Assert.Contains(scheme, senderFromNode2Pov.Path.Address.Protocol); | ||
|
||
var senderPath = LastSender.Path.ToString(); | ||
Assert.Contains(scheme, senderPath); | ||
} | ||
} | ||
|
||
public class EchoActor : ReceiveActor | ||
{ | ||
private readonly IActorRef _testProbe; | ||
|
||
public EchoActor(IActorRef testProbe) | ||
{ | ||
_testProbe = testProbe; | ||
Receive<string>(msg => | ||
{ | ||
if (msg == "ping") | ||
{ | ||
_testProbe.Tell(Sender); | ||
Sender.Tell("pong"); | ||
} | ||
}); | ||
} | ||
} | ||
} |