btcpayserver/BTCPayServer.Tests/CustomerHttpServer.cs

69 lines
2.1 KiB
C#
Raw Normal View History

2020-06-29 04:44:35 +02:00
using System;
2020-06-28 10:55:27 +02:00
using System.IO;
using System.Linq;
using System.Threading;
2019-01-06 07:04:30 +01:00
using System.Threading.Channels;
2020-06-28 10:55:27 +02:00
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Hosting.Server.Features;
2019-01-06 07:04:30 +01:00
using Newtonsoft.Json;
2020-06-28 10:55:27 +02:00
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Tests
{
public class CustomServer : IDisposable
{
readonly IWebHost _Host = null;
readonly CancellationTokenSource _Closed = new CancellationTokenSource();
readonly Channel<JObject> _Requests = Channel.CreateUnbounded<JObject>();
public CustomServer()
2020-06-28 10:55:27 +02:00
{
var port = Utils.FreeTcpPort();
_Host = new WebHostBuilder()
.Configure(app =>
{
2019-10-09 10:06:00 +02:00
app.Run(async req =>
{
2019-10-09 10:06:00 +02:00
await _Requests.Writer.WriteAsync(JsonConvert.DeserializeObject<JObject>(await new StreamReader(req.Request.Body).ReadToEndAsync()), _Closed.Token);
req.Response.StatusCode = 200;
});
})
.UseKestrel()
.UseUrls("http://127.0.0.1:" + port)
.Build();
_Host.Start();
}
public Uri GetUri()
{
return new Uri(_Host.ServerFeatures.Get<IServerAddressesFeature>().Addresses.First());
}
2019-01-06 07:04:30 +01:00
public async Task<JObject> GetNextRequest()
{
2022-01-14 09:50:29 +01:00
using CancellationTokenSource cancellation = new CancellationTokenSource(2000000);
try
{
2022-01-14 09:50:29 +01:00
JObject req = null;
while (!await _Requests.Reader.WaitToReadAsync(cancellation.Token) ||
!_Requests.Reader.TryRead(out req))
2019-01-06 07:04:30 +01:00
{
}
2022-01-14 09:50:29 +01:00
return req;
}
catch (TaskCanceledException)
{
throw new Xunit.Sdk.XunitException("Callback to the webserver was expected, check if the callback url is accessible from internet");
}
}
public void Dispose()
{
_Closed.Cancel();
_Host.Dispose();
}
}
}