Files
chis_osi/config/config_test.go
T
2026-07-06 20:54:23 +08:00

21 lines
486 B
Go

package config
import "testing"
func TestLoadExampleConfig(t *testing.T) {
cfg, err := Load("../config.yaml.example")
if err != nil {
t.Fatalf("Load example config: %v", err)
}
if cfg.OSI.BaseURL == "" {
t.Fatal("OSI base_url should have a placeholder value")
}
if cfg.OSI.TimeoutSec != 20 {
t.Fatalf("OSI timeout_sec = %d, want 20", cfg.OSI.TimeoutSec)
}
if cfg.ReportLogFileDir != "logs" {
t.Fatalf("report_log_file_dir = %q, want logs", cfg.ReportLogFileDir)
}
}