Add tests for configuration parser
Signed-off-by: Gladkov Alexey <agladkov@redhat.com>
This commit is contained in:
parent
c9eba1a5bb
commit
e69837454a
1 changed files with 70 additions and 0 deletions
70
configuration/parser_test.go
Normal file
70
configuration/parser_test.go
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
package configuration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"reflect"
|
||||||
|
|
||||||
|
. "gopkg.in/check.v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
type localConfiguration struct {
|
||||||
|
Version Version `yaml:"version"`
|
||||||
|
Log *Log `yaml:"log"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type Log struct {
|
||||||
|
Formatter string `yaml:"formatter,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var expectedConfig = localConfiguration{
|
||||||
|
Version: "0.1",
|
||||||
|
Log: &Log{
|
||||||
|
Formatter: "json",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
type ParserSuite struct{}
|
||||||
|
|
||||||
|
var _ = Suite(new(ParserSuite))
|
||||||
|
|
||||||
|
func (suite *ParserSuite) TestParserOverwriteIninitializedPoiner(c *C) {
|
||||||
|
config := localConfiguration{}
|
||||||
|
|
||||||
|
os.Setenv("REGISTRY_LOG_FORMATTER", "json")
|
||||||
|
defer os.Unsetenv("REGISTRY_LOG_FORMATTER")
|
||||||
|
|
||||||
|
p := NewParser("registry", []VersionedParseInfo{
|
||||||
|
{
|
||||||
|
Version: "0.1",
|
||||||
|
ParseAs: reflect.TypeOf(config),
|
||||||
|
ConversionFunc: func(c interface{}) (interface{}, error) {
|
||||||
|
return c, nil
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
err := p.Parse([]byte(`{version: "0.1", log: {formatter: "text"}}`), &config)
|
||||||
|
c.Assert(err, IsNil)
|
||||||
|
c.Assert(config, DeepEquals, expectedConfig)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (suite *ParserSuite) TestParseOverwriteUnininitializedPoiner(c *C) {
|
||||||
|
config := localConfiguration{}
|
||||||
|
|
||||||
|
os.Setenv("REGISTRY_LOG_FORMATTER", "json")
|
||||||
|
defer os.Unsetenv("REGISTRY_LOG_FORMATTER")
|
||||||
|
|
||||||
|
p := NewParser("registry", []VersionedParseInfo{
|
||||||
|
{
|
||||||
|
Version: "0.1",
|
||||||
|
ParseAs: reflect.TypeOf(config),
|
||||||
|
ConversionFunc: func(c interface{}) (interface{}, error) {
|
||||||
|
return c, nil
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
err := p.Parse([]byte(`{version: "0.1"}`), &config)
|
||||||
|
c.Assert(err, IsNil)
|
||||||
|
c.Assert(config, DeepEquals, expectedConfig)
|
||||||
|
}
|
Loading…
Reference in a new issue