2b1e4ca3a7
Covering nil-input safety, plugin backends (HTTP/gRPC/default), loaders (File/HTTP/Redis), selector strategies, edge cases (empty/invalid inputs), and hop-to-node metadata inheritance. All tests passing.
228 lines
6.8 KiB
Go
228 lines
6.8 KiB
Go
package parser
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-gost/x/config"
|
|
)
|
|
|
|
func TestMergeConfig_NilBoth(t *testing.T) {
|
|
got := mergeConfig(nil, nil)
|
|
if got != nil {
|
|
t.Fatal("expected nil for two nil inputs")
|
|
}
|
|
}
|
|
|
|
func TestMergeConfig_NilFirst(t *testing.T) {
|
|
cfg2 := &config.Config{
|
|
Services: []*config.ServiceConfig{{Name: "svc"}},
|
|
}
|
|
got := mergeConfig(nil, cfg2)
|
|
if len(got.Services) != 1 || got.Services[0].Name != "svc" {
|
|
t.Fatal("expected cfg2 to be returned when cfg1 is nil")
|
|
}
|
|
}
|
|
|
|
func TestMergeConfig_NilSecond(t *testing.T) {
|
|
cfg1 := &config.Config{
|
|
Services: []*config.ServiceConfig{{Name: "svc"}},
|
|
}
|
|
got := mergeConfig(cfg1, nil)
|
|
if len(got.Services) != 1 || got.Services[0].Name != "svc" {
|
|
t.Fatal("expected cfg1 to be returned when cfg2 is nil")
|
|
}
|
|
}
|
|
|
|
func TestMergeConfig_AppendsAllSlices(t *testing.T) {
|
|
cfg1 := &config.Config{
|
|
Services: []*config.ServiceConfig{{Name: "s1"}},
|
|
Chains: []*config.ChainConfig{{Name: "c1"}},
|
|
Hops: []*config.HopConfig{{Name: "h1"}},
|
|
Authers: []*config.AutherConfig{{Name: "a1"}},
|
|
Admissions: []*config.AdmissionConfig{{Name: "ad1"}},
|
|
Bypasses: []*config.BypassConfig{{Name: "b1"}},
|
|
Resolvers: []*config.ResolverConfig{{Name: "r1"}},
|
|
Hosts: []*config.HostsConfig{{Name: "hosts1"}},
|
|
Ingresses: []*config.IngressConfig{{Name: "i1"}},
|
|
SDs: []*config.SDConfig{{Name: "sd1"}},
|
|
Recorders: []*config.RecorderConfig{{Name: "rec1"}},
|
|
Limiters: []*config.LimiterConfig{{Name: "l1"}},
|
|
CLimiters: []*config.LimiterConfig{{Name: "cl1"}},
|
|
RLimiters: []*config.LimiterConfig{{Name: "rl1"}},
|
|
Loggers: []*config.LoggerConfig{{Name: "log1"}},
|
|
Routers: []*config.RouterConfig{{Name: "rt1"}},
|
|
Observers: []*config.ObserverConfig{{Name: "obs1"}},
|
|
}
|
|
cfg2 := &config.Config{
|
|
Services: []*config.ServiceConfig{{Name: "s2"}},
|
|
Chains: []*config.ChainConfig{{Name: "c2"}},
|
|
Hops: []*config.HopConfig{{Name: "h2"}},
|
|
Authers: []*config.AutherConfig{{Name: "a2"}},
|
|
Admissions: []*config.AdmissionConfig{{Name: "ad2"}},
|
|
Bypasses: []*config.BypassConfig{{Name: "b2"}},
|
|
Resolvers: []*config.ResolverConfig{{Name: "r2"}},
|
|
Hosts: []*config.HostsConfig{{Name: "hosts2"}},
|
|
Ingresses: []*config.IngressConfig{{Name: "i2"}},
|
|
SDs: []*config.SDConfig{{Name: "sd2"}},
|
|
Recorders: []*config.RecorderConfig{{Name: "rec2"}},
|
|
Limiters: []*config.LimiterConfig{{Name: "l2"}},
|
|
CLimiters: []*config.LimiterConfig{{Name: "cl2"}},
|
|
RLimiters: []*config.LimiterConfig{{Name: "rl2"}},
|
|
Loggers: []*config.LoggerConfig{{Name: "log2"}},
|
|
Routers: []*config.RouterConfig{{Name: "rt2"}},
|
|
Observers: []*config.ObserverConfig{{Name: "obs2"}},
|
|
}
|
|
|
|
got := mergeConfig(cfg1, cfg2)
|
|
|
|
if len(got.Services) != 2 || got.Services[0].Name != "s1" || got.Services[1].Name != "s2" {
|
|
t.Fatal("services not properly appended")
|
|
}
|
|
if len(got.Chains) != 2 {
|
|
t.Fatal("chains not properly appended")
|
|
}
|
|
if len(got.Hops) != 2 {
|
|
t.Fatal("hops not properly appended")
|
|
}
|
|
if len(got.Authers) != 2 {
|
|
t.Fatal("authers not properly appended")
|
|
}
|
|
if len(got.Admissions) != 2 {
|
|
t.Fatal("admissions not properly appended")
|
|
}
|
|
if len(got.Bypasses) != 2 {
|
|
t.Fatal("bypasses not properly appended")
|
|
}
|
|
if len(got.Resolvers) != 2 {
|
|
t.Fatal("resolvers not properly appended")
|
|
}
|
|
if len(got.Hosts) != 2 {
|
|
t.Fatal("hosts not properly appended")
|
|
}
|
|
if len(got.Ingresses) != 2 {
|
|
t.Fatal("ingresses not properly appended")
|
|
}
|
|
if len(got.SDs) != 2 {
|
|
t.Fatal("SDs not properly appended")
|
|
}
|
|
if len(got.Recorders) != 2 {
|
|
t.Fatal("recorders not properly appended")
|
|
}
|
|
if len(got.Limiters) != 2 {
|
|
t.Fatal("limiters not properly appended")
|
|
}
|
|
if len(got.CLimiters) != 2 {
|
|
t.Fatal("climiters not properly appended")
|
|
}
|
|
if len(got.RLimiters) != 2 {
|
|
t.Fatal("rlimiters not properly appended")
|
|
}
|
|
if len(got.Loggers) != 2 {
|
|
t.Fatal("loggers not properly appended")
|
|
}
|
|
if len(got.Routers) != 2 {
|
|
t.Fatal("routers not properly appended")
|
|
}
|
|
if len(got.Observers) != 2 {
|
|
t.Fatal("observers not properly appended")
|
|
}
|
|
}
|
|
|
|
func TestMergeConfig_ScalarOverrides(t *testing.T) {
|
|
cfg1 := &config.Config{
|
|
TLS: &config.TLSConfig{ServerName: "old"},
|
|
Log: &config.LogConfig{Level: "info"},
|
|
API: &config.APIConfig{Addr: ":8080"},
|
|
Metrics: &config.MetricsConfig{Addr: ":9090"},
|
|
Profiling: &config.ProfilingConfig{Addr: ":6060"},
|
|
}
|
|
cfg2 := &config.Config{
|
|
TLS: &config.TLSConfig{ServerName: "new"},
|
|
Log: &config.LogConfig{Level: "debug"},
|
|
API: &config.APIConfig{Addr: ":8081"},
|
|
Metrics: &config.MetricsConfig{Addr: ":9091"},
|
|
Profiling: &config.ProfilingConfig{Addr: ":6061"},
|
|
}
|
|
|
|
got := mergeConfig(cfg1, cfg2)
|
|
|
|
if got.TLS.ServerName != "new" {
|
|
t.Fatalf("TLS not overridden: got %q, want %q", got.TLS.ServerName, "new")
|
|
}
|
|
if got.Log.Level != "debug" {
|
|
t.Fatalf("Log not overridden: got %q, want %q", got.Log.Level, "debug")
|
|
}
|
|
if got.API.Addr != ":8081" {
|
|
t.Fatalf("API not overridden: got %q, want %q", got.API.Addr, ":8081")
|
|
}
|
|
if got.Metrics.Addr != ":9091" {
|
|
t.Fatalf("Metrics not overridden: got %q, want %q", got.Metrics.Addr, ":9091")
|
|
}
|
|
if got.Profiling.Addr != ":6061" {
|
|
t.Fatalf("Profiling not overridden: got %q, want %q", got.Profiling.Addr, ":6061")
|
|
}
|
|
}
|
|
|
|
func TestMergeConfig_ScalarKeepsCfg1WhenCfg2Nil(t *testing.T) {
|
|
cfg1 := &config.Config{
|
|
TLS: &config.TLSConfig{ServerName: "keep"},
|
|
Log: &config.LogConfig{Level: "warn"},
|
|
API: &config.APIConfig{Addr: ":8080"},
|
|
Metrics: &config.MetricsConfig{Addr: ":9090"},
|
|
Profiling: &config.ProfilingConfig{Addr: ":6060"},
|
|
}
|
|
cfg2 := &config.Config{} // all scalars nil
|
|
|
|
got := mergeConfig(cfg1, cfg2)
|
|
|
|
if got.TLS.ServerName != "keep" {
|
|
t.Fatal("TLS should be kept from cfg1")
|
|
}
|
|
if got.Log.Level != "warn" {
|
|
t.Fatal("Log should be kept from cfg1")
|
|
}
|
|
if got.API.Addr != ":8080" {
|
|
t.Fatal("API should be kept from cfg1")
|
|
}
|
|
if got.Metrics.Addr != ":9090" {
|
|
t.Fatal("Metrics should be kept from cfg1")
|
|
}
|
|
if got.Profiling.Addr != ":6060" {
|
|
t.Fatal("Profiling should be kept from cfg1")
|
|
}
|
|
}
|
|
|
|
func TestInit(t *testing.T) {
|
|
Init(Args{
|
|
CfgFile: "test.yml",
|
|
Services: []string{"s1"},
|
|
Nodes: []string{"n1"},
|
|
Debug: true,
|
|
Trace: false,
|
|
ApiAddr: ":8080",
|
|
MetricsAddr: ":9090",
|
|
})
|
|
|
|
if defaultParser.args.CfgFile != "test.yml" {
|
|
t.Fatalf("CfgFile not set: got %q", defaultParser.args.CfgFile)
|
|
}
|
|
if len(defaultParser.args.Services) != 1 || defaultParser.args.Services[0] != "s1" {
|
|
t.Fatal("Services not set")
|
|
}
|
|
if len(defaultParser.args.Nodes) != 1 || defaultParser.args.Nodes[0] != "n1" {
|
|
t.Fatal("Nodes not set")
|
|
}
|
|
if !defaultParser.args.Debug {
|
|
t.Fatal("Debug not set")
|
|
}
|
|
if defaultParser.args.Trace {
|
|
t.Fatal("Trace should be false")
|
|
}
|
|
if defaultParser.args.ApiAddr != ":8080" {
|
|
t.Fatal("ApiAddr not set")
|
|
}
|
|
if defaultParser.args.MetricsAddr != ":9090" {
|
|
t.Fatal("MetricsAddr not set")
|
|
}
|
|
}
|