-
Notifications
You must be signed in to change notification settings - Fork 357
Expand file tree
/
Copy pathProgressMessageHandlerTest.cs
More file actions
140 lines (124 loc) · 5.17 KB
/
ProgressMessageHandlerTest.cs
File metadata and controls
140 lines (124 loc) · 5.17 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
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.TestCommon;
namespace System.Net.Http.Handlers
{
public class ProgressMessageHandlerTest
{
private const string TestHeader = "TestHeader";
private const string TestValue = "TestValue";
[Theory]
[InlineData(false, false)]
[InlineData(false, true)]
[InlineData(true, false)]
[InlineData(true, true)]
public async Task SendAsync_DoesNotInsertSendProgressWithoutEntityOrHandlerPresent(bool insertRequestEntity, bool addSendProgressHandler)
{
// Arrange
HttpMessageInvoker invoker = CreateMessageInvoker(includeResponseEntity: false, addReceiveProgressHandler: false, addSendProgressHandler: addSendProgressHandler);
HttpRequestMessage request = new HttpRequestMessage();
HttpContent content = null;
if (insertRequestEntity)
{
content = new StringContent("Request Entity!");
content.Headers.Add(TestHeader, TestValue);
request.Content = content;
}
// Act
await invoker.SendAsync(request, CancellationToken.None);
// Assert
if (insertRequestEntity && addSendProgressHandler)
{
ValidateContentHeader(request.Content);
Assert.NotSame(content, request.Content);
Assert.IsType<ProgressContent>(request.Content);
}
else
{
if (insertRequestEntity)
{
Assert.IsType<StringContent>(request.Content);
}
else
{
Assert.Null(request.Content);
}
}
}
[Theory]
[InlineData(false, false)]
[InlineData(false, true)]
[InlineData(true, false)]
[InlineData(true, true)]
public async Task SendAsync_InsertsReceiveProgressWhenResponseEntityPresent(bool insertResponseEntity, bool addReceiveProgressHandler)
{
// Arrange
HttpMessageInvoker invoker = CreateMessageInvoker(includeResponseEntity: insertResponseEntity, addSendProgressHandler: false, addReceiveProgressHandler: addReceiveProgressHandler);
HttpRequestMessage request = new HttpRequestMessage();
// Act
HttpResponseMessage response = await invoker.SendAsync(request, CancellationToken.None);
// Assert
if (insertResponseEntity && addReceiveProgressHandler)
{
ValidateContentHeader(response.Content);
Assert.NotNull(response.Content);
Assert.IsType<StreamContent>(response.Content);
}
else
{
if (insertResponseEntity)
{
Assert.IsType<StringContent>(response.Content);
}
else
{
Assert.NotNull(response.Content);
Assert.Equal(0L, response.Content.Headers.ContentLength);
}
}
}
private static HttpMessageInvoker CreateMessageInvoker(bool includeResponseEntity, bool addSendProgressHandler, bool addReceiveProgressHandler)
{
ShortCircuitMessageHandler innerHandler = new ShortCircuitMessageHandler(includeResponseEntity);
ProgressMessageHandler progress = new ProgressMessageHandler(innerHandler);
if (addSendProgressHandler)
{
progress.HttpSendProgress += new MockProgressEventHandler().Handler;
}
if (addReceiveProgressHandler)
{
progress.HttpReceiveProgress += new MockProgressEventHandler().Handler;
}
return new HttpMessageInvoker(progress);
}
private static void ValidateContentHeader(HttpContent content)
{
IEnumerable<string> values;
bool headerResult = content.Headers.TryGetValues(TestHeader, out values);
Assert.True(headerResult);
Assert.Equal(TestValue, values.First());
}
private class ShortCircuitMessageHandler : HttpMessageHandler
{
bool _includeResponseEntity;
public ShortCircuitMessageHandler(bool includeResponseEntity)
{
_includeResponseEntity = includeResponseEntity;
}
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
HttpResponseMessage response = request.CreateResponse();
if (_includeResponseEntity)
{
response.Content = new StringContent("Response Entity");
response.Content.Headers.Add(TestHeader, TestValue);
}
return Task.FromResult(response);
}
}
}
}