-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResilienceSpec.cs
More file actions
248 lines (205 loc) · 9.98 KB
/
Copy pathResilienceSpec.cs
File metadata and controls
248 lines (205 loc) · 9.98 KB
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
using GaudiHTTP.Client;
using System.Net;
using System.Text;
using Akka;
using Akka.Streams.Dsl;
using Servus.Akka.Transport;
using GaudiHTTP.Streams;
using GaudiHTTP.Streams.Stages.Features;
using GaudiHTTP.Tests.Shared;
namespace GaudiHTTP.AcceptanceTests.TLS;
public sealed class ResilienceSpec : AcceptanceTestBase
{
private static Http11ClientEngine Engine =>
new(new GaudiClientOptions());
private static BidiFlow<HttpRequestMessage, ITransportOutbound, ITransportInbound, HttpResponseMessage, NotUsed>
CreateDecompressingEngine()
{
var decomp = BidiFlow.FromGraph(new ContentEncodingBidiStage());
return decomp.Atop(Engine.CreateFlow());
}
private async Task<HttpResponseMessage> SendScriptedAsync(HttpRequestMessage request,
Func<int, byte[], byte[]?> factory)
{
var fake = CreateScriptedConnection(factory);
var flow = Engine.CreateFlow().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
return await tcs.Task.WaitAsync(TimeSpan.FromSeconds(5), TestContext.Current.CancellationToken);
}
private async Task<HttpResponseMessage> SendDecompressingAsync(HttpRequestMessage request,
Func<int, byte[], byte[]?> factory)
{
var fake = CreateScriptedConnection(factory);
var flow = CreateDecompressingEngine().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
return await tcs.Task.WaitAsync(TimeSpan.FromSeconds(5), TestContext.Current.CancellationToken);
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-6")]
public async Task Resilience_should_cause_exception_on_content_length_mismatch_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/content-length-mismatch")
{
Version = HttpVersion.Version11
};
var raw = "HTTP/1.1 200 OK\r\nContent-Length: 100\r\n\r\nhello";
var fake = CreateScriptedConnectionWithClose((_, _) => Encoding.Latin1.GetBytes(raw));
var flow = Engine.CreateFlow().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
await Assert.ThrowsAnyAsync<Exception>(async () =>
{
var response = await tcs.Task.WaitAsync(TimeSpan.FromSeconds(3), TestContext.Current.CancellationToken);
await response.Content.ReadAsStringAsync(TestContext.Current.CancellationToken);
});
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9110-8.4")]
public async Task Resilience_should_fail_gracefully_on_corrupt_gzip_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/corrupt-gzip")
{
Version = HttpVersion.Version11
};
var corruptBody = new byte[] { 0xDE, 0xAD, 0xBE, 0xEF, 0x00, 0x01, 0x02, 0x03 };
var sb = new StringBuilder();
sb.Append("HTTP/1.1 200 OK\r\n");
sb.Append($"Content-Length: {corruptBody.Length}\r\n");
sb.Append("Content-Encoding: gzip\r\n");
sb.Append("\r\n");
var headerBytes = Encoding.Latin1.GetBytes(sb.ToString());
var responseBytes = new byte[headerBytes.Length + corruptBody.Length];
headerBytes.CopyTo(responseBytes, 0);
corruptBody.CopyTo(responseBytes, headerBytes.Length);
var response = await SendDecompressingAsync(request, (_, _) => responseBytes);
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
await Assert.ThrowsAsync<HttpRequestException>(async () =>
await response.Content.ReadAsByteArrayAsync(TestContext.Current.CancellationToken));
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9110-8.4")]
public async Task Resilience_should_fail_gracefully_on_corrupt_brotli_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/corrupt-br")
{
Version = HttpVersion.Version11
};
var corruptBody = new byte[] { 0xDE, 0xAD, 0xBE, 0xEF, 0x00, 0x01, 0x02, 0x03 };
var sb = new StringBuilder();
sb.Append("HTTP/1.1 200 OK\r\n");
sb.Append($"Content-Length: {corruptBody.Length}\r\n");
sb.Append("Content-Encoding: br\r\n");
sb.Append("\r\n");
var headerBytes = Encoding.Latin1.GetBytes(sb.ToString());
var responseBytes = new byte[headerBytes.Length + corruptBody.Length];
headerBytes.CopyTo(responseBytes, 0);
corruptBody.CopyTo(responseBytes, headerBytes.Length);
var response = await SendDecompressingAsync(request, (_, _) => responseBytes);
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
await Assert.ThrowsAsync<HttpRequestException>(async () =>
await response.Content.ReadAsByteArrayAsync(TestContext.Current.CancellationToken));
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-6")]
public async Task Resilience_should_detect_truncated_body_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/truncated-body/4")
{
Version = HttpVersion.Version11
};
var truncatedBody = new byte[100];
Array.Fill(truncatedBody, (byte)'X');
var sb = new StringBuilder();
sb.Append("HTTP/1.1 200 OK\r\n");
sb.Append("Content-Length: 4096\r\n");
sb.Append("\r\n");
var headerBytes = Encoding.Latin1.GetBytes(sb.ToString());
var responseBytes = new byte[headerBytes.Length + truncatedBody.Length];
headerBytes.CopyTo(responseBytes, 0);
truncatedBody.CopyTo(responseBytes, headerBytes.Length);
var fake = CreateScriptedConnectionWithClose((_, _) => responseBytes);
var flow = Engine.CreateFlow().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
await Assert.ThrowsAnyAsync<Exception>(async () =>
{
var response = await tcs.Task.WaitAsync(TimeSpan.FromSeconds(3), TestContext.Current.CancellationToken);
await response.Content.ReadAsStringAsync(TestContext.Current.CancellationToken);
});
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-2.1")]
public async Task Resilience_should_succeed_with_slow_headers_within_timeout_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/slow-headers/500")
{
Version = HttpVersion.Version11
};
var response = await SendScriptedAsync(request,
(_, _) => Encoding.Latin1.GetBytes("HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nslow-headers"));
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
var body = await response.Content.ReadAsStringAsync(TestContext.Current.CancellationToken);
Assert.Equal("slow-headers", body);
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-6")]
public async Task Resilience_should_succeed_with_slow_body_within_timeout_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/slow-body/500")
{
Version = HttpVersion.Version11
};
var bodyContent = "slow-body-first-halfslow-body-second-half";
var response = await SendScriptedAsync(request,
(_, _) => Encoding.Latin1.GetBytes(
$"HTTP/1.1 200 OK\r\nContent-Length: {bodyContent.Length}\r\n\r\n{bodyContent}"));
Assert.Equal(HttpStatusCode.OK, response.StatusCode);
var body = await response.Content.ReadAsStringAsync(TestContext.Current.CancellationToken);
Assert.Contains("slow-body-first-half", body);
Assert.Contains("slow-body-second-half", body);
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-2.1")]
public async Task Resilience_should_cause_cancellation_when_slow_headers_exceed_timeout_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/slow-headers/10000")
{
Version = HttpVersion.Version11
};
var fake = CreateScriptedConnection((_, _) => null);
var flow = Engine.CreateFlow().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
await Assert.ThrowsAnyAsync<Exception>(async () =>
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(3), TestContext.Current.CancellationToken));
}
[Fact(Timeout = 5000)]
[Trait("RFC", "RFC9112-2.1")]
public async Task Resilience_should_cause_exception_on_empty_response_over_https()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://localhost/resilience/empty-response")
{
Version = HttpVersion.Version11
};
var fake = CreateScriptedConnection((_, _) => null);
var flow = Engine.CreateFlow().Join(fake.AsFlow());
var tcs = new TaskCompletionSource<HttpResponseMessage>();
_ = Source.Single(request)
.Via(flow)
.RunWith(Sink.ForEach<HttpResponseMessage>(res => tcs.TrySetResult(res)), Materializer);
await Assert.ThrowsAnyAsync<Exception>(async () =>
await tcs.Task.WaitAsync(TimeSpan.FromSeconds(3), TestContext.Current.CancellationToken));
}
}