- Fixed TestCLI_Create to handle warning messages before JSON output - Added tests for formatDependencyType (show.go) - Added tests for truncateForBox and gitRevParse (worktree.go) - Added comprehensive CLI tests for labels, priority formats, and reopen - All tests passing in short mode Addresses bd-6221bdcd
66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTruncateForBox(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
path string
|
|
maxLen int
|
|
want string
|
|
}{
|
|
{
|
|
name: "short path no truncate",
|
|
path: "/home/user",
|
|
maxLen: 20,
|
|
want: "/home/user",
|
|
},
|
|
{
|
|
name: "exact length",
|
|
path: "12345",
|
|
maxLen: 5,
|
|
want: "12345",
|
|
},
|
|
{
|
|
name: "needs truncate",
|
|
path: "/very/long/path/to/somewhere/deep",
|
|
maxLen: 15,
|
|
want: "...mewhere/deep",
|
|
},
|
|
{
|
|
name: "truncate to minimum",
|
|
path: "abcdefghij",
|
|
maxLen: 5,
|
|
want: "...ij",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got := truncateForBox(tt.path, tt.maxLen)
|
|
if got != tt.want {
|
|
t.Errorf("truncateForBox(%q, %d) = %q, want %q", tt.path, tt.maxLen, got, tt.want)
|
|
}
|
|
if len(got) > tt.maxLen {
|
|
t.Errorf("truncateForBox(%q, %d) returned %q with length %d > maxLen %d",
|
|
tt.path, tt.maxLen, got, len(got), tt.maxLen)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGitRevParse(t *testing.T) {
|
|
// Basic test - should either return a value or empty string (if not in git repo)
|
|
result := gitRevParse("--git-dir")
|
|
// Just verify it doesn't panic and returns a string
|
|
if result != "" {
|
|
// In a git repo
|
|
t.Logf("Git dir: %s", result)
|
|
} else {
|
|
// Not in a git repo or error
|
|
t.Logf("Not in git repo or error")
|
|
}
|
|
}
|