-
Notifications
You must be signed in to change notification settings - Fork 599
/
Copy pathResourceNotificationTests.cs
489 lines (363 loc) · 19.5 KB
/
ResourceNotificationTests.cs
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Aspire.Hosting.Tests.Utils;
using Aspire.Hosting.Utils;
using Microsoft.AspNetCore.InternalTesting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Diagnostics.HealthChecks;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Testing;
using Xunit;
namespace Aspire.Hosting.Tests;
public class ResourceNotificationTests
{
[Fact]
public void InitialStateCanBeSpecified()
{
var builder = DistributedApplication.CreateBuilder();
var custom = builder.AddResource(new CustomResource("myResource"))
.WithEndpoint(name: "ep", scheme: "http", port: 8080)
.WithEnvironment("x", "1000")
.WithInitialState(new()
{
ResourceType = "MyResource",
Properties = [new("A", "B")],
});
var annotation = custom.Resource.Annotations.OfType<ResourceSnapshotAnnotation>().SingleOrDefault();
Assert.NotNull(annotation);
var state = annotation.InitialSnapshot;
Assert.Equal("MyResource", state.ResourceType);
Assert.Empty(state.EnvironmentVariables);
Assert.Collection(state.Properties, c =>
{
Assert.Equal("A", c.Name);
Assert.Equal("B", c.Value);
});
}
[Fact]
public async Task ResourceUpdatesAreQueued()
{
var resource = new CustomResource("myResource");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
async Task<List<ResourceEvent>> GetValuesAsync(CancellationToken cancellationToken)
{
var values = new List<ResourceEvent>();
await foreach (var item in notificationService.WatchAsync(cancellationToken))
{
values.Add(item);
if (values.Count == 2)
{
break;
}
}
return values;
}
using var cts = AsyncTestHelpers.CreateDefaultTimeoutTokenSource();
var enumerableTask = GetValuesAsync(cts.Token);
await notificationService.PublishUpdateAsync(resource, state => state with { Properties = state.Properties.Add(new("A", "value")) }).DefaultTimeout();
await notificationService.PublishUpdateAsync(resource, state => state with { Properties = state.Properties.Add(new("B", "value")) }).DefaultTimeout();
var values = await enumerableTask.DefaultTimeout();
Assert.Collection(values,
c =>
{
Assert.Equal(resource, c.Resource);
Assert.Equal("myResource", c.ResourceId);
Assert.Equal("CustomResource", c.Snapshot.ResourceType);
Assert.Equal("value", c.Snapshot.Properties.Single(p => p.Name == "A").Value);
Assert.Null(c.Snapshot.HealthStatus);
},
c =>
{
Assert.Equal(resource, c.Resource);
Assert.Equal("myResource", c.ResourceId);
Assert.Equal("CustomResource", c.Snapshot.ResourceType);
Assert.Equal("value", c.Snapshot.Properties.Single(p => p.Name == "B").Value);
Assert.Null(c.Snapshot.HealthStatus);
});
}
[Fact]
public async Task WatchingAllResourcesNotifiesOfAnyResourceChange()
{
var resource1 = new CustomResource("myResource1");
var resource2 = new CustomResource("myResource2");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
async Task<List<ResourceEvent>> GetValuesAsync(CancellationToken cancellation)
{
var values = new List<ResourceEvent>();
await foreach (var item in notificationService.WatchAsync(cancellation))
{
values.Add(item);
if (values.Count == 3)
{
break;
}
}
return values;
}
using var cts = AsyncTestHelpers.CreateDefaultTimeoutTokenSource();
var enumerableTask = GetValuesAsync(cts.Token);
await notificationService.PublishUpdateAsync(resource1, state => state with { Properties = state.Properties.Add(new("A", "value")) }).DefaultTimeout();
await notificationService.PublishUpdateAsync(resource2, state => state with { Properties = state.Properties.Add(new("B", "value")) }).DefaultTimeout();
await notificationService.PublishUpdateAsync(resource1, "replica1", state => state with { Properties = state.Properties.Add(new("C", "value")) }).DefaultTimeout();
var values = await enumerableTask.DefaultTimeout();
Assert.Collection(values,
c =>
{
Assert.Equal(resource1, c.Resource);
Assert.Equal("myResource1", c.ResourceId);
Assert.Equal("CustomResource", c.Snapshot.ResourceType);
Assert.Equal("value", c.Snapshot.Properties.Single(p => p.Name == "A").Value);
},
c =>
{
Assert.Equal(resource2, c.Resource);
Assert.Equal("myResource2", c.ResourceId);
Assert.Equal("CustomResource", c.Snapshot.ResourceType);
Assert.Equal("value", c.Snapshot.Properties.Single(p => p.Name == "B").Value);
},
c =>
{
Assert.Equal(resource1, c.Resource);
Assert.Equal("replica1", c.ResourceId);
Assert.Equal("CustomResource", c.Snapshot.ResourceType);
Assert.Equal("value", c.Snapshot.Properties.Single(p => p.Name == "C").Value);
});
}
[Fact]
public async Task WaitingOnResourceReturnsWhenResourceReachesTargetState()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState");
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
await waitTask.DefaultTimeout();
Assert.True(waitTask.IsCompletedSuccessfully);
}
[Fact]
public async Task WaitingOnResourceReturnsWhenResourceReachesTargetStateWithDifferentCasing()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
using var cts = AsyncTestHelpers.CreateDefaultTimeoutTokenSource();
var waitTask = notificationService.WaitForResourceAsync("MYreSouRCe1", "sOmeSTAtE", cts.Token);
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
await waitTask.DefaultTimeout();
Assert.True(waitTask.IsCompletedSuccessfully);
}
[Fact]
public async Task WaitingOnResourceReturnsImmediatelyWhenResourceIsInTargetStateAlready()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
// Publish the state update first
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState");
Assert.True(waitTask.IsCompletedSuccessfully);
}
[Fact]
public async Task WaitingOnResourceReturnsWhenResourceReachesRunningStateIfNoTargetStateSupplied()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
var waitTask = notificationService.WaitForResourceAsync("myResource1", targetState: null);
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = KnownResourceStates.Running }).DefaultTimeout();
await waitTask.DefaultTimeout();
Assert.True(waitTask.IsCompletedSuccessfully);
}
[Fact]
public async Task WaitingOnResourceReturnsCorrectStateWhenResourceReachesOneOfTargetStatesBeforeCancellation()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
var waitTask = notificationService.WaitForResourceAsync("myResource1", ["SomeState", "SomeOtherState"]);
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeOtherState" }).DefaultTimeout();
var reachedState = await waitTask.DefaultTimeout();
Assert.Equal("SomeOtherState", reachedState);
}
[Fact]
public async Task WaitingOnResourceReturnsCorrectStateWhenResourceReachesOneOfTargetStates()
{
var resource1 = new CustomResource("myResource1");
var notificationService = ResourceNotificationServiceTestHelpers.Create();
var waitTask = notificationService.WaitForResourceAsync("myResource1", ["SomeState", "SomeOtherState"], default);
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeOtherState" }).DefaultTimeout();
var reachedState = await waitTask.DefaultTimeout();
Assert.Equal("SomeOtherState", reachedState);
}
[Fact]
public async Task WaitingOnResourceReturnsItReachesStateAfterApplicationStoppingCancellationTokenSignaled()
{
var resource1 = new CustomResource("myResource1");
using var hostApplicationLifetime = new TestHostApplicationLifetime();
var notificationService = ResourceNotificationServiceTestHelpers.Create(hostApplicationLifetime: hostApplicationLifetime);
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState");
hostApplicationLifetime.StopApplication();
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
await waitTask.DefaultTimeout();
Assert.True(waitTask.IsCompletedSuccessfully);
}
[Fact]
public async Task WaitingOnResourceThrowsOperationCanceledExceptionIfResourceDoesntReachStateBeforeCancellationTokenSignaled()
{
var notificationService = ResourceNotificationServiceTestHelpers.Create();
using var cts = new CancellationTokenSource();
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState", cts.Token);
cts.Cancel();
await Assert.ThrowsAsync<OperationCanceledException>(async () =>
{
await waitTask;
}).DefaultTimeout();
}
[Fact]
public async Task WaitingOnResourceThrowsOperationCanceledExceptionIfResourceDoesntReachStateBeforeServiceIsDisposed()
{
var notificationService = ResourceNotificationServiceTestHelpers.Create();
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState");
notificationService.Dispose();
await Assert.ThrowsAsync<OperationCanceledException>(async () =>
{
await waitTask;
}).DefaultTimeout();
}
[Fact]
public async Task WaitingOnResourceThrowsOperationCanceledExceptionIfResourceDoesntReachStateBeforeCancellationTokenSignalledWhenApplicationStoppingTokenExists()
{
using var hostApplicationLifetime = new TestHostApplicationLifetime();
var notificationService = ResourceNotificationServiceTestHelpers.Create(hostApplicationLifetime: hostApplicationLifetime);
using var cts = new CancellationTokenSource();
var waitTask = notificationService.WaitForResourceAsync("myResource1", "SomeState", cts.Token);
cts.Cancel();
await Assert.ThrowsAsync<OperationCanceledException>(async () =>
{
await waitTask;
}).DefaultTimeout();
}
[Fact]
public async Task PublishLogsStateTextChangesCorrectly()
{
var resource1 = new CustomResource("resource1");
var logger = new FakeLogger<ResourceNotificationService>();
var notificationService = ResourceNotificationServiceTestHelpers.Create(logger: logger);
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
var logs = logger.Collector.GetSnapshot();
// Initial state text, log just the new state
Assert.Single(logs.Where(l => l.Level == LogLevel.Debug));
Assert.Contains(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state: SomeState"));
logger.Collector.Clear();
// Same state text as previous state, no log
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
logs = logger.Collector.GetSnapshot();
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug);
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state: SomeState"));
logger.Collector.Clear();
// Different state text, log the transition from the previous state to the new state
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "NewState" }).DefaultTimeout();
logs = logger.Collector.GetSnapshot();
Assert.Single(logs.Where(l => l.Level == LogLevel.Debug));
Assert.Contains(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state: SomeState -> NewState"));
logger.Collector.Clear();
// Null state text, no log
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = null }).DefaultTimeout();
logs = logger.Collector.GetSnapshot();
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug);
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state:"));
logger.Collector.Clear();
// Empty state text, no log
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "" }).DefaultTimeout();
logs = logger.Collector.GetSnapshot();
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug);
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state:"));
logger.Collector.Clear();
// White space state text, no log
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = " " }).DefaultTimeout();
logs = logger.Collector.GetSnapshot();
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug);
Assert.DoesNotContain(logs, l => l.Level == LogLevel.Debug && l.Message.Contains("Resource resource1/resource1 changed state:"));
logger.Collector.Clear();
}
[Fact]
public async Task PublishLogsTraceStateDetailsCorrectly()
{
var resource1 = new CustomResource("resource1");
var logger = new FakeLogger<ResourceNotificationService>();
var notificationService = ResourceNotificationServiceTestHelpers.Create(logger: logger);
var createdDate = DateTime.Now;
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { CreationTimeStamp = createdDate }).DefaultTimeout();
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { State = "SomeState" }).DefaultTimeout();
await notificationService.PublishUpdateAsync(resource1, snapshot => snapshot with { ExitCode = 0 }).DefaultTimeout();
var logs = logger.Collector.GetSnapshot();
Assert.Single(logs.Where(l => l.Level == LogLevel.Debug));
Assert.Equal(3, logs.Where(l => l.Level == LogLevel.Trace).Count());
Assert.Contains(logs, l => l.Level == LogLevel.Trace && l.Message.Contains("Resource resource1/resource1 update published:") && l.Message.Contains($"CreationTimeStamp = {createdDate:s}"));
Assert.Contains(logs, l => l.Level == LogLevel.Trace && l.Message.Contains("Resource resource1/resource1 update published:") && l.Message.Contains("State = { Text = SomeState"));
Assert.Contains(logs, l => l.Level == LogLevel.Trace && l.Message.Contains("Resource resource1/resource1 update published:") && l.Message.Contains("ExitCode = 0"));
}
[Fact]
public async Task WaitForResourceHealthyAsyncShouldThrowsIfResourceNameDoesNotExist()
{
var resource = new CustomResource("resource1");
using var builder = TestDistributedApplicationBuilder.Create();
builder.AddResource(resource);
using var app = builder.Build();
await app.StartAsync();
var rns = app.Services.GetRequiredService<ResourceNotificationService>();
var exception = await Assert.ThrowsAsync<InvalidOperationException>(async () =>
{
await rns.WaitForResourceHealthyAsync("notexist", default);
}).DefaultTimeout();
Assert.Equal($"Resource with name 'notexist' not found.", exception.Message);
}
[Fact]
public async Task WaitForResourceAsyncShouldThrowsIfResourceNameDoesNotExist()
{
var resource = new CustomResource("resource1");
using var builder = TestDistributedApplicationBuilder.Create();
builder.AddResource(resource);
using var app = builder.Build();
await app.StartAsync();
var rns = app.Services.GetRequiredService<ResourceNotificationService>();
var exception1 = await Assert.ThrowsAsync<InvalidOperationException>(async () =>
{
await rns.WaitForResourceAsync("notexist", "Healthy", default);
}).DefaultTimeout();
Assert.Equal($"Resource with name 'notexist' not found.", exception1.Message);
var exception2 = await Assert.ThrowsAsync<InvalidOperationException>(async () =>
{
await rns.WaitForResourceAsync("notexist", @event => @event.Snapshot.HealthStatus == HealthStatus.Healthy, default);
}).DefaultTimeout();
Assert.Equal($"Resource with name 'notexist' not found.", exception2.Message);
var exception3 = await Assert.ThrowsAsync<InvalidOperationException>(async () =>
{
await rns.WaitForResourceAsync("notexist", ["state1", "state2"], default);
}).DefaultTimeout();
Assert.Equal($"Resource with name 'notexist' not found.", exception3.Message);
}
private sealed class CustomResource(string name) : Resource(name),
IResourceWithEnvironment,
IResourceWithConnectionString,
IResourceWithEndpoints
{
public ReferenceExpression ConnectionStringExpression =>
ReferenceExpression.Create($"CustomConnectionString");
}
private sealed class TestHostApplicationLifetime : IHostApplicationLifetime, IDisposable
{
private readonly CancellationTokenSource _stoppingCts = new();
public TestHostApplicationLifetime()
{
ApplicationStopping = _stoppingCts.Token;
}
public CancellationToken ApplicationStarted { get; }
public CancellationToken ApplicationStopped { get; }
public CancellationToken ApplicationStopping { get; }
public void StopApplication()
{
_stoppingCts.Cancel();
}
public void Dispose()
{
_stoppingCts.Dispose();
}
}
}