feat(data): add PrimeScheduleRepository

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mika Kuns
2026-04-28 08:54:30 +02:00
parent 0b90df6ff0
commit a335a3b684
2 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
// tests/ClaudeDo.Worker.Tests/Repositories/PrimeScheduleRepositoryTests.cs
using ClaudeDo.Data.Models;
using ClaudeDo.Data.Repositories;
using ClaudeDo.Worker.Tests.Infrastructure;
namespace ClaudeDo.Worker.Tests.Repositories;
public class PrimeScheduleRepositoryTests : IDisposable
{
private readonly DbFixture _db = new();
public void Dispose() => _db.Dispose();
[Fact]
public async Task Upsert_Then_List_RoundTrips()
{
var id = Guid.NewGuid();
using (var ctx = _db.CreateContext())
{
await new PrimeScheduleRepository(ctx).UpsertAsync(new PrimeScheduleEntity
{
Id = id,
StartDate = new DateOnly(2026, 5, 1),
EndDate = new DateOnly(2026, 6, 30),
TimeOfDay = new TimeSpan(7, 0, 0),
WorkdaysOnly = true,
Enabled = true,
CreatedAt = DateTimeOffset.UtcNow,
});
}
using var read = _db.CreateContext();
var rows = await new PrimeScheduleRepository(read).ListAsync();
Assert.Single(rows);
Assert.Equal(id, rows[0].Id);
Assert.Equal(new TimeSpan(7, 0, 0), rows[0].TimeOfDay);
}
[Fact]
public async Task UpdateLastRunAt_Persists()
{
var id = Guid.NewGuid();
var when = new DateTimeOffset(2026, 5, 5, 7, 1, 0, TimeSpan.FromHours(2));
using (var ctx = _db.CreateContext())
{
await new PrimeScheduleRepository(ctx).UpsertAsync(new PrimeScheduleEntity
{
Id = id,
StartDate = new DateOnly(2026, 5, 1),
EndDate = new DateOnly(2026, 5, 31),
TimeOfDay = new TimeSpan(7, 0, 0),
Enabled = true,
CreatedAt = DateTimeOffset.UtcNow,
});
}
using (var ctx = _db.CreateContext())
await new PrimeScheduleRepository(ctx).UpdateLastRunAsync(id, when);
using var read = _db.CreateContext();
var row = await new PrimeScheduleRepository(read).GetAsync(id);
Assert.NotNull(row);
Assert.Equal(when, row!.LastRunAt);
}
[Fact]
public async Task Delete_Removes_Row()
{
var id = Guid.NewGuid();
using (var ctx = _db.CreateContext())
await new PrimeScheduleRepository(ctx).UpsertAsync(new PrimeScheduleEntity
{
Id = id,
StartDate = new DateOnly(2026, 5, 1),
EndDate = new DateOnly(2026, 5, 1),
TimeOfDay = TimeSpan.Zero,
Enabled = true,
CreatedAt = DateTimeOffset.UtcNow,
});
using (var ctx = _db.CreateContext())
await new PrimeScheduleRepository(ctx).DeleteAsync(id);
using var read = _db.CreateContext();
Assert.Empty(await new PrimeScheduleRepository(read).ListAsync());
}
}