Remove hacky WebSocket connection factory. (#171)
Replace it with the new (officially-supported) ClientWebSocket SSL functionality in .NET Core 2.1. kubernetes-client/csharp#130
This commit is contained in:
committed by
Brendan Burns
parent
6e0aec994e
commit
a358cb9afd
@@ -3,7 +3,7 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Net.Http.Headers;
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
@@ -12,21 +12,21 @@ using k8s.Tests.Mock;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.Server.Kestrel.Https;
|
||||
using Microsoft.Rest;
|
||||
using Org.BouncyCastle.Crypto.Parameters;
|
||||
using Org.BouncyCastle.Pkcs;
|
||||
using Org.BouncyCastle.Security;
|
||||
using Org.BouncyCastle.Crypto.Parameters;
|
||||
using Org.BouncyCastle.Pkcs;
|
||||
using Org.BouncyCastle.Security;
|
||||
using Xunit;
|
||||
using Xunit.Abstractions;
|
||||
|
||||
namespace k8s.Tests
|
||||
{
|
||||
public class AuthTests
|
||||
{
|
||||
private readonly ITestOutputHelper testOutput;
|
||||
|
||||
public AuthTests(ITestOutputHelper testOutput)
|
||||
{
|
||||
this.testOutput = testOutput;
|
||||
{
|
||||
private readonly ITestOutputHelper testOutput;
|
||||
|
||||
public AuthTests(ITestOutputHelper testOutput)
|
||||
{
|
||||
this.testOutput = testOutput;
|
||||
}
|
||||
|
||||
private static HttpOperationResponse<V1PodList> ExecuteListPods(IKubernetes client)
|
||||
@@ -164,8 +164,10 @@ namespace k8s.Tests
|
||||
Assert.Equal(HttpStatusCode.Unauthorized, listTask.Response.StatusCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#if NETCOREAPP2_1 // The functionality under test, here, is dependent on managed HTTP / WebSocket functionality in .NET Core 2.1 or newer.
|
||||
|
||||
[Fact]
|
||||
public void Cert()
|
||||
{
|
||||
@@ -173,12 +175,12 @@ namespace k8s.Tests
|
||||
|
||||
var clientCertificateKeyData = File.ReadAllText("assets/client-key-data.txt");
|
||||
var clientCertificateData = File.ReadAllText("assets/client-certificate-data.txt");
|
||||
|
||||
X509Certificate2 serverCertificate = null;
|
||||
using (MemoryStream serverCertificateStream = new MemoryStream(Convert.FromBase64String(serverCertificateData)))
|
||||
{
|
||||
serverCertificate = OpenCertificateStore(serverCertificateStream);
|
||||
}
|
||||
|
||||
X509Certificate2 serverCertificate = null;
|
||||
using (MemoryStream serverCertificateStream = new MemoryStream(Convert.FromBase64String(serverCertificateData)))
|
||||
{
|
||||
serverCertificate = OpenCertificateStore(serverCertificateStream);
|
||||
}
|
||||
|
||||
var clientCertificate = new X509Certificate2(Convert.FromBase64String(clientCertificateData), "");
|
||||
|
||||
@@ -259,7 +261,9 @@ namespace k8s.Tests
|
||||
Assert.False(clientCertificateValidationCalled);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif // NETCOREAPP2_1
|
||||
|
||||
[Fact]
|
||||
public void Token()
|
||||
@@ -330,27 +334,27 @@ namespace k8s.Tests
|
||||
Assert.Equal(HttpStatusCode.Unauthorized, listTask.Response.StatusCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private X509Certificate2 OpenCertificateStore(Stream stream)
|
||||
{
|
||||
Pkcs12Store store = new Pkcs12Store();
|
||||
store.Load(stream, new char[] { });
|
||||
|
||||
var keyAlias = store.Aliases.Cast<string>().SingleOrDefault(a => store.IsKeyEntry(a));
|
||||
|
||||
var key = (RsaPrivateCrtKeyParameters)store.GetKey(keyAlias).Key;
|
||||
var bouncyCertificate = store.GetCertificate(keyAlias).Certificate;
|
||||
|
||||
var certificate = new X509Certificate2(DotNetUtilities.ToX509Certificate(bouncyCertificate));
|
||||
var parameters = DotNetUtilities.ToRSAParameters(key);
|
||||
|
||||
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
|
||||
rsa.ImportParameters(parameters);
|
||||
|
||||
certificate = RSACertificateExtensions.CopyWithPrivateKey(certificate, rsa);
|
||||
|
||||
return certificate;
|
||||
}
|
||||
|
||||
private X509Certificate2 OpenCertificateStore(Stream stream)
|
||||
{
|
||||
Pkcs12Store store = new Pkcs12Store();
|
||||
store.Load(stream, new char[] { });
|
||||
|
||||
var keyAlias = store.Aliases.Cast<string>().SingleOrDefault(a => store.IsKeyEntry(a));
|
||||
|
||||
var key = (RsaPrivateCrtKeyParameters)store.GetKey(keyAlias).Key;
|
||||
var bouncyCertificate = store.GetCertificate(keyAlias).Certificate;
|
||||
|
||||
var certificate = new X509Certificate2(DotNetUtilities.ToX509Certificate(bouncyCertificate));
|
||||
var parameters = DotNetUtilities.ToRSAParameters(key);
|
||||
|
||||
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
|
||||
rsa.ImportParameters(parameters);
|
||||
|
||||
certificate = RSACertificateExtensions.CopyWithPrivateKey(certificate, rsa);
|
||||
|
||||
return certificate;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user