47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package csconfig
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"gopkg.in/yaml.v2"
|
|
|
|
"github.com/crowdsecurity/go-cs-lib/cstest"
|
|
)
|
|
|
|
func TestNormalLoad(t *testing.T) {
|
|
_, _, err := NewConfig("./testdata/config.yaml", false, false, false)
|
|
require.NoError(t, err)
|
|
|
|
_, _, err = NewConfig("./testdata/xxx.yaml", false, false, false)
|
|
require.EqualError(t, err, "while reading yaml file: open ./testdata/xxx.yaml: "+cstest.FileNotFoundMessage)
|
|
|
|
_, _, err = NewConfig("./testdata/simulation.yaml", false, false, false)
|
|
require.EqualError(t, err, "./testdata/simulation.yaml: yaml: unmarshal errors:\n line 1: field simulation not found in type csconfig.Config")
|
|
}
|
|
|
|
func TestNewCrowdSecConfig(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
expected *Config
|
|
}{
|
|
{
|
|
name: "new configuration: basic",
|
|
expected: &Config{},
|
|
},
|
|
}
|
|
for _, tc := range tests {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
result := &Config{}
|
|
assert.Equal(t, tc.expected, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDefaultConfig(t *testing.T) {
|
|
x := NewDefaultConfig()
|
|
_, err := yaml.Marshal(x)
|
|
require.NoError(t, err, "failed marshaling config: %s", err)
|
|
}
|