52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
// that can be found in the LICENSE file.
|
|
|
|
package registry
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/drone/drone/core"
|
|
"github.com/google/go-cmp/cmp"
|
|
)
|
|
|
|
func TestCombineSources(t *testing.T) {
|
|
source := Combine(
|
|
FileSource("./auths/testdata/config.json"),
|
|
FileSource("./auths/testdata/config2.json"),
|
|
FileSource(""), // no source file, must not error
|
|
)
|
|
got, err := source.List(noContext, &core.RegistryArgs{})
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
want := []*core.Registry{
|
|
{
|
|
Address: "https://index.docker.io/v1/",
|
|
Username: "octocat",
|
|
Password: "correct-horse-battery-staple",
|
|
},
|
|
{
|
|
Address: "https://gcr.io",
|
|
Username: "octocat",
|
|
Password: "correct-horse-battery-staple",
|
|
},
|
|
}
|
|
if diff := cmp.Diff(got, want); diff != "" {
|
|
t.Errorf(diff)
|
|
}
|
|
}
|
|
|
|
func TestCombineSources_Err(t *testing.T) {
|
|
source := Combine(
|
|
FileSource("./auths/testdata/config.json"),
|
|
FileSource("./auths/testdata/x.json"),
|
|
)
|
|
_, err := source.List(noContext, &core.RegistryArgs{})
|
|
if _, ok := err.(*os.PathError); !ok {
|
|
t.Errorf("Expect error when file does not exist")
|
|
}
|
|
}
|