158 lines
6.6 KiB
C#
158 lines
6.6 KiB
C#
extern alias controlapp;
|
|
|
|
using System.Net;
|
|
using System.Net.Http.Json;
|
|
using System.Security.Cryptography;
|
|
using System.Security.Claims;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text.Encodings.Web;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Hosting.Server;
|
|
using Microsoft.AspNetCore.Mvc.Testing;
|
|
using Microsoft.AspNetCore.TestHost;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.DependencyInjection.Extensions;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using Xunit;
|
|
|
|
namespace ServerMonitorManager.Control.Tests;
|
|
|
|
public sealed class ControlApiTests : IAsyncDisposable
|
|
{
|
|
private readonly ControlApiFactory _factory = new();
|
|
|
|
[Fact]
|
|
public async Task HealthEndpointIsAnonymousAndControlEndpointsRequireOperator()
|
|
{
|
|
using var anonymous = _factory.CreateClient();
|
|
Assert.Equal(HttpStatusCode.OK,
|
|
(await anonymous.GetAsync("/healthz", TestContext.Current.CancellationToken)).StatusCode);
|
|
Assert.Equal(HttpStatusCode.Unauthorized,
|
|
(await anonymous.GetAsync(
|
|
"/api/v1/control/agents", TestContext.Current.CancellationToken)).StatusCode);
|
|
|
|
using var authenticated = _factory.CreateClient();
|
|
authenticated.DefaultRequestHeaders.Add("X-Test-Identity", "windows-pc");
|
|
authenticated.DefaultRequestHeaders.Add("X-Test-Role", "Operator");
|
|
Assert.Equal(HttpStatusCode.OK,
|
|
(await authenticated.GetAsync(
|
|
"/api/v1/control/agents", TestContext.Current.CancellationToken)).StatusCode);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task AutomationIdentityCannotUseOperatorSurface()
|
|
{
|
|
using var client = _factory.CreateClient();
|
|
client.DefaultRequestHeaders.Add("X-Test-Identity", "coding-agent");
|
|
client.DefaultRequestHeaders.Add("X-Test-Role", "Automation");
|
|
|
|
Assert.Equal(HttpStatusCode.Forbidden,
|
|
(await client.GetAsync(
|
|
"/api/v1/control/links", TestContext.Current.CancellationToken)).StatusCode);
|
|
Assert.Equal(HttpStatusCode.OK,
|
|
(await client.GetAsync(
|
|
"/api/v1/automation/links", TestContext.Current.CancellationToken)).StatusCode);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task InvalidEnrollmentUsesProblemDetailsResponse()
|
|
{
|
|
using var client = _factory.CreateClient();
|
|
using var content = JsonContent.Create(new
|
|
{
|
|
nodeId = "INVALID NODE",
|
|
token = "short",
|
|
certificateSigningRequestPem = "bad",
|
|
idempotencyKey = "bad"
|
|
});
|
|
using var response = await client.PostAsync(
|
|
"/api/v1/enroll", content, TestContext.Current.CancellationToken);
|
|
|
|
Assert.Equal(HttpStatusCode.BadRequest, response.StatusCode);
|
|
Assert.Equal("application/problem+json", response.Content.Headers.ContentType?.MediaType);
|
|
}
|
|
|
|
public async ValueTask DisposeAsync() => await _factory.DisposeAsync();
|
|
|
|
private sealed class ControlApiFactory : WebApplicationFactory<controlapp::Program>
|
|
{
|
|
private readonly string _directory = Path.Combine(
|
|
Path.GetTempPath(), $"smm-api-tests-{Guid.NewGuid():N}");
|
|
|
|
protected override void ConfigureWebHost(IWebHostBuilder builder)
|
|
{
|
|
Directory.CreateDirectory(_directory);
|
|
var authorityPath = Path.Combine(_directory, "control-ca.pfx");
|
|
if (!File.Exists(authorityPath))
|
|
{
|
|
using var key = ECDsa.Create(ECCurve.NamedCurves.nistP256);
|
|
var request = new CertificateRequest("CN=SMM API Test CA", key, HashAlgorithmName.SHA256);
|
|
request.CertificateExtensions.Add(new X509BasicConstraintsExtension(true, false, 0, true));
|
|
request.CertificateExtensions.Add(new X509KeyUsageExtension(
|
|
X509KeyUsageFlags.KeyCertSign | X509KeyUsageFlags.CrlSign, true));
|
|
using var certificate = request.CreateSelfSigned(
|
|
DateTimeOffset.UtcNow.AddMinutes(-1), DateTimeOffset.UtcNow.AddDays(1));
|
|
File.WriteAllBytes(authorityPath, certificate.Export(X509ContentType.Pfx));
|
|
}
|
|
builder.ConfigureAppConfiguration((_, configuration) =>
|
|
configuration.AddInMemoryCollection(new Dictionary<string, string?>
|
|
{
|
|
["Control:DatabasePath"] = Path.Combine(_directory, "control.db"),
|
|
["Control:CertificateAuthorityPath"] = authorityPath,
|
|
["Control:BackupDirectory"] = Path.Combine(_directory, "backups")
|
|
}));
|
|
builder.ConfigureTestServices(services =>
|
|
{
|
|
services.RemoveAll<IHostedService>();
|
|
services.AddAuthentication(options =>
|
|
{
|
|
options.DefaultAuthenticateScheme = "Test";
|
|
options.DefaultChallengeScheme = "Test";
|
|
})
|
|
.AddScheme<AuthenticationSchemeOptions, TestAuthenticationHandler>("Test", _ => { });
|
|
});
|
|
}
|
|
|
|
public override async ValueTask DisposeAsync()
|
|
{
|
|
await base.DisposeAsync();
|
|
Microsoft.Data.Sqlite.SqliteConnection.ClearAllPools();
|
|
if (Directory.Exists(_directory))
|
|
{
|
|
Directory.Delete(_directory, recursive: true);
|
|
}
|
|
}
|
|
}
|
|
|
|
private sealed class TestAuthenticationHandler(
|
|
IOptionsMonitor<AuthenticationSchemeOptions> options,
|
|
ILoggerFactory logger,
|
|
UrlEncoder encoder)
|
|
: AuthenticationHandler<AuthenticationSchemeOptions>(options, logger, encoder)
|
|
{
|
|
protected override Task<AuthenticateResult> HandleAuthenticateAsync()
|
|
{
|
|
if (!Request.Headers.TryGetValue("X-Test-Identity", out var identity)
|
|
|| !Request.Headers.TryGetValue("X-Test-Role", out var role))
|
|
{
|
|
return Task.FromResult(AuthenticateResult.NoResult());
|
|
}
|
|
var claims = new List<Claim>
|
|
{
|
|
new(ClaimTypes.NameIdentifier, identity.ToString()),
|
|
new(ClaimTypes.Role, role.ToString())
|
|
};
|
|
if (role.ToString() == "Automation")
|
|
{
|
|
claims.Add(new Claim("smm:source_node_id", "ai-agent"));
|
|
}
|
|
var principal = new ClaimsPrincipal(new ClaimsIdentity(claims, Scheme.Name));
|
|
return Task.FromResult(AuthenticateResult.Success(
|
|
new AuthenticationTicket(principal, Scheme.Name)));
|
|
}
|
|
}
|
|
}
|