Refactor code structure and optimize performance across multiple modules

This commit is contained in:
StellaOps Bot
2025-12-26 20:03:22 +02:00
parent c786faae84
commit b4fc66feb6
3353 changed files with 88254 additions and 1590657 deletions

View File

@@ -11,11 +11,14 @@ using StellaOps.Cryptography.Plugin.SmRemote;
using StellaOps.Cryptography;
using Xunit;
using StellaOps.TestKit;
namespace StellaOps.Cryptography.Plugin.SmRemote.Tests;
public class SmRemoteHttpProviderTests
{
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public async Task Service_EndToEnd_SignsAndVerifies()
{
Environment.SetEnvironmentVariable("SM_SOFT_ALLOWED", "1");
@@ -39,7 +42,8 @@ public class SmRemoteHttpProviderTests
verify!.Valid.Should().BeTrue();
}
[Fact]
[Trait("Category", TestCategories.Unit)]
[Fact]
public async Task SignsAndVerifiesViaHttp()
{
var handler = new StubHandler();

View File

@@ -7,6 +7,7 @@
<ItemGroup>
<ProjectReference Include="..\StellaOps.Cryptography.Plugin.SmRemote\StellaOps.Cryptography.Plugin.SmRemote.csproj" />
<ProjectReference Include="..\StellaOps.Cryptography\StellaOps.Cryptography.csproj" />
<ProjectReference Include="../StellaOps.TestKit/StellaOps.TestKit.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />