-
Notifications
You must be signed in to change notification settings - Fork 869
/
Copy pathTestEnvironment.cs
256 lines (226 loc) · 9.51 KB
/
TestEnvironment.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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Server.HttpSys;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Xunit.Abstractions;
using Yarp.ReverseProxy.Configuration;
using Yarp.Tests.Common;
namespace Yarp.ReverseProxy.Common;
public class TestEnvironment
{
public ITestOutputHelper TestOutput { get; set; }
public HttpProtocols ProxyProtocol { get; set; } = HttpProtocols.Http1AndHttp2;
public bool UseHttpsOnProxy { get; set; }
public Encoding HeaderEncoding { get; set; }
public Action<IServiceCollection> ConfigureProxyServices { get; set; } = _ => { };
public Action<IReverseProxyBuilder> ConfigureProxy { get; set; } = _ => { };
public Action<IApplicationBuilder> ConfigureProxyApp { get; set; } = _ => { };
public string ClusterId { get; set; } = "cluster1";
public Func<ClusterConfig, RouteConfig, (ClusterConfig Cluster, RouteConfig Route)> ConfigTransformer { get; set; } = (a, b) => (a, b);
public Version DestinationHttpVersion { get; set; }
public HttpVersionPolicy? DestinationHttpVersionPolicy { get; set; }
public HttpProtocols DestinationProtocol { get; set; } = HttpProtocols.Http1AndHttp2;
public bool UseHttpsOnDestination { get; set; }
public bool UseHttpSysOnDestination { get; set; }
public Action<IServiceCollection> ConfigureDestinationServices { get; set; } = _ => { };
public Action<IApplicationBuilder> ConfigureDestinationApp { get; set; } = _ => { };
public TestEnvironment() { }
public TestEnvironment(RequestDelegate destinationGetDelegate)
{
ConfigureDestinationApp = destinationApp =>
{
destinationApp.Run(destinationGetDelegate);
};
}
public async Task Invoke(Func<string, Task> clientFunc, CancellationToken cancellationToken = default)
{
using var destination = CreateHost(DestinationProtocol, UseHttpsOnDestination, HeaderEncoding,
ConfigureDestinationServices, ConfigureDestinationApp, UseHttpSysOnDestination);
await destination.StartAsync(cancellationToken);
using var proxy = CreateProxy(destination.GetAddress());
await proxy.StartAsync(cancellationToken);
try
{
await clientFunc(proxy.GetAddress());
}
finally
{
await proxy.StopAsync(cancellationToken);
await destination.StopAsync(cancellationToken);
}
}
public IHost CreateProxy(string destinationAddress)
{
return CreateHost(ProxyProtocol, UseHttpsOnProxy, HeaderEncoding,
services =>
{
ConfigureProxyServices(services);
var route = new RouteConfig
{
RouteId = "route1",
ClusterId = ClusterId,
Match = new RouteMatch { Path = "/{**catchall}" }
};
var cluster = new ClusterConfig
{
ClusterId = ClusterId,
Destinations = new Dictionary<string, DestinationConfig>(StringComparer.OrdinalIgnoreCase)
{
{ "destination1", new DestinationConfig() { Address = destinationAddress } }
},
HttpClient = new HttpClientConfig
{
DangerousAcceptAnyServerCertificate = UseHttpsOnDestination,
RequestHeaderEncoding = HeaderEncoding?.WebName,
},
HttpRequest = new Forwarder.ForwarderRequestConfig
{
Version = DestinationHttpVersion,
VersionPolicy = DestinationHttpVersionPolicy,
}
};
(cluster, route) = ConfigTransformer(cluster, route);
var proxyBuilder = services.AddReverseProxy().LoadFromMemory(new[] { route }, new[] { cluster });
ConfigureProxy(proxyBuilder);
},
app =>
{
ConfigureProxyApp(app);
app.UseRouting();
app.UseEndpoints(builder =>
{
builder.MapReverseProxy();
});
});
}
private IHost CreateHost(HttpProtocols protocols, bool useHttps, Encoding requestHeaderEncoding,
Action<IServiceCollection> configureServices, Action<IApplicationBuilder> configureApp, bool useHttpSys = false)
{
return new HostBuilder()
.ConfigureAppConfiguration(config =>
{
config.AddInMemoryCollection(new Dictionary<string, string>()
{
{ "Logging:LogLevel:Microsoft", "Trace" },
{ "Logging:LogLevel:Microsoft.AspNetCore.Hosting.Diagnostics", "Information" }
});
})
.ConfigureLogging((hostingContext, loggingBuilder) =>
{
loggingBuilder.AddConfiguration(hostingContext.Configuration.GetSection("Logging"));
loggingBuilder.AddEventSourceLogger();
if (TestOutput != null)
{
loggingBuilder.AddXunit(TestOutput);
}
})
.ConfigureWebHost(webHostBuilder =>
{
webHostBuilder
.ConfigureServices(configureServices)
.UseKestrel(kestrel =>
{
if (requestHeaderEncoding is not null)
{
kestrel.RequestHeaderEncodingSelector = _ => requestHeaderEncoding;
}
kestrel.Listen(IPAddress.Loopback, 0, listenOptions =>
{
listenOptions.Protocols = protocols;
if (useHttps)
{
listenOptions.UseHttps(TestResources.GetTestCertificate());
}
listenOptions.UseConnectionLogging();
});
})
.Configure(configureApp);
if (useHttpSys)
{
#pragma warning disable CA1416 // Validate platform compatibility
webHostBuilder.UseHttpSys(httpSys =>
{
if (useHttps)
{
httpSys.UrlPrefixes.Add("https://localhost:" + FindHttpSysHttpsPortAsync(TestOutput).Result);
}
else
{
httpSys.UrlPrefixes.Add("http://localhost:0");
}
});
#pragma warning restore CA1416 // Validate platform compatibility
}
}).Build();
}
private const int BaseHttpsPort = 44300;
private const int MaxHttpsPort = 44399;
private static int NextHttpsPort = BaseHttpsPort;
private static readonly SemaphoreSlim PortLock = new SemaphoreSlim(1);
internal static async Task<int> FindHttpSysHttpsPortAsync(ITestOutputHelper output)
{
await PortLock.WaitAsync();
try
{
while (NextHttpsPort < MaxHttpsPort)
{
var port = NextHttpsPort++;
using var host = new HostBuilder()
.ConfigureAppConfiguration(config =>
{
config.AddInMemoryCollection(new Dictionary<string, string>()
{
{ "Logging:LogLevel:Microsoft", "Trace" },
});
})
.ConfigureLogging((hostingContext, loggingBuilder) =>
{
loggingBuilder.AddConfiguration(hostingContext.Configuration.GetSection("Logging"));
loggingBuilder.AddEventSourceLogger();
loggingBuilder.AddXunit(output);
})
.ConfigureWebHost(webHostBuilder =>
{
#pragma warning disable CA1416 // Validate platform compatibility
webHostBuilder.UseHttpSys(httpSys =>
{
httpSys.UrlPrefixes.Add("https://localhost:" + port);
});
webHostBuilder.Configure(app => { });
#pragma warning restore CA1416 // Validate platform compatibility
}).Build();
try
{
await host.StartAsync();
await host.StopAsync();
return port;
}
catch (HttpSysException)
{
}
}
NextHttpsPort = BaseHttpsPort;
}
finally
{
PortLock.Release();
}
throw new Exception("Failed to locate a free port.");
}
}