namespace GmRelay.Bot.Tests.Infrastructure.Scheduling; public sealed class SessionTriggerStoreSourceTests { [Fact] public async Task DbSessionTriggerStore_ShouldFilterTriggersByConfiguredPlatform() { var source = await ReadRepositoryFileAsync( "src/GmRelay.Shared/Infrastructure/Scheduling/ISessionTriggerStore.cs"); Assert.Contains("PlatformSchedulerOptions", source, StringComparison.Ordinal); Assert.Contains("JOIN game_groups g ON g.id = s.group_id", source, StringComparison.Ordinal); Assert.Contains("g.platform = @Platform", source, StringComparison.Ordinal); } private static async Task ReadRepositoryFileAsync(string relativePath) { var directory = new DirectoryInfo(AppContext.BaseDirectory); while (directory is not null) { var candidate = Path.Combine(directory.FullName, relativePath); if (File.Exists(candidate)) { return await File.ReadAllTextAsync(candidate); } directory = directory.Parent; } throw new FileNotFoundException($"Could not locate repository file '{relativePath}'."); } }