46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package csconfig
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/crowdsecurity/go-cs-lib/pkg/cstest"
|
|
)
|
|
|
|
func TestNormalLoad(t *testing.T) {
|
|
_, _, err := NewConfig("./tests/config.yaml", false, false, false)
|
|
require.NoError(t, err)
|
|
|
|
_, _, err = NewConfig("./tests/xxx.yaml", false, false, false)
|
|
assert.EqualError(t, err, "while reading yaml file: open ./tests/xxx.yaml: "+cstest.FileNotFoundMessage)
|
|
|
|
_, _, err = NewConfig("./tests/simulation.yaml", false, false, false)
|
|
assert.EqualError(t, err, "./tests/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
|
|
expectedResult *Config
|
|
}{
|
|
{
|
|
name: "new configuration: basic",
|
|
expectedResult: &Config{},
|
|
},
|
|
}
|
|
for _, tc := range tests {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
result := &Config{}
|
|
assert.Equal(t, tc.expectedResult, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDefaultConfig(t *testing.T) {
|
|
x := NewDefaultConfig()
|
|
err := x.Dump()
|
|
require.NoError(t, err)
|
|
}
|