Added EonaCat.Network.Tester
This commit is contained in:
parent
b85fa5a6b9
commit
f79198e5aa
|
@ -0,0 +1,14 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\EonaCat.Network\EonaCat.Network.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -0,0 +1,188 @@
|
||||||
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
||||||
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
||||||
|
|
||||||
|
using System.Net.Security;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Security.Authentication;
|
||||||
|
using System.Security.Cryptography;
|
||||||
|
using System.Security.Cryptography.X509Certificates;
|
||||||
|
using EonaCat.WebSockets;
|
||||||
|
|
||||||
|
internal class Program
|
||||||
|
{
|
||||||
|
private static AsyncWebSocketClient _client;
|
||||||
|
private static AsyncWebSocketServer _server;
|
||||||
|
|
||||||
|
private static async Task Main(string[] args)
|
||||||
|
{
|
||||||
|
// Menu loop
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
Console.WriteLine("0. Create a HTTPS certificate");
|
||||||
|
Console.WriteLine("1. Start the server and client");
|
||||||
|
Console.WriteLine("2. Send Message");
|
||||||
|
Console.WriteLine("3. Quit");
|
||||||
|
|
||||||
|
var choice = Console.ReadLine();
|
||||||
|
|
||||||
|
switch (choice)
|
||||||
|
{
|
||||||
|
case "0":
|
||||||
|
CreateCertificate();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "1":
|
||||||
|
await CreateServerAndClientAsync().ConfigureAwait(false);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "2":
|
||||||
|
if (_client != null)
|
||||||
|
{
|
||||||
|
Console.Write("Enter message: ");
|
||||||
|
var message = Console.ReadLine();
|
||||||
|
await _client.SendTextAsync(message).ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "3":
|
||||||
|
_client?.CloseAsync().ConfigureAwait(false);
|
||||||
|
return;
|
||||||
|
|
||||||
|
default:
|
||||||
|
Console.WriteLine("Invalid choice. Try again.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task CreateServerAndClientAsync()
|
||||||
|
{
|
||||||
|
var serverUri = "wss://localhost:8443";
|
||||||
|
var clientUri = "wss://localhost:8443/Welcome";
|
||||||
|
var certificatePath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "localhost.pfx");
|
||||||
|
var certificatePassword = "";
|
||||||
|
var requiredPassword = "";
|
||||||
|
|
||||||
|
// Start the server
|
||||||
|
StartServer(serverUri, certificatePath, certificatePassword, requiredPassword);
|
||||||
|
|
||||||
|
// Start the client in the main thread
|
||||||
|
await StartClientAsync(clientUri, certificatePath, certificatePassword).ConfigureAwait(false);
|
||||||
|
Console.WriteLine("Connected to the server.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static async Task StartClientAsync(string clientUri, string certificatePath, string certificatePassword)
|
||||||
|
{
|
||||||
|
var configuration = new AsyncWebSocketClientConfiguration();
|
||||||
|
configuration.SslTargetHost = "localhost";
|
||||||
|
configuration.SslEncryptionPolicy = EncryptionPolicy.RequireEncryption;
|
||||||
|
configuration.SslCheckCertificateRevocation = false;
|
||||||
|
configuration.SslPolicyErrorsBypassed = true;
|
||||||
|
configuration.SslEnabledProtocols = SslProtocols.Tls12 | SslProtocols.Tls13;
|
||||||
|
configuration.SslClientCertificates = new X509CertificateCollection { new X509Certificate2(certificatePath, certificatePassword) };
|
||||||
|
|
||||||
|
_client = new AsyncWebSocketClient(new Uri(clientUri), OnServerTextReceived, OnServerBinaryReceived, OnServerConnected, OnServerDisconnected, OnServerFragmentationStreamOpened, OnServerFragmentationStreamOpened, OnServerFragmentationStreamClosed, configuration);
|
||||||
|
await _client.ConnectAsync().ConfigureAwait(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerFragmentationStreamClosed(AsyncWebSocketClient arg1, byte[] arg2, int arg3, int arg4)
|
||||||
|
{
|
||||||
|
// Do nothing
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerFragmentationStreamOpened(AsyncWebSocketClient arg1, byte[] arg2, int arg3, int arg4)
|
||||||
|
{
|
||||||
|
// Do nothing
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerDisconnected(AsyncWebSocketClient arg)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Disconnected from server.");
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerConnected(AsyncWebSocketClient arg)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Connected to server.");
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerBinaryReceived(AsyncWebSocketClient arg1, byte[] bytes, int arg3, int arg4)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Received binary {bytes} {arg3} {arg4}");
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Task OnServerTextReceived(AsyncWebSocketClient arg1, string data)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Received message from server: {data}");
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CreateCertificate()
|
||||||
|
{
|
||||||
|
Console.Write("Enter hostname: (default: localhost) ");
|
||||||
|
var hostname = Console.ReadLine();
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(hostname))
|
||||||
|
{
|
||||||
|
hostname = "localhost";
|
||||||
|
}
|
||||||
|
|
||||||
|
var days = 30;
|
||||||
|
Console.Write("Enter days until expiration: (default: 30 days) ");
|
||||||
|
if (int.TryParse(Console.ReadLine(), out var givenDays))
|
||||||
|
{
|
||||||
|
days = givenDays;
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.Write("Enter password, enter to skip: ");
|
||||||
|
var password = Console.ReadLine();
|
||||||
|
|
||||||
|
var rsa = RSA.Create();
|
||||||
|
|
||||||
|
// Create a certificate request with the specified subject and key pair
|
||||||
|
var request = new CertificateRequest(
|
||||||
|
$"CN={hostname}",
|
||||||
|
rsa,
|
||||||
|
HashAlgorithmName.SHA256,
|
||||||
|
RSASignaturePadding.Pkcs1);
|
||||||
|
|
||||||
|
// Create a self-signed certificate from the certificate request
|
||||||
|
var certificate = request.CreateSelfSigned(DateTimeOffset.UtcNow, DateTimeOffset.UtcNow.AddDays(days));
|
||||||
|
|
||||||
|
// Export the certificate to a file with password
|
||||||
|
var certBytes = string.IsNullOrEmpty(password)
|
||||||
|
? certificate.Export(X509ContentType.Pfx)
|
||||||
|
: certificate.Export(X509ContentType.Pfx, password);
|
||||||
|
File.WriteAllBytes($"{hostname}.pfx", certBytes);
|
||||||
|
|
||||||
|
Console.WriteLine(
|
||||||
|
$"Certificate for {hostname} created successfully and will expire on {certificate.NotAfter}.");
|
||||||
|
Console.WriteLine($"Path: {Path.Combine(AppContext.BaseDirectory, hostname)}.pfx");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void StartServer(string serverUri, string certificatePath, string certificatePassword,
|
||||||
|
string requiredPassword)
|
||||||
|
{
|
||||||
|
// split the server uri to get the port
|
||||||
|
var uri = new Uri(serverUri);
|
||||||
|
var port = uri.Port;
|
||||||
|
|
||||||
|
var test = new AsyncWebSocketServerModuleCatalog();
|
||||||
|
test.RegisterModule(new TestModule());
|
||||||
|
var configuration = new AsyncWebSocketServerConfiguration();
|
||||||
|
configuration.SslEnabled = true;
|
||||||
|
configuration.SslEncryptionPolicy = EncryptionPolicy.RequireEncryption;
|
||||||
|
configuration.SslCheckCertificateRevocation = false;
|
||||||
|
configuration.SslPolicyErrorsBypassed = true;
|
||||||
|
configuration.SslClientCertificateRequired = true;
|
||||||
|
configuration.SslEnabledProtocols = SslProtocols.Tls12 | SslProtocols.Tls13;
|
||||||
|
configuration.SslServerCertificate = new X509Certificate2(certificatePath, certificatePassword);
|
||||||
|
_server = new AsyncWebSocketServer(port, test, configuration);
|
||||||
|
_server.Listen();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,16 @@
|
||||||
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
||||||
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
||||||
|
|
||||||
|
using EonaCat.WebSockets;
|
||||||
|
|
||||||
|
internal class TestModule : AsyncWebSocketServerModule
|
||||||
|
{
|
||||||
|
public TestModule()
|
||||||
|
: base("/Welcome")
|
||||||
|
{
|
||||||
|
}
|
||||||
|
public override async Task OnSessionTextReceived(AsyncWebSocketSession session, string text)
|
||||||
|
{
|
||||||
|
await session.SendTextAsync(text);
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,9 +8,14 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="EonaCat.Json" Version="1.1.4" />
|
|
||||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="EonaCat.Json">
|
||||||
|
<HintPath>..\..\EonaCat.Json\EonaCat.Json\bin\Release\netstandard2.1\EonaCat.Json.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
Loading…
Reference in New Issue