Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit 02c3892

Browse files
authored
Add tests for ClientWebSocket connections thru a proxy (#28031)
Created new tests for verifying ClientWebSocket connections end-to-end thru a proxy. Opened new issues #28024 and #28027 which cause the new tests to fail. Fixes #26957
1 parent b70128c commit 02c3892

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

src/Common/tests/System/Net/Configuration.WebSockets.cs

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ public static partial class Configuration
88
{
99
public static partial class WebSockets
1010
{
11+
public static string ProxyServerUri => GetValue("COREFX_WEBSOCKETPROXYSERVERURI");
12+
1113
public static string Host => GetValue("COREFX_WEBSOCKETHOST", DefaultAzureServer);
1214

1315
public static string SecureHost => GetValue("COREFX_SECUREWEBSOCKETHOST", DefaultAzureServer);

src/System.Net.WebSockets.Client/tests/ClientWebSocketOptionsTests.cs

+38-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public static void Proxy_Roundtrips()
5151

5252
[OuterLoop] // TODO: Issue #11345
5353
[ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
54-
public async Task NullProxySet_ConnectsSuccessfully(Uri server)
54+
public async Task Proxy_SetNull_ConnectsSuccessfully(Uri server)
5555
{
5656
for (int i = 0; i < 3; i++) // Connect and disconnect multiple times to exercise shared handler on netcoreapp
5757
{
@@ -67,6 +67,43 @@ public async Task NullProxySet_ConnectsSuccessfully(Uri server)
6767
}
6868
}
6969

70+
[ActiveIssue(28027)]
71+
[OuterLoop] // TODO: Issue #11345
72+
[ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
73+
public async Task Proxy_ConnectThruProxy_Success(Uri server)
74+
{
75+
string proxyServerUri = System.Net.Test.Common.Configuration.WebSockets.ProxyServerUri;
76+
if (string.IsNullOrEmpty(proxyServerUri))
77+
{
78+
_output.WriteLine("Skipping test...no proxy server defined.");
79+
return;
80+
}
81+
82+
_output.WriteLine($"ProxyServer: {proxyServerUri}");
83+
84+
IWebProxy proxy = new WebProxy(new Uri(proxyServerUri));
85+
using (ClientWebSocket cws = await WebSocketHelper.GetConnectedWebSocket(
86+
server,
87+
TimeOutMilliseconds,
88+
_output,
89+
default(TimeSpan),
90+
proxy))
91+
{
92+
var cts = new CancellationTokenSource(TimeOutMilliseconds);
93+
Assert.Equal(WebSocketState.Open, cws.State);
94+
95+
var closeStatus = WebSocketCloseStatus.NormalClosure;
96+
string closeDescription = "Normal Closure";
97+
98+
await cws.CloseAsync(closeStatus, closeDescription, cts.Token);
99+
100+
// Verify a clean close frame handshake.
101+
Assert.Equal(WebSocketState.Closed, cws.State);
102+
Assert.Equal(closeStatus, cws.CloseStatus);
103+
Assert.Equal(closeDescription, cws.CloseStatusDescription);
104+
}
105+
}
106+
70107
[ConditionalFact(nameof(WebSocketsSupported))]
71108
public static void SetBuffer_InvalidArgs_Throws()
72109
{

src/System.Net.WebSockets.Client/tests/WebSocketHelper.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,16 @@ public static Task<ClientWebSocket> GetConnectedWebSocket(
6565
Uri server,
6666
int timeOutMilliseconds,
6767
ITestOutputHelper output,
68-
TimeSpan keepAliveInterval = default) =>
68+
TimeSpan keepAliveInterval = default,
69+
IWebProxy proxy = null) =>
6970
Retry(output, async () =>
7071
{
7172
var cws = new ClientWebSocket();
73+
if (proxy != null)
74+
{
75+
cws.Options.Proxy = proxy;
76+
}
77+
7278
if (keepAliveInterval.TotalSeconds > 0)
7379
{
7480
cws.Options.KeepAliveInterval = keepAliveInterval;

0 commit comments

Comments
 (0)