btcpayserver/BTCPayServer.Tests/FakeServer.cs
2020-11-14 13:39:44 +09:00

72 lines
2.1 KiB
C#

using System;
using System.Linq;
using System.Threading;
using System.Threading.Channels;
using System.Threading.Tasks;
using ExchangeSharp;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Hosting.Server.Features;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace BTCPayServer.Tests
{
public class FakeServer : IDisposable
{
IWebHost webHost;
readonly SemaphoreSlim semaphore;
readonly CancellationTokenSource cts = new CancellationTokenSource();
public FakeServer()
{
_channel = Channel.CreateUnbounded<HttpContext>();
semaphore = new SemaphoreSlim(0);
}
readonly Channel<HttpContext> _channel;
public async Task Start()
{
webHost = new WebHostBuilder()
.UseKestrel()
.UseUrls("http://127.0.0.1:0")
.Configure(appBuilder =>
{
appBuilder.Run(async ctx =>
{
await _channel.Writer.WriteAsync(ctx);
await semaphore.WaitAsync(cts.Token);
});
})
.Build();
await webHost.StartAsync();
var port = new Uri(webHost.ServerFeatures.Get<IServerAddressesFeature>().Addresses.First(), UriKind.Absolute)
.Port;
ServerUri = new Uri($"http://127.0.0.1:{port}/");
}
public Uri ServerUri { get; set; }
public void Done()
{
semaphore.Release();
}
public async Task Stop()
{
await webHost.StopAsync();
}
public void Dispose()
{
cts.Dispose();
webHost?.Dispose();
semaphore.Dispose();
}
public async Task<HttpContext> GetNextRequest(CancellationToken cancellationToken = default)
{
return await _channel.Reader.ReadAsync(cancellationToken);
}
}
}