Add unit tests for MicCheck.Api.Features

Covers validators, response mapping, TagService/TagsController,
FeaturesController (CRUD + tag assignment), FeatureSegmentService,
FeatureStateService (incl. webhook dispatch), and
FeatureUsageController. Fills gaps in FeatureService
(FindByIdAsync, not-found exceptions).

FeatureUsageFlushBackgroundService is marked [ExcludeFromCodeCoverage]:
timer-driven, issues raw SQL through a DI-scoped concrete DbContext,
can't be exercised cleanly without a live DB (CLAUDE.md disallows
WebApplicationFactory/InMemory).

Raises the namespace from 44% to 97%.
This commit is contained in:
2026-07-05 13:26:11 -07:00
parent 611557ce81
commit 145e1f1be9
12 changed files with 1167 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
using MicCheck.Api.Features;
using NUnit.Framework;
namespace MicCheck.Api.Tests.Unit.Features;
[TestFixture]
public class CreateFeatureRequestValidatorTests
{
private CreateFeatureRequestValidator _validator = null!;
[SetUp]
public void SetUp() => _validator = new CreateFeatureRequestValidator();
[Test]
public void WhenTheRequestIsValid_ThenValidationSucceeds()
{
var result = _validator.Validate(new CreateFeatureRequest("dark_mode", FeatureType.Standard, null, null));
Assert.That(result.IsValid, Is.True);
}
[Test]
public void WhenNameIsEmpty_ThenValidationFails()
{
var result = _validator.Validate(new CreateFeatureRequest("", FeatureType.Standard, null, null));
Assert.That(result.IsValid, Is.False);
}
[Test]
public void WhenNameExceedsMaximumLength_ThenValidationFails()
{
var result = _validator.Validate(new CreateFeatureRequest(new string('a', 151), FeatureType.Standard, null, null));
Assert.That(result.IsValid, Is.False);
}
[Test]
public void WhenNameContainsInvalidCharacters_ThenValidationFails()
{
var result = _validator.Validate(new CreateFeatureRequest("dark mode!", FeatureType.Standard, null, null));
Assert.That(result.IsValid, Is.False);
}
[Test]
public void WhenInitialValueExceedsMaximumLength_ThenValidationFails()
{
var result = _validator.Validate(new CreateFeatureRequest("flag", FeatureType.Standard, new string('a', 20_001), null));
Assert.That(result.IsValid, Is.False);
}
[Test]
public void WhenInitialValueIsNull_ThenTheLengthRuleIsSkipped()
{
var result = _validator.Validate(new CreateFeatureRequest("flag", FeatureType.Standard, null, null));
Assert.That(result.IsValid, Is.True);
}
}