Files
beads/cmd/bd/info_test.go
Steve Yegge fc0b98730a refactor: consolidate duplicate path-finding utilities (bd-74w1, bd-4nqq)
- Add git.GetRepoRoot() with Windows path normalization
- Update beads.findGitRoot() to delegate to git.GetRepoRoot()
- Replace findBeadsDir() with beads.FindBeadsDir() across 8 files
- Remove duplicate findBeadsDir() and findGitRoot() function definitions
- Remove dead test code (TestInfoCommand, TestInfoWithNoDaemon)
- Update tests to work with consolidated APIs

Part of Code Health Review Dec 2025 epic (bd-tggf).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-22 21:15:41 -08:00

87 lines
2.5 KiB
Go

package main
import (
"encoding/json"
"testing"
)
func TestVersionChangesStructure(t *testing.T) {
// Verify versionChanges is properly structured
if len(versionChanges) == 0 {
t.Fatal("versionChanges should not be empty")
}
for i, vc := range versionChanges {
if vc.Version == "" {
t.Errorf("versionChanges[%d] has empty Version", i)
}
if vc.Date == "" {
t.Errorf("versionChanges[%d] has empty Date", i)
}
if len(vc.Changes) == 0 {
t.Errorf("versionChanges[%d] has no changes", i)
}
// Verify version format (should be like "0.22.1")
if len(vc.Version) < 5 {
t.Errorf("versionChanges[%d] has invalid Version format: %s", i, vc.Version)
}
// Verify date format (should be like "2025-11-06")
if len(vc.Date) != 10 {
t.Errorf("versionChanges[%d] has invalid Date format: %s", i, vc.Date)
}
// Verify each change is non-empty
for j, change := range vc.Changes {
if change == "" {
t.Errorf("versionChanges[%d].Changes[%d] is empty", i, j)
}
}
}
}
func TestVersionChangesJSON(t *testing.T) {
// Test that versionChanges can be marshaled to JSON
data, err := json.Marshal(versionChanges)
if err != nil {
t.Fatalf("Failed to marshal versionChanges to JSON: %v", err)
}
// Test that it can be unmarshaled back
var unmarshaled []VersionChange
err = json.Unmarshal(data, &unmarshaled)
if err != nil {
t.Fatalf("Failed to unmarshal versionChanges from JSON: %v", err)
}
// Verify structure is preserved
if len(unmarshaled) != len(versionChanges) {
t.Errorf("Unmarshaled length %d != original length %d", len(unmarshaled), len(versionChanges))
}
// Spot check first entry
if len(unmarshaled) > 0 && len(versionChanges) > 0 {
if unmarshaled[0].Version != versionChanges[0].Version {
t.Errorf("Version mismatch: %s != %s", unmarshaled[0].Version, versionChanges[0].Version)
}
if len(unmarshaled[0].Changes) != len(versionChanges[0].Changes) {
t.Errorf("Changes count mismatch: %d != %d", len(unmarshaled[0].Changes), len(versionChanges[0].Changes))
}
}
}
func TestVersionChangesCoverage(t *testing.T) {
// Ensure we have at least 3 recent versions documented
if len(versionChanges) < 3 {
t.Errorf("Should document at least 3 recent versions, found %d", len(versionChanges))
}
// Ensure each version has meaningful changes (at least 3 bullet points)
for i, vc := range versionChanges {
if len(vc.Changes) < 3 {
t.Errorf("versionChanges[%d] (v%s) should have at least 3 changes, found %d", i, vc.Version, len(vc.Changes))
}
}
}