Add test case to cover non-empty auth entry

Signed-off-by: Jon Johnson <jonjohnson@google.com>
This commit is contained in:
Jon Johnson 2019-10-02 12:41:50 -07:00
parent 37e9cabf11
commit 415f608620
1 changed files with 23 additions and 15 deletions

View File

@ -389,9 +389,16 @@ func TestLoadFromReaderWithUsernamePassword(t *testing.T) {
Username: "user",
Password: "pass",
}
for _, tc := range []types.AuthConfig{
want,
types.AuthConfig{
Auth: encodeAuth(&want),
},
} {
cf := ConfigFile{
AuthConfigs: map[string]types.AuthConfig{
"example.com/foo": want,
"example.com/foo": tc,
},
}
@ -406,6 +413,7 @@ func TestLoadFromReaderWithUsernamePassword(t *testing.T) {
assert.Check(t, is.DeepEqual(want.Username, got.Username))
assert.Check(t, is.DeepEqual(want.Password, got.Password))
}
}
func TestCheckKubernetesConfigurationRaiseAnErrorOnInvalidValue(t *testing.T) {