## Summary - Extract `IMicCheckDbContext` and mock DB access with Moq instead of the EF InMemory provider, per CLAUDE.md testing guidelines. - Rewrite HTTP-pipeline tests to exercise controllers/auth handlers directly instead of `WebApplicationFactory`. - Remove tuple return types across the API in favor of named records (`PagedResult<T>`, `ProfileUpdateResult`, `ApiKeyCreationResult`). ## Test plan - [x] `dotnet build` (full solution) - [x] `dotnet test tests/api/MicCheck.Api.Tests.Unit` — 187/187 pass - [x] `dotnet test tests/api/MicCheck.Api.Tests.Integration` — 8/8 pass (live API + Postgres via Aspire) - [x] Verified Aspire AppHost/dashboard starts and API responds Reviewed-on: #4
190 lines
7.5 KiB
C#
Executable File
190 lines
7.5 KiB
C#
Executable File
using System.Text;
|
|
using System.Threading.RateLimiting;
|
|
using FluentValidation;
|
|
using FluentValidation.AspNetCore;
|
|
using MicCheck.Api.Common.Security.ApiKeys;
|
|
using MicCheck.Api.Audit;
|
|
using MicCheck.Api.Common.Security.Authentication;
|
|
using MicCheck.Api.Common.Security.Authorization;
|
|
using MicCheck.Api.Data;
|
|
using MicCheck.Api.Environments;
|
|
using MicCheck.Api.Features;
|
|
using MicCheck.Api.Identities;
|
|
using MicCheck.Api.Organizations;
|
|
using MicCheck.Api.Projects;
|
|
using MicCheck.Api.Segments;
|
|
using MicCheck.Api.Users;
|
|
using MicCheck.Api.Webhooks;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.RateLimiting;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using Scalar.AspNetCore;
|
|
using Serilog;
|
|
|
|
Log.Logger = new LoggerConfiguration()
|
|
.WriteTo.Console()
|
|
.CreateBootstrapLogger();
|
|
|
|
try
|
|
{
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.AddServiceDefaults();
|
|
|
|
builder.Host.UseSerilog((context, services, config) =>
|
|
config.ReadFrom.Configuration(context.Configuration)
|
|
.ReadFrom.Services(services)
|
|
.WriteTo.Console());
|
|
|
|
builder.Services.AddOpenApi();
|
|
builder.Services.AddControllers()
|
|
.AddJsonOptions(options =>
|
|
options.JsonSerializerOptions.Converters.Add(
|
|
new System.Text.Json.Serialization.JsonStringEnumConverter()));
|
|
|
|
builder.Services.AddAuthentication()
|
|
.AddScheme<AuthenticationSchemeOptions, EnvironmentKeyAuthenticationHandler>(
|
|
EnvironmentKeyAuthenticationHandler.SchemeName, _ => { })
|
|
.AddScheme<AuthenticationSchemeOptions, ApiKeyAuthenticationHandler>(
|
|
ApiKeyAuthenticationHandler.SchemeName, _ => { })
|
|
.AddJwtBearer(JwtBearerDefaults.AuthenticationScheme, options =>
|
|
{
|
|
options.TokenValidationParameters = new TokenValidationParameters
|
|
{
|
|
ValidateIssuer = true,
|
|
ValidateAudience = true,
|
|
ValidateIssuerSigningKey = true,
|
|
ValidIssuer = builder.Configuration["Jwt:Issuer"],
|
|
ValidAudience = builder.Configuration["Jwt:Audience"],
|
|
IssuerSigningKey = new SymmetricSecurityKey(
|
|
Encoding.UTF8.GetBytes(builder.Configuration["Jwt:SecretKey"]!))
|
|
};
|
|
});
|
|
|
|
builder.Services.AddAuthorization(options =>
|
|
{
|
|
options.AddPolicy(AuthorizationPolicies.FlagsApiAccess, policy =>
|
|
policy.AddAuthenticationSchemes(EnvironmentKeyAuthenticationHandler.SchemeName)
|
|
.RequireClaim("EnvironmentId"));
|
|
|
|
options.AddPolicy(AuthorizationPolicies.AdminApiAccess, policy =>
|
|
policy.AddAuthenticationSchemes(ApiKeyAuthenticationHandler.SchemeName, JwtBearerDefaults.AuthenticationScheme)
|
|
.RequireAuthenticatedUser());
|
|
|
|
options.AddPolicy(AuthorizationPolicies.OrganizationAdmin, policy =>
|
|
policy.AddAuthenticationSchemes(ApiKeyAuthenticationHandler.SchemeName, JwtBearerDefaults.AuthenticationScheme)
|
|
.RequireClaim("OrganizationRole", "Admin"));
|
|
});
|
|
|
|
builder.Services.AddHttpContextAccessor();
|
|
|
|
builder.Services.AddRateLimiter(options =>
|
|
options.AddFixedWindowLimiter("AdminApi", limiter =>
|
|
{
|
|
limiter.PermitLimit = 500;
|
|
limiter.Window = TimeSpan.FromMinutes(1);
|
|
limiter.QueueProcessingOrder = QueueProcessingOrder.OldestFirst;
|
|
limiter.QueueLimit = 0;
|
|
}));
|
|
|
|
builder.Services.AddFluentValidationAutoValidation();
|
|
builder.Services.AddValidatorsFromAssemblyContaining<Program>();
|
|
|
|
builder.Services.Configure<ApiBehaviorOptions>(options =>
|
|
{
|
|
options.InvalidModelStateResponseFactory = context =>
|
|
{
|
|
var errors = context.ModelState
|
|
.Where(e => e.Value?.Errors.Count > 0)
|
|
.ToDictionary(
|
|
kvp => kvp.Key,
|
|
kvp => kvp.Value!.Errors.Select(e => e.ErrorMessage).ToArray());
|
|
return new UnprocessableEntityObjectResult(new { errors });
|
|
};
|
|
});
|
|
|
|
builder.Services.AddMemoryCache();
|
|
builder.Services.AddMetrics();
|
|
|
|
builder.Services.AddScoped<ITokenService, TokenService>();
|
|
builder.Services.AddScoped<AuthService>();
|
|
builder.Services.AddScoped<ApiKeyService>();
|
|
builder.Services.AddScoped<DatabaseSeeder>();
|
|
builder.Services.AddScoped<IPasswordHasher<User>, PasswordHasher<User>>();
|
|
builder.Services.AddScoped<IAuthorizationHandler, ProjectPermissionRequirementHandler>();
|
|
builder.Services.AddScoped<FeatureEvaluationService>();
|
|
builder.Services.AddScoped<IdentityResolutionService>();
|
|
builder.Services.AddScoped<EnvironmentDocumentService>();
|
|
builder.Services.AddSingleton<SegmentEvaluator>();
|
|
builder.Services.AddSingleton<FlagCache>();
|
|
builder.Services.AddScoped<AuditService>();
|
|
builder.Services.AddScoped<AuditLogQueryService>();
|
|
builder.Services.AddScoped<OrganizationService>();
|
|
builder.Services.AddScoped<ProjectService>();
|
|
builder.Services.AddScoped<EnvironmentService>();
|
|
builder.Services.AddScoped<FeatureService>();
|
|
builder.Services.AddScoped<FeatureStateService>();
|
|
builder.Services.AddScoped<FeatureSegmentService>();
|
|
builder.Services.AddScoped<SegmentService>();
|
|
builder.Services.AddScoped<TagService>();
|
|
builder.Services.AddScoped<WebhookService>();
|
|
builder.Services.AddScoped<WebhookDispatcher>();
|
|
builder.Services.AddScoped<AdminIdentityService>();
|
|
builder.Services.AddScoped<UserService>();
|
|
builder.Services.AddSingleton<WebhookQueue>();
|
|
builder.Services.AddHostedService<WebhookBackgroundService>();
|
|
builder.Services.AddHostedService<WebhookRetryBackgroundService>();
|
|
builder.Services.AddSingleton<FeatureUsageMetrics>();
|
|
builder.Services.AddScoped<FeatureUsageQueryService>();
|
|
builder.Services.AddHostedService<FeatureUsageFlushBackgroundService>();
|
|
builder.Services.AddHttpClient("Webhooks", client =>
|
|
client.DefaultRequestHeaders.Add("User-Agent", "MicCheck-Webhook/1.0"));
|
|
|
|
var connectionString = builder.Configuration.GetConnectionString("miccheck")
|
|
?? (System.Environment.GetEnvironmentVariable("DATABASE_URL") is { } databaseUrl
|
|
? DatabaseUrlParser.ToNpgsqlConnectionString(databaseUrl)
|
|
: builder.Configuration.GetConnectionString("DefaultConnection")!);
|
|
|
|
builder.Services.AddDbContext<MicCheckDbContext>(options =>
|
|
options.UseNpgsql(connectionString));
|
|
builder.Services.AddScoped<IMicCheckDbContext>(sp => sp.GetRequiredService<MicCheckDbContext>());
|
|
|
|
var app = builder.Build();
|
|
|
|
await app.ApplyMigrationsAsync();
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.MapOpenApi();
|
|
app.MapScalarApiReference();
|
|
app.MapGet("/", () => Results.Redirect("/scalar/v1")).ExcludeFromDescription();
|
|
|
|
await app.SeedDevelopmentDataAsync();
|
|
}
|
|
|
|
app.UseSerilogRequestLogging();
|
|
app.UseRateLimiter();
|
|
app.UseAuthentication();
|
|
app.UseAuthorization();
|
|
|
|
app.MapDefaultEndpoints();
|
|
app.MapControllers();
|
|
app.MapAuthEndpoints();
|
|
app.MapApiKeyEndpoints();
|
|
|
|
app.Run();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Fatal(ex, "Application terminated unexpectedly");
|
|
}
|
|
finally
|
|
{
|
|
Log.CloseAndFlush();
|
|
}
|