-
Notifications
You must be signed in to change notification settings - Fork 36
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
1 parent
4d8d0ca
commit 8b508ed
Showing
1 changed file
with
39 additions
and
31 deletions.
There are no files selected for viewing
70 changes: 39 additions & 31 deletions
70
...eptanceTests/MultiCatalog/When_catalog_with_special_characters_configured_for_endpoint.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 |
---|---|---|
@@ -1,46 +1,54 @@ | ||
namespace NServiceBus.Transport.SqlServer.AcceptanceTests.MultiCatalog; | ||
|
||
using System.Threading.Tasks; | ||
using AcceptanceTesting; | ||
using NUnit.Framework; | ||
|
||
public class When_catalog_with_special_characters_configured_for_endpoint : MultiCatalogAcceptanceTest | ||
namespace NServiceBus.Transport.SqlServer.AcceptanceTests.MultiCatalog | ||
{ | ||
static string EndpointConnectionString => WithCustomCatalog(GetDefaultConnectionString(), "n service.bus&#"); | ||
using System.Threading.Tasks; | ||
using AcceptanceTesting; | ||
using NUnit.Framework; | ||
|
||
[Test] | ||
public async Task Should_be_able_to_send_messages_to_the_endpoint() | ||
public class When_catalog_with_special_characters_configured_for_endpoint : MultiCatalogAcceptanceTest | ||
{ | ||
await Scenario.Define<Context>() | ||
.WithEndpoint<AnEndpoint>(c => c.When(s => s.SendLocal(new Message()))) | ||
.Done(c => c.MessageReceived) | ||
.Run(); | ||
static string EndpointConnectionString => WithCustomCatalog(GetDefaultConnectionString(), "n service.bus&#"); | ||
|
||
Assert.Pass(); | ||
} | ||
[Test] | ||
public async Task Should_be_able_to_send_messages_to_the_endpoint() | ||
{ | ||
await Scenario.Define<Context>() | ||
.WithEndpoint<AnEndpoint>(c => c.When(s => s.SendLocal(new Message()))) | ||
.Done(c => c.MessageReceived) | ||
.Run(); | ||
|
||
public class AnEndpoint : EndpointConfigurationBuilder | ||
{ | ||
public AnEndpoint() => | ||
EndpointSetup(new CustomizedServer(EndpointConnectionString), (_, _) => { }); | ||
Assert.Pass(); | ||
} | ||
|
||
class Handler(Context scenarioContext) : IHandleMessages<Message> | ||
public class AnEndpoint : EndpointConfigurationBuilder | ||
{ | ||
public Task Handle(Message message, IMessageHandlerContext context) | ||
public AnEndpoint() => | ||
EndpointSetup(new CustomizedServer(EndpointConnectionString), (_, __) => { }); | ||
|
||
class Handler : IHandleMessages<Message> | ||
{ | ||
scenarioContext.MessageReceived = true; | ||
public Handler(Context scenarioContext) | ||
{ | ||
ScenarioContext = scenarioContext; | ||
} | ||
|
||
public Task Handle(Message message, IMessageHandlerContext context) | ||
{ | ||
ScenarioContext.MessageReceived = true; | ||
|
||
return Task.FromResult(0); | ||
} | ||
|
||
return Task.FromResult(0); | ||
Context ScenarioContext; | ||
} | ||
} | ||
} | ||
|
||
public class Message : ICommand | ||
{ | ||
} | ||
public class Message : ICommand | ||
{ | ||
} | ||
|
||
class Context : ScenarioContext | ||
{ | ||
public bool MessageReceived { get; set; } | ||
class Context : ScenarioContext | ||
{ | ||
public bool MessageReceived { get; set; } | ||
} | ||
} | ||
} |