Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
fc08075e15 | |||
702631b2d1 | |||
1ee59b6417 | |||
a4a80afe73 | |||
aa3482f033 | |||
c611622a63 | |||
640b568e28 | |||
87815d5bf6 | |||
fdfd1872f4 | |||
f07832d5f2 |
17
README.md
17
README.md
@ -1,5 +1,18 @@
|
|||||||
# WebSocketTool
|
# WebSocketTool
|
||||||
|
|
||||||
#### 介绍
|
## 介绍
|
||||||
|
|
||||||
WebSocket测试工具
|
WebSocket测试工具, 后续逐步增加功能。
|
||||||
|
|
||||||
|
功能列表:
|
||||||
|
|
||||||
|
- [x] ws/wss链接发送消息
|
||||||
|
- [x] 定时 ping
|
||||||
|
|
||||||
|
|
||||||
|
## 版本
|
||||||
|
|
||||||
|
### v1.0.4
|
||||||
|
|
||||||
|
更新日志:
|
||||||
|
- 优化部分crash问题
|
@ -1,10 +1,12 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Net.Security;
|
using System.Net.Security;
|
||||||
|
using System.Security.Cryptography.X509Certificates;
|
||||||
using System.Timers;
|
using System.Timers;
|
||||||
using log4net;
|
using log4net;
|
||||||
using WebSocketSharp;
|
using WebSocketSharp;
|
||||||
using WebSocketTool.Base;
|
using WebSocketTool.Base;
|
||||||
using WebSocketTool.Util;
|
using WebSocketTool.Util;
|
||||||
|
using WebSocketTool.View.Dialog;
|
||||||
using LogManager = log4net.LogManager;
|
using LogManager = log4net.LogManager;
|
||||||
|
|
||||||
namespace WebSocketTool.Client
|
namespace WebSocketTool.Client
|
||||||
@ -20,6 +22,7 @@ namespace WebSocketTool.Client
|
|||||||
this.view = view;
|
this.view = view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#region data bingding
|
||||||
private string mWsUrl;
|
private string mWsUrl;
|
||||||
public string WsUrl
|
public string WsUrl
|
||||||
{
|
{
|
||||||
@ -42,7 +45,7 @@ namespace WebSocketTool.Client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private long mPingTime = 1000;
|
private long mPingTime = 2000;
|
||||||
public long PingTime
|
public long PingTime
|
||||||
{
|
{
|
||||||
get => mPingTime;
|
get => mPingTime;
|
||||||
@ -101,42 +104,6 @@ namespace WebSocketTool.Client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
public void Connect()
|
|
||||||
{
|
|
||||||
if (string.IsNullOrEmpty(WsUrl))
|
|
||||||
{
|
|
||||||
view.AppendInfo($"Hint {TimeUtil.GetCurrentDateTime()} \n 请输入正确的WebSocket地址");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mClient == null)
|
|
||||||
{
|
|
||||||
InitSocketClient();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mClient.IsAlive())
|
|
||||||
{
|
|
||||||
view.AppendInfo($"Hint {TimeUtil.GetCurrentDateTime()} \n WebSocket已连接,请先断开上次连接");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
view.AppendInfo($"Hint {TimeUtil.GetCurrentDateTime()} \n Start Connect Socket");
|
|
||||||
if (IsProxyChecked)
|
|
||||||
{
|
|
||||||
view.AppendInfo($"use proxy: {ProxyAddress}");
|
|
||||||
mClient.SetHttpProxy(ProxyAddress, ProxyUserName, ProxyPassword);
|
|
||||||
}
|
|
||||||
mClient.ConnectAsync();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Send()
|
|
||||||
{
|
|
||||||
view.AppendInfo($"You {TimeUtil.GetCurrentDateTime()} \n {SendContent}");
|
|
||||||
mClient.Send(SendContent);
|
|
||||||
}
|
|
||||||
|
|
||||||
private bool mIsAlive = false;
|
private bool mIsAlive = false;
|
||||||
|
|
||||||
private bool mIsConnectEnable = true;
|
private bool mIsConnectEnable = true;
|
||||||
@ -182,11 +149,83 @@ namespace WebSocketTool.Client
|
|||||||
RaisePropertyChanged(nameof(IsPingEnable));
|
RaisePropertyChanged(nameof(IsPingEnable));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private string FormatInfo(string info, int type = 0)
|
||||||
|
{
|
||||||
|
var tag = "【Hint】";
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
tag = "【Client】==>【Server】";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
tag = "【Client】<==【Server】";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return $"{tag} {TimeUtil.GetCurrentDateTime()} \n {info}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Connect()
|
||||||
|
{
|
||||||
|
if (string.IsNullOrEmpty(WsUrl) || (!WsUrl.StartsWith("wss://") && !WsUrl.StartsWith("ws://")))
|
||||||
|
{
|
||||||
|
view.AppendInfo(FormatInfo("请输入正确的WebSocket地址"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mClient == null)
|
||||||
|
{
|
||||||
|
InitSocketClient();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsProxyChecked)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(ProxyAddress))
|
||||||
|
{
|
||||||
|
view.AppendInfo(FormatInfo($"设置代理地址:{ProxyAddress}"));
|
||||||
|
}
|
||||||
|
mClient?.SetHttpProxy(ProxyAddress, ProxyUserName, ProxyPassword);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mClient != null && mClient.IsAlive())
|
||||||
|
{
|
||||||
|
view.AppendInfo(FormatInfo("WebSocket已连接,请先断开"));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (IsProxyChecked)
|
||||||
|
{
|
||||||
|
if (!string.IsNullOrEmpty(ProxyAddress))
|
||||||
|
{
|
||||||
|
view.AppendInfo(FormatInfo($"使用代理服务器: {ProxyAddress}"));
|
||||||
|
mClient?.SetHttpProxy(ProxyAddress, ProxyUserName, ProxyPassword);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
view.ShowToast("代理地址为空,请输入代理地址!");
|
||||||
|
view.AppendInfo(FormatInfo("代理地址为空,请输入正确的代理地址!"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
view.AppendInfo(FormatInfo($"开始连接Socket:{mWsUrl}"));
|
||||||
|
mClient.ConnectAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Send()
|
||||||
|
{
|
||||||
|
view.AppendInfo(FormatInfo(SendContent, 1));
|
||||||
|
mClient.Send(SendContent);
|
||||||
|
}
|
||||||
|
|
||||||
public void Close()
|
public void Close()
|
||||||
{
|
{
|
||||||
view.AppendInfo($"Hint {TimeUtil.GetCurrentDateTime()} \n Start Close Socket");
|
view.AppendInfo(FormatInfo("关闭Socket"));
|
||||||
mClient?.CloseAsync();
|
if (mClient != null)
|
||||||
|
{
|
||||||
|
mClient.Close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Timer pingTimer;
|
private Timer pingTimer;
|
||||||
@ -194,13 +233,13 @@ namespace WebSocketTool.Client
|
|||||||
{
|
{
|
||||||
if (!mIsAlive)
|
if (!mIsAlive)
|
||||||
{
|
{
|
||||||
view.AppendInfo("start ping failure: ws is not connected");
|
view.AppendInfo(FormatInfo("启动 ping 失败: ws 未链接成功!"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PingTime <= 0)
|
if (PingTime < 500)
|
||||||
{
|
{
|
||||||
view.AppendInfo("ping time interval must > 0");
|
view.AppendInfo(FormatInfo("ping间隔时间必须大于500ms"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -211,18 +250,18 @@ namespace WebSocketTool.Client
|
|||||||
Ping();
|
Ping();
|
||||||
};
|
};
|
||||||
pingTimer.Start();
|
pingTimer.Start();
|
||||||
view.AppendInfo($"You {TimeUtil.GetCurrentDateTime()} \n StartPing, TimeSpan:{PingTime}");
|
view.AppendInfo(FormatInfo($"启动ping,时间间隔:{PingTime}"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Ping(string msg = null)
|
private void Ping(string msg = null)
|
||||||
{
|
{
|
||||||
mClient.Ping(msg);
|
mClient.Ping(msg);
|
||||||
App.RunOnUIThread(() => view.AppendInfo($"You {TimeUtil.GetCurrentDateTime()} \n Send Ping:{msg}"));
|
App.RunOnUIThread(() => view.AppendInfo(FormatInfo("发送ping", 1)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void StopPing()
|
public void StopPing()
|
||||||
{
|
{
|
||||||
view.AppendInfo($"You {TimeUtil.GetCurrentDateTime()} \n StopPing");
|
App.RunOnUIThread(() => view.AppendInfo(FormatInfo("停止ping")));
|
||||||
if (pingTimer != null)
|
if (pingTimer != null)
|
||||||
{
|
{
|
||||||
pingTimer.Stop();
|
pingTimer.Stop();
|
||||||
@ -232,25 +271,12 @@ namespace WebSocketTool.Client
|
|||||||
|
|
||||||
private void InitSocketClient()
|
private void InitSocketClient()
|
||||||
{
|
{
|
||||||
view.AppendInfo($"Hint {TimeUtil.GetCurrentDateTime()} \n InitSocketClient");
|
view.AppendInfo(FormatInfo("初始化Socket客户端"));
|
||||||
mClient = new SocketClient(WsUrl);
|
mClient = new SocketClient(WsUrl);
|
||||||
mClient.SetServerCertificateValidationCallback((sender, certificate, chain, errors) =>
|
if (WsUrl.StartsWith("wss:"))
|
||||||
{
|
{
|
||||||
App.RunOnUIThread(() => { view.AppendInfo($"ServerCertificateError:{errors}"); });
|
mClient.AddServerCertificateValidationCallback(CertificateValidationCallback);
|
||||||
Log.Info($"error:{errors}");
|
|
||||||
Log.Info($"Issuer: {certificate.Issuer},Subject:{certificate.Subject}");
|
|
||||||
Log.Info("ChainStatus:");
|
|
||||||
foreach (var status in chain.ChainStatus)
|
|
||||||
{
|
|
||||||
Log.Info($"{status.StatusInformation}: {status}");
|
|
||||||
}
|
}
|
||||||
Log.Info("ChainElements:");
|
|
||||||
foreach (var element in chain.ChainElements)
|
|
||||||
{
|
|
||||||
Log.Info($"element: {element.Certificate},{element.Information}");
|
|
||||||
}
|
|
||||||
return errors == SslPolicyErrors.None;
|
|
||||||
});
|
|
||||||
mClient.OpenEvent += ClientOnOpenEvent;
|
mClient.OpenEvent += ClientOnOpenEvent;
|
||||||
mClient.CloseEvent += ClientOnCloseEvent;
|
mClient.CloseEvent += ClientOnCloseEvent;
|
||||||
mClient.ErrorEvent += ClientOnErrorEvent;
|
mClient.ErrorEvent += ClientOnErrorEvent;
|
||||||
@ -262,19 +288,52 @@ namespace WebSocketTool.Client
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void UninitSocketClient()
|
||||||
|
{
|
||||||
|
if (mClient != null)
|
||||||
|
{
|
||||||
|
if (WsUrl.StartsWith("wss:"))
|
||||||
|
{
|
||||||
|
mClient.RemoveServerCertificateValidationCallback(CertificateValidationCallback);
|
||||||
|
}
|
||||||
|
mClient.OpenEvent -= ClientOnOpenEvent;
|
||||||
|
mClient.CloseEvent -= ClientOnCloseEvent;
|
||||||
|
mClient.ErrorEvent -= ClientOnErrorEvent;
|
||||||
|
mClient.MessageEvent -= ClientOnMessageEvent;
|
||||||
|
mClient = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool CertificateValidationCallback(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
|
||||||
|
{
|
||||||
|
App.RunOnUIThread(() => { view.AppendInfo(FormatInfo($"ServerCertificateError:{errors}", 2)); });
|
||||||
|
Log.Info($"error:{errors}");
|
||||||
|
Log.Info($"Issuer: {certificate.Issuer},Subject:{certificate.Subject}");
|
||||||
|
Log.Info("ChainStatus:");
|
||||||
|
foreach (var status in chain.ChainStatus)
|
||||||
|
{
|
||||||
|
Log.Info($"{status.StatusInformation}: {status}");
|
||||||
|
}
|
||||||
|
|
||||||
|
Log.Info("ChainElements:");
|
||||||
|
foreach (var element in chain.ChainElements)
|
||||||
|
{
|
||||||
|
Log.Info($"element: {element.Certificate},{element.Information}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return errors == SslPolicyErrors.None;
|
||||||
|
}
|
||||||
|
|
||||||
private void ClientOnMessageEvent(object sender, MessageEventArgs e)
|
private void ClientOnMessageEvent(object sender, MessageEventArgs e)
|
||||||
{
|
{
|
||||||
App.RunOnUIThread(() =>
|
App.RunOnUIThread(() => view.AppendInfo(FormatInfo(e.Data, 2)));
|
||||||
{
|
|
||||||
view.AppendInfo($"Server {TimeUtil.GetCurrentDateTime()} \n {e.Data}");
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ClientOnErrorEvent(object sender, ErrorEventArgs e)
|
private void ClientOnErrorEvent(object sender, ErrorEventArgs e)
|
||||||
{
|
{
|
||||||
App.RunOnUIThread(() =>
|
App.RunOnUIThread(() =>
|
||||||
{
|
{
|
||||||
view.AppendInfo($"Server {TimeUtil.GetCurrentDateTime()} \n Socket Error: {e.Message}");
|
view.AppendInfo(FormatInfo($"Socket Error: {e.Message}", 2));
|
||||||
SetState(false);
|
SetState(false);
|
||||||
});
|
});
|
||||||
StopPing();
|
StopPing();
|
||||||
@ -305,8 +364,9 @@ namespace WebSocketTool.Client
|
|||||||
{
|
{
|
||||||
App.RunOnUIThread(() =>
|
App.RunOnUIThread(() =>
|
||||||
{
|
{
|
||||||
view.AppendInfo($"Server {TimeUtil.GetCurrentDateTime()} \n Socket Closed:{e.Code}:{e.Reason}");
|
view.AppendInfo(FormatInfo($"Socket Closed:{e.Code}:{e.Reason}", 2));
|
||||||
SetState(false);
|
SetState(false);
|
||||||
|
UninitSocketClient();
|
||||||
});
|
});
|
||||||
StopPing();
|
StopPing();
|
||||||
}
|
}
|
||||||
@ -315,7 +375,7 @@ namespace WebSocketTool.Client
|
|||||||
{
|
{
|
||||||
App.RunOnUIThread(() =>
|
App.RunOnUIThread(() =>
|
||||||
{
|
{
|
||||||
view.AppendInfo($"Server {TimeUtil.GetCurrentDateTime()} \n Socket Connected");
|
view.AppendInfo(FormatInfo("Socket Connected", 2));
|
||||||
SetState(true);
|
SetState(true);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -75,11 +75,18 @@ namespace WebSocketTool.Client
|
|||||||
{
|
{
|
||||||
viewModel.Close();
|
viewModel.Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Window GetWindow()
|
||||||
|
{
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public interface IClientView
|
public interface IClientView
|
||||||
{
|
{
|
||||||
void ShowToast(string msg);
|
void ShowToast(string msg);
|
||||||
void AppendInfo(string info);
|
void AppendInfo(string info);
|
||||||
|
|
||||||
|
Window GetWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,10 +16,12 @@ namespace WebSocketTool.Client
|
|||||||
public event EventHandler<ErrorEventArgs> ErrorEvent;
|
public event EventHandler<ErrorEventArgs> ErrorEvent;
|
||||||
public event EventHandler<EventArgs> OpenEvent;
|
public event EventHandler<EventArgs> OpenEvent;
|
||||||
public event EventHandler<CloseEventArgs> CloseEvent;
|
public event EventHandler<CloseEventArgs> CloseEvent;
|
||||||
|
public string Url { get; private set; }
|
||||||
|
|
||||||
public SocketClient(string url)
|
public SocketClient(string url)
|
||||||
{
|
{
|
||||||
Log.Info($"create socket:{url}");
|
Log.Info($"create socket:{url}");
|
||||||
|
Url = url;
|
||||||
mSocket = new WebSocket(url);
|
mSocket = new WebSocket(url);
|
||||||
if (url.StartsWith("wss"))
|
if (url.StartsWith("wss"))
|
||||||
{
|
{
|
||||||
@ -33,13 +35,20 @@ namespace WebSocketTool.Client
|
|||||||
|
|
||||||
#region Config
|
#region Config
|
||||||
|
|
||||||
public SocketClient SetServerCertificateValidationCallback(RemoteCertificateValidationCallback callback)
|
public SocketClient AddServerCertificateValidationCallback(RemoteCertificateValidationCallback callback)
|
||||||
{
|
{
|
||||||
Log.Info("SetServerCertificateValidationCallback");
|
Log.Info("SetServerCertificateValidationCallback");
|
||||||
mSocket.SslConfiguration.ServerCertificateValidationCallback += callback;
|
mSocket.SslConfiguration.ServerCertificateValidationCallback += callback;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public SocketClient RemoveServerCertificateValidationCallback(RemoteCertificateValidationCallback callback)
|
||||||
|
{
|
||||||
|
Log.Info("RemoveServerCertificateValidationCallback");
|
||||||
|
mSocket.SslConfiguration.ServerCertificateValidationCallback -= callback;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public SocketClient SetEnableSslProtocols(SslProtocols protocols)
|
public SocketClient SetEnableSslProtocols(SslProtocols protocols)
|
||||||
{
|
{
|
||||||
Log.Info($"SetEnableSslProtocols:{protocols}");
|
Log.Info($"SetEnableSslProtocols:{protocols}");
|
||||||
|
@ -27,6 +27,8 @@ namespace WebSocketTool
|
|||||||
public MainWindow()
|
public MainWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
ClientBtn_OnClick(null, null);
|
||||||
|
Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ClientBtn_OnClick(object sender, RoutedEventArgs e)
|
private void ClientBtn_OnClick(object sender, RoutedEventArgs e)
|
||||||
|
@ -12,7 +12,7 @@ using System.Windows;
|
|||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("DevWiki")]
|
[assembly: AssemblyCompany("DevWiki")]
|
||||||
[assembly: AssemblyProduct("WebSocketTool")]
|
[assembly: AssemblyProduct("WebSocketTool")]
|
||||||
[assembly: AssemblyCopyright("Copyright DevWiki © 2022")]
|
[assembly: AssemblyCopyright("Copyright DevWiki © 2023")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
@ -51,5 +51,5 @@ using System.Windows;
|
|||||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||||
//通过使用 "*",如下所示:
|
//通过使用 "*",如下所示:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.1")]
|
[assembly: AssemblyVersion("1.0.3")]
|
||||||
[assembly: AssemblyFileVersion("1.0.1")]
|
[assembly: AssemblyFileVersion("1.0.3")]
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
set version=1.0.0
|
set version=1.0.4
|
||||||
|
|
||||||
if not "%~1"=="" (
|
if not "%~1"=="" (
|
||||||
set version=%1
|
set version=%1
|
||||||
|
BIN
libs/MaterialDesignColors.dll
Normal file
BIN
libs/MaterialDesignColors.dll
Normal file
Binary file not shown.
BIN
libs/MaterialDesignThemes.Wpf.dll
Normal file
BIN
libs/MaterialDesignThemes.Wpf.dll
Normal file
Binary file not shown.
BIN
libs/Microsoft.Xaml.Behaviors.dll
Normal file
BIN
libs/Microsoft.Xaml.Behaviors.dll
Normal file
Binary file not shown.
@ -9,7 +9,7 @@
|
|||||||
<OutputType>Library</OutputType>
|
<OutputType>Library</OutputType>
|
||||||
<RootNamespace>WebSocketSharp</RootNamespace>
|
<RootNamespace>WebSocketSharp</RootNamespace>
|
||||||
<AssemblyName>websocket-sharp</AssemblyName>
|
<AssemblyName>websocket-sharp</AssemblyName>
|
||||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||||
<SignAssembly>true</SignAssembly>
|
<SignAssembly>true</SignAssembly>
|
||||||
<AssemblyOriginatorKeyFile>websocket-sharp.snk</AssemblyOriginatorKeyFile>
|
<AssemblyOriginatorKeyFile>websocket-sharp.snk</AssemblyOriginatorKeyFile>
|
||||||
<FileUpgradeFlags>
|
<FileUpgradeFlags>
|
||||||
|
Loading…
Reference in New Issue
Block a user