using ClaudeDo.Data; using ClaudeDo.Ui.Services; using ClaudeDo.Ui.ViewModels.Islands; using Microsoft.EntityFrameworkCore; namespace ClaudeDo.Ui.Tests.ViewModels; public class DetailsIslandTabsTests : IDisposable { private readonly string _dbPath; public DetailsIslandTabsTests() { _dbPath = Path.Combine(Path.GetTempPath(), $"claudedo_tabs_test_{Guid.NewGuid():N}.db"); using var ctx = NewContext(); ctx.Database.EnsureCreated(); } public void Dispose() { try { File.Delete(_dbPath); } catch { } try { File.Delete(_dbPath + "-wal"); } catch { } try { File.Delete(_dbPath + "-shm"); } catch { } } private ClaudeDoDbContext NewContext() { var opts = new DbContextOptionsBuilder() .UseSqlite($"Data Source={_dbPath}") .Options; return new ClaudeDoDbContext(opts); } private sealed class TestDbFactory : IDbContextFactory { private readonly Func _create; public TestDbFactory(Func create) => _create = create; public ClaudeDoDbContext CreateDbContext() => _create(); } private sealed class StubNotesApi : ClaudeDo.Ui.Services.Interfaces.INotesApi { public Task> ListAsync(DateOnly day) => Task.FromResult(new List()); public Task AddAsync(DateOnly day, string text) => Task.FromResult(null); public Task UpdateAsync(string id, string text) => Task.CompletedTask; public Task DeleteAsync(string id) => Task.CompletedTask; } private sealed class NullServiceProvider : IServiceProvider { public object? GetService(Type serviceType) => null; } // StubWorkerClient is abstract — use a concrete no-op subclass (same pattern as DetailsIslandPrepModeTests). private sealed class DefaultStub : StubWorkerClient { } private DetailsIslandViewModel NewVm() { var factory = new TestDbFactory(NewContext); return new DetailsIslandViewModel(factory, new DefaultStub(), new NullServiceProvider(), new StubNotesApi()); } [Fact] public void SelectTab_git_sets_IsGitTab_and_clears_others() { var vm = NewVm(); vm.SelectTabCommand.Execute("git"); Assert.True(vm.IsGitTab); Assert.False(vm.IsOutputTab); Assert.False(vm.IsSessionTab); } [Fact] public void Default_tab_is_output_not_git() { var vm = NewVm(); Assert.True(vm.IsOutputTab); Assert.False(vm.IsGitTab); } }