Skip to content

Commit cd0543c

Browse files
authored
Merge pull request #18 from Keyfactor/certauth-kvsecretversion-57240
Azure Application Gateway Orchestrator extension v3.0.0
2 parents ea02e77 + 0f00a9b commit cd0543c

30 files changed

+1775
-817
lines changed
Binary file not shown.
Binary file not shown.
+5-5
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424

2525
namespace AzureAppGatewayOrchestrator.Tests;
2626

27-
public class AzureAppGatewayOrchestrator_AzureAppGw
27+
public class AzureAppGw
2828
{
2929
ILogger _logger { get; set;}
3030

31-
public AzureAppGatewayOrchestrator_AzureAppGw()
31+
public AzureAppGw()
3232
{
3333
ConfigureLogging();
3434

35-
_logger = LogHandler.GetClassLogger<AzureAppGatewayOrchestrator_AzureAppGw>();
35+
_logger = LogHandler.GetClassLogger<AzureAppGw>();
3636
}
3737

3838
[IntegrationTestingFact]
@@ -544,7 +544,7 @@ public void AzureAppGw_Management_IntegrationTest_ReturnSuccess()
544544
string certName = "GatewayTest" + Guid.NewGuid().ToString()[..6];
545545
string password = "password";
546546

547-
X509Certificate2 ssCert = AzureAppGatewayOrchestrator_Client.GetSelfSignedCert(testHostname);
547+
X509Certificate2 ssCert = Client.GetSelfSignedCert(testHostname);
548548

549549
string b64PfxSslCert = Convert.ToBase64String(ssCert.Export(X509ContentType.Pfx, password));
550550

@@ -577,7 +577,7 @@ public void AzureAppGw_Management_IntegrationTest_ReturnSuccess()
577577

578578
// Arrange
579579

580-
ssCert = AzureAppGatewayOrchestrator_Client.GetSelfSignedCert(testHostname);
580+
ssCert = Client.GetSelfSignedCert(testHostname);
581581

582582
b64PfxSslCert = Convert.ToBase64String(ssCert.Export(X509ContentType.Pfx, password));
583583

AzureAppGatewayOrchestrator.Tests/AzureAppGatewayOrchestrator.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

AzureAppGatewayOrchestrator.Tests/AzureAppGatewayOrchestrator_Client.cs

-283
This file was deleted.

0 commit comments

Comments
 (0)