-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathInProcessTestServer.cs
193 lines (165 loc) · 6.91 KB
/
InProcessTestServer.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
#region Copyright notice and license
// Copyright 2019 The gRPC Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#endregion
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Server.Kestrel.Core;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace Grpc.AspNetCore.FunctionalTests.Infrastructure
{
public abstract class InProcessTestServer : IDisposable
{
internal abstract event Action<LogRecord> ServerLogged;
public abstract string GetUrl(TestServerEndpointName endpointName);
public abstract IWebHost? Host { get; }
public abstract void StartServer();
public abstract void Dispose();
}
public class InProcessTestServer<TStartup> : InProcessTestServer
where TStartup : class
{
private readonly ILoggerFactory _loggerFactory;
private readonly ILogger _logger;
private readonly LogSinkProvider _logSinkProvider;
private readonly Action<IServiceCollection>? _initialConfigureServices;
private IWebHost? _host;
private IHostApplicationLifetime? _lifetime;
private Dictionary<TestServerEndpointName, string>? _urls;
internal override event Action<LogRecord> ServerLogged
{
add => _logSinkProvider.RecordLogged += value;
remove => _logSinkProvider.RecordLogged -= value;
}
public override string GetUrl(TestServerEndpointName endpointName)
{
if (_urls == null)
{
throw new InvalidOperationException();
}
return _urls[endpointName];
}
public override IWebHost? Host => _host;
public InProcessTestServer(Action<IServiceCollection>? initialConfigureServices)
{
_logSinkProvider = new LogSinkProvider();
_loggerFactory = new LoggerFactory();
_loggerFactory.AddProvider(_logSinkProvider);
_logger = _loggerFactory.CreateLogger<InProcessTestServer<TStartup>>();
_initialConfigureServices = initialConfigureServices;
}
public override void StartServer()
{
_host = new WebHostBuilder()
.ConfigureLogging(builder => builder
.SetMinimumLevel(LogLevel.Trace)
.AddProvider(new ForwardingLoggerProvider(_loggerFactory)))
.ConfigureServices(services =>
{
_initialConfigureServices?.Invoke(services);
})
.UseStartup(typeof(TStartup))
.UseKestrel(options =>
{
options.ListenLocalhost(50050, listenOptions =>
{
listenOptions.Protocols = HttpProtocols.Http2;
});
options.ListenLocalhost(50040, listenOptions =>
{
listenOptions.Protocols = HttpProtocols.Http1;
});
options.ListenLocalhost(50030, listenOptions =>
{
listenOptions.Protocols = HttpProtocols.Http1;
var basePath = Path.GetDirectoryName(typeof(InProcessTestServer).Assembly.Location);
var certPath = Path.Combine(basePath!, "server1.pfx");
listenOptions.UseHttps(certPath, "1111");
});
})
.UseContentRoot(Directory.GetCurrentDirectory())
.Build();
var t = Task.Run(() => _host.Start());
_logger.LogInformation("Starting test server...");
_lifetime = _host.Services.GetRequiredService<IHostApplicationLifetime>();
// This only happens once per fixture, so we can afford to wait a little bit on it.
if (!_lifetime.ApplicationStarted.WaitHandle.WaitOne(TimeSpan.FromSeconds(20)))
{
// t probably faulted
if (t.IsFaulted)
{
throw t.Exception!.InnerException!;
}
var logs = _logSinkProvider.GetLogs();
throw new TimeoutException($"Timed out waiting for application to start.{Environment.NewLine}Startup Logs:{Environment.NewLine}{RenderLogs(logs)}");
}
_logger.LogInformation("Test Server started");
// Get the URL from the server
_urls = new Dictionary<TestServerEndpointName, string>
{
[TestServerEndpointName.Http2] = "http://127.0.0.1:50050",
[TestServerEndpointName.Http1] = "http://127.0.0.1:50040",
[TestServerEndpointName.Http1WithTls] = "https://127.0.0.1:50030"
};
_lifetime.ApplicationStopped.Register(() =>
{
_logger.LogInformation("Test server shut down");
});
}
private string RenderLogs(IList<LogRecord> logs)
{
var builder = new StringBuilder();
foreach (var log in logs)
{
builder.AppendLine($"{log.Timestamp:O} {log.LoggerName} {log.LogLevel}: {log.Formatter(log.State, log.Exception)}");
if (log.Exception != null)
{
var message = log.Exception.ToString();
foreach (var line in message.Split(new[] { Environment.NewLine }, StringSplitOptions.None))
{
builder.AppendLine($"| {line}");
}
}
}
return builder.ToString();
}
public override void Dispose()
{
_logger.LogInformation("Shutting down test server");
_host?.Dispose();
_loggerFactory.Dispose();
}
private class ForwardingLoggerProvider : ILoggerProvider
{
private readonly ILoggerFactory _loggerFactory;
public ForwardingLoggerProvider(ILoggerFactory loggerFactory)
{
_loggerFactory = loggerFactory;
}
public void Dispose()
{
}
public ILogger CreateLogger(string categoryName)
{
return _loggerFactory.CreateLogger(categoryName);
}
}
}
}