-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEndpointExtensionsTests.cs
More file actions
133 lines (110 loc) · 4.01 KB
/
Copy pathEndpointExtensionsTests.cs
File metadata and controls
133 lines (110 loc) · 4.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
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Vulthil.xUnit;
namespace Vulthil.SharedKernel.Api.Tests;
public sealed class EndpointExtensionsTests : BaseUnitTestCase
{
[Fact]
public void AddEndpointsSkipsOpenGenericImplementations()
{
// Arrange
var services = new ServiceCollection();
// Act
services.AddEndpoints(typeof(EndpointExtensionsTests).Assembly);
// Assert
Assert.DoesNotContain(services, descriptor => descriptor.ImplementationType == typeof(OpenGenericEndpoint<>));
Assert.Contains(services, descriptor => descriptor.ImplementationType == typeof(ScopedDependentEndpoint));
}
[Fact]
public void ScopedDependentEndpointConstructorThrowsOnNullMarker()
{
// Arrange
// Act & Assert
Assert.Throws<ArgumentNullException>(() => new ScopedDependentEndpoint(null!));
}
[Fact]
public void MapEndpointsResolvesEndpointsFromAScopeNotTheRootProvider()
{
// Arrange
var builder = WebApplication.CreateBuilder();
builder.Host.UseDefaultServiceProvider(options => options.ValidateScopes = true);
builder.Services.AddScoped<ScopedMarker>();
builder.Services.AddEndpoints(typeof(EndpointExtensionsTests).Assembly);
using var app = builder.Build();
// Act
var exception = Record.Exception(() => app.MapEndpoints());
// Assert
Assert.Null(exception);
}
[Fact]
public void MapEndpointsMapsEachDiscoveredEndpointThroughTheProvidedRouteGroup()
{
// Arrange
var builder = WebApplication.CreateBuilder();
builder.Services.AddScoped<ScopedMarker>();
builder.Services.AddEndpoints(typeof(EndpointExtensionsTests).Assembly);
using var app = builder.Build();
var group = app.MapGroup("scoped-group");
// Act
var result = app.MapEndpoints(group);
// Assert
Assert.Same(app, result);
Assert.Contains(builder.Services, descriptor => descriptor.ImplementationType == typeof(RecordingEndpoint));
IEndpointRouteBuilder endpointRouteBuilder = app;
var routePatterns = endpointRouteBuilder.DataSources
.SelectMany(dataSource => dataSource.Endpoints)
.OfType<RouteEndpoint>()
.Select(endpoint => endpoint.RoutePattern.RawText)
.ToArray();
Assert.Contains("scoped-group/recording-endpoint", routePatterns);
}
[Fact]
public void MapEndpointsThrowsOnNullApp()
{
// Arrange
// Act & Assert
Assert.Throws<ArgumentNullException>(() => EndpointExtensions.MapEndpoints(null!));
}
[Fact]
public void AddEndpointsThrowsOnNullServices()
{
// Arrange
// Act & Assert
Assert.Throws<ArgumentNullException>(() => EndpointExtensions.AddEndpoints(null!, typeof(EndpointExtensionsTests).Assembly));
}
[Fact]
public void AddEndpointsThrowsOnNullAssembly()
{
// Arrange
var services = new ServiceCollection();
// Act & Assert
Assert.Throws<ArgumentNullException>(() => services.AddEndpoints(null!));
}
private sealed class RecordingEndpoint : IEndpoint
{
public void MapEndpoint(IEndpointRouteBuilder app) => app.MapGet("recording-endpoint", () => TypedResults.Ok());
}
private sealed class ScopedMarker
{
public Guid Id { get; } = Guid.NewGuid();
}
private sealed class ScopedDependentEndpoint : IEndpoint
{
public ScopedDependentEndpoint(ScopedMarker marker)
{
ArgumentNullException.ThrowIfNull(marker);
}
public void MapEndpoint(IEndpointRouteBuilder app) => _ = app;
}
private sealed class OpenGenericEndpoint<T> : IEndpoint
{
public void MapEndpoint(IEndpointRouteBuilder app)
{
_ = app;
_ = typeof(T);
}
}
}