-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathInProcWebServer.cs
74 lines (60 loc) · 2.2 KB
/
InProcWebServer.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
using EmbedIO;
using EmbedIO.Actions;
using Newtonsoft.Json;
using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DSM.Tests
{
public static class InProcWebServer
{
public static async Task JsonResultAsync(string uri, object result)
{
var completion = new TaskCompletionSource<bool>();
RequestHandlerCallback callback = async ctx =>
{
var json = JsonConvert.SerializeObject(result);
await ctx.SendStringAsync(json, "application/json", Encoding.UTF8);
completion.SetResult(true);
};
var server = new WebServer(options => options.WithUrlPrefix(uri)
.WithMode(HttpListenerMode.EmbedIO))
.WithModule(new ActionModule("/", HttpVerbs.Any, callback));
using (server)
{
server.RunAsync();
await completion.Task;
}
}
public static Task<string> EchoAsync(string uri)
{
return DelayEchoAsync(uri, TimeSpan.Zero);
}
public static async Task<string> DelayEchoAsync(string uri, TimeSpan delay)
{
var completion = new TaskCompletionSource<string>();
RequestHandlerCallback callback = async ctx =>
{
await Task.Delay(delay);
completion.SetResult(await ctx.GetRequestBodyAsStringAsync());
};
var server = new WebServer(options => options.WithUrlPrefix(uri)
.WithMode(HttpListenerMode.EmbedIO))
.WithModule(new ActionModule("/", HttpVerbs.Any, callback));
using (server)
{
server.RunAsync();
var result = await completion.Task;
try
{
return JsonConvert.DeserializeObject<string>(result);
}
catch
{
return result;
}
}
}
}
}