forked from distribution/distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request distribution#2446 from legionus/docker-configurati…
…on-ptr Fix the pointer initialization
- Loading branch information
Showing
2 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
} |