test(coverage): add tests to meet 45% CI threshold

Add comprehensive test coverage for previously untested functions:

internal/debug/debug_test.go:
- TestSetVerbose: tests SetVerbose() and its effect on Enabled()
- TestSetQuietAndIsQuiet: tests SetQuiet() and IsQuiet() functions
- TestPrintNormal: tests quiet mode suppression of normal output
- TestPrintlnNormal: tests quiet mode suppression of println output

internal/export/config_test.go (new file):
- TestLoadConfig: comprehensive tests for LoadConfig() including:
  - Default values when no config exists
  - Loading custom policies (both regular and auto-export)
  - Loading retry attempts, backoff, skip encoding errors, write manifest
  - Handling invalid/malformed config values gracefully

internal/export/policy_test.go:
- TestErrorPolicyString: tests String() method on ErrorPolicy
- TestNewManifest: tests manifest creation with proper defaults
- TestWriteManifest: tests manifest file writing and error handling

These tests bring coverage from 44.8% to 45.0%, meeting the CI threshold.
This commit is contained in:
Charles P. Cross
2025-12-18 17:42:45 -05:00
parent cb59bb3ec8
commit ba8beb53b3
3 changed files with 444 additions and 0 deletions

View File

@@ -137,3 +137,149 @@ func TestPrintf(t *testing.T) {
})
}
}
func TestSetVerbose(t *testing.T) {
oldVerbose := verboseMode
oldEnabled := enabled
defer func() {
verboseMode = oldVerbose
enabled = oldEnabled
}()
enabled = false
verboseMode = false
if Enabled() {
t.Error("Enabled() should be false initially")
}
SetVerbose(true)
if !Enabled() {
t.Error("Enabled() should be true after SetVerbose(true)")
}
SetVerbose(false)
if Enabled() {
t.Error("Enabled() should be false after SetVerbose(false)")
}
}
func TestSetQuietAndIsQuiet(t *testing.T) {
oldQuiet := quietMode
defer func() { quietMode = oldQuiet }()
quietMode = false
if IsQuiet() {
t.Error("IsQuiet() should be false initially")
}
SetQuiet(true)
if !IsQuiet() {
t.Error("IsQuiet() should be true after SetQuiet(true)")
}
SetQuiet(false)
if IsQuiet() {
t.Error("IsQuiet() should be false after SetQuiet(false)")
}
}
func TestPrintNormal(t *testing.T) {
tests := []struct {
name string
quiet bool
format string
args []interface{}
wantOutput string
}{
{
name: "outputs when not quiet",
quiet: false,
format: "info: %s\n",
args: []interface{}{"message"},
wantOutput: "info: message\n",
},
{
name: "no output when quiet",
quiet: true,
format: "info: %s\n",
args: []interface{}{"message"},
wantOutput: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
oldQuiet := quietMode
oldStdout := os.Stdout
defer func() {
quietMode = oldQuiet
os.Stdout = oldStdout
}()
quietMode = tt.quiet
r, w, _ := os.Pipe()
os.Stdout = w
PrintNormal(tt.format, tt.args...)
w.Close()
var buf bytes.Buffer
io.Copy(&buf, r)
if got := buf.String(); got != tt.wantOutput {
t.Errorf("PrintNormal() output = %q, want %q", got, tt.wantOutput)
}
})
}
}
func TestPrintlnNormal(t *testing.T) {
tests := []struct {
name string
quiet bool
args []interface{}
wantOutput string
}{
{
name: "outputs when not quiet",
quiet: false,
args: []interface{}{"hello", "world"},
wantOutput: "hello world\n",
},
{
name: "no output when quiet",
quiet: true,
args: []interface{}{"hello", "world"},
wantOutput: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
oldQuiet := quietMode
oldStdout := os.Stdout
defer func() {
quietMode = oldQuiet
os.Stdout = oldStdout
}()
quietMode = tt.quiet
r, w, _ := os.Pipe()
os.Stdout = w
PrintlnNormal(tt.args...)
w.Close()
var buf bytes.Buffer
io.Copy(&buf, r)
if got := buf.String(); got != tt.wantOutput {
t.Errorf("PrintlnNormal() output = %q, want %q", got, tt.wantOutput)
}
})
}
}