-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSendCommandAzureServiceBusEndToEndTests.cs
More file actions
135 lines (121 loc) · 6.01 KB
/
SendCommandAzureServiceBusEndToEndTests.cs
File metadata and controls
135 lines (121 loc) · 6.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
using System.Text;
using System.Text.Json;
using BuslyCLI.Config;
using BuslyCLI.Console.Tests.TestHelpers;
using BuslyCLI.DependencyInjection;
using BuslyCLI.Factories;
using BuslyCLI.Spectre;
using Microsoft.Extensions.DependencyInjection;
using Spectre.Console.Cli.Extensions.DependencyInjection;
using Spectre.Console.Cli.Testing;
namespace BuslyCLI.Console.Tests.EndToEnd.AzureServiceBus;
// [Ignore("Can enable once AzureServiceBus is added to the nsb config file")]
public class SendCommandAzureServiceBusEndToEndTests : AzureServiceBusEndToEndTestBase
{
private CommandAppTester _sut;
private readonly JsonSerializerOptions _jsonObjectOptions = new() { PropertyNamingPolicy = JsonNamingPolicy.CamelCase, WriteIndented = true };
[SetUp]
public void Setup()
{
var registrations = new ServiceCollection();
registrations.AddBuslyCLIServices();
using var registrar = new DependencyInjectionRegistrar(registrations);
_sut = new CommandAppTester(registrar);
_sut.Configure(AppConfiguration.GetSpectreCommandConfiguration());
}
[Test]
public async Task ShouldSendCommand()
{
await RunWithTestEndpoint(async testEndpoint =>
{
// Arrange
await testEndpoint.StartEndpoint();
var messageBody = new { OrderNumber = Guid.NewGuid() };
var json = JsonSerializer.Serialize(messageBody, _jsonObjectOptions);
var yamlFile = $"""
---
current-transport: local-azure-service-bus
transports:
- name: local-azure-service-bus
azure-service-bus-transport-config:
connection-string: {Container.GetConnectionString()}
""";
using var configFile = new TestableNServiceBusConfigurationFile(yamlFile);
// Act
var result = await _sut.RunAsync([
"command",
"send",
"--content-type", "application/json",
"--enclosed-message-type", "MessageContracts.Commands.CreateOrder",
"--destination-endpoint", testEndpoint.EndpointName,
"--message-body", json,
"--config", configFile.FilePath]);
// Assert
Assert.That(result.ExitCode, Is.EqualTo(0));
var message = testEndpoint.TryReceiveMessage();
Assert.That(message.Headers["NServiceBus.EnclosedMessageTypes"],
Is.EqualTo("MessageContracts.Commands.CreateOrder"));
Assert.That(message.Headers["NServiceBus.ContentType"], Is.EqualTo("application/json"));
Assert.That(Encoding.UTF8.GetString(message.Body.Span), Is.EqualTo(json));
});
}
[Test]
// TODO: Remove endpoint.Subscribe("<<EVENT>>") calls
// TODO: in `HostSettings` pass `false` for the setupInfrastructure parameter
// TODO: [Option 1 - NOT EASY] Find a way so that i can "pre-determine" the number of test methods
// to pregenerate a list of queues, subscriptions, and topics
// TODO: [Option 2 - precreate a list of events and random endpoint names. pull the names from the list during execution so it can't be used by another test]
// TODO: [Option 3 - create and destroy a container per test. This would be slow and possibly a resource hog if done in paralle]
public async Task ShouldPublishEvent()
{
await RunWithTestEndpoint(async testEndpoint =>
{
// Arrange
await testEndpoint.StartEndpoint();
// This wont work. Emulator doesn't allow subscription creation. It's all pre-setup with emulator config
// await testEndpoint.Subscribe("MessageContracts.Events.OrderCreated");
var messageBody = new { OrderNumber = Guid.NewGuid() };
var json = JsonSerializer.Serialize(messageBody, _jsonObjectOptions);
var eventType = GeneratedTestEndpointNamesAndSubscribedEvent
.Single(x => x.Item1 == testEndpoint.EndpointName).Item2;
var yamlFile = $"""
---
current-transport: local-azure-service-bus
transports:
- name: local-azure-service-bus
azure-service-bus-transport-config:
connection-string: {Container.GetConnectionString()}
""";
using var configFile = new TestableNServiceBusConfigurationFile(yamlFile);
// Act
var result = await _sut.RunAsync([
"event",
"publish",
"--content-type", "application/json",
"--enclosed-message-type", eventType,
"--message-body", json,
"--config", configFile.FilePath]);
// Assert
Assert.That(result.ExitCode, Is.EqualTo(0));
var message = testEndpoint.TryReceiveMessage();
Assert.That(message.Headers["NServiceBus.EnclosedMessageTypes"],
Is.EqualTo(eventType));
Assert.That(message.Headers["NServiceBus.ContentType"], Is.EqualTo("application/json"));
Assert.That(Encoding.UTF8.GetString(message.Body.Span), Is.EqualTo(json));
});
}
private async Task RunWithTestEndpoint(Func<RawEndpoint, Task> testAction)
{
var random = new Random();
var testEndpointName = GeneratedTestEndpointNamesAndSubscribedEvent[random.Next(GeneratedTestEndpointNamesAndSubscribedEvent.Count)];
var testEndpoint = await new RawEndpointFactory().CreateRawEndpoint(testEndpointName.Item1, new TransportConfig()
{
AzureServiceBusTransportConfig = new AzureServiceBusTransportConfig()
{
ConnectionString = Container.GetConnectionString()
}
}, false);
await testAction(testEndpoint);
await testEndpoint.ShutDownAndCleanUp();
}
}