2016-12-25 14:31:52 -05:00
|
|
|
package credentials
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-10-15 15:39:56 -04:00
|
|
|
"github.com/docker/cli/cli/config/types"
|
2020-02-22 12:12:14 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
2016-12-25 14:31:52 -05:00
|
|
|
)
|
|
|
|
|
2017-06-21 16:47:06 -04:00
|
|
|
type fakeStore struct {
|
|
|
|
configs map[string]types.AuthConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeStore) Save() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *fakeStore) GetAuthConfigs() map[string]types.AuthConfig {
|
|
|
|
return f.configs
|
|
|
|
}
|
2016-12-25 14:31:52 -05:00
|
|
|
|
2018-03-26 10:18:32 -04:00
|
|
|
func (f *fakeStore) GetFilename() string {
|
|
|
|
return "/tmp/docker-fakestore"
|
|
|
|
}
|
|
|
|
|
2017-06-21 16:47:06 -04:00
|
|
|
func newStore(auths map[string]types.AuthConfig) store {
|
|
|
|
return &fakeStore{configs: auths}
|
2016-12-25 14:31:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileStoreAddCredentials(t *testing.T) {
|
2017-06-21 16:47:06 -04:00
|
|
|
f := newStore(make(map[string]types.AuthConfig))
|
2016-12-25 14:31:52 -05:00
|
|
|
|
|
|
|
s := NewFileStore(f)
|
2017-06-21 16:47:06 -04:00
|
|
|
auth := types.AuthConfig{
|
2016-12-25 14:31:52 -05:00
|
|
|
Auth: "super_secret_token",
|
|
|
|
Email: "foo@example.com",
|
|
|
|
ServerAddress: "https://example.com",
|
|
|
|
}
|
2017-06-21 16:47:06 -04:00
|
|
|
err := s.Store(auth)
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Len(f.GetAuthConfigs(), 1))
|
2016-12-25 14:31:52 -05:00
|
|
|
|
2017-06-21 16:47:06 -04:00
|
|
|
actual, ok := f.GetAuthConfigs()["https://example.com"]
|
2018-03-05 18:53:52 -05:00
|
|
|
assert.Check(t, ok)
|
|
|
|
assert.Check(t, is.DeepEqual(auth, actual))
|
2016-12-25 14:31:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileStoreGet(t *testing.T) {
|
2017-06-21 16:47:06 -04:00
|
|
|
f := newStore(map[string]types.AuthConfig{
|
2016-12-25 14:31:52 -05:00
|
|
|
"https://example.com": {
|
|
|
|
Auth: "super_secret_token",
|
|
|
|
Email: "foo@example.com",
|
|
|
|
ServerAddress: "https://example.com",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
s := NewFileStore(f)
|
|
|
|
a, err := s.Get("https://example.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if a.Auth != "super_secret_token" {
|
|
|
|
t.Fatalf("expected auth `super_secret_token`, got %s", a.Auth)
|
|
|
|
}
|
|
|
|
if a.Email != "foo@example.com" {
|
|
|
|
t.Fatalf("expected email `foo@example.com`, got %s", a.Email)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileStoreGetAll(t *testing.T) {
|
|
|
|
s1 := "https://example.com"
|
2021-04-30 03:31:41 -04:00
|
|
|
s2 := "https://example2.example.com"
|
2017-06-21 16:47:06 -04:00
|
|
|
f := newStore(map[string]types.AuthConfig{
|
2016-12-25 14:31:52 -05:00
|
|
|
s1: {
|
|
|
|
Auth: "super_secret_token",
|
|
|
|
Email: "foo@example.com",
|
|
|
|
ServerAddress: "https://example.com",
|
|
|
|
},
|
|
|
|
s2: {
|
|
|
|
Auth: "super_secret_token2",
|
|
|
|
Email: "foo@example2.com",
|
2021-04-30 03:31:41 -04:00
|
|
|
ServerAddress: "https://example2.example.com",
|
2016-12-25 14:31:52 -05:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
s := NewFileStore(f)
|
|
|
|
as, err := s.GetAll()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(as) != 2 {
|
|
|
|
t.Fatalf("wanted 2, got %d", len(as))
|
|
|
|
}
|
|
|
|
if as[s1].Auth != "super_secret_token" {
|
|
|
|
t.Fatalf("expected auth `super_secret_token`, got %s", as[s1].Auth)
|
|
|
|
}
|
|
|
|
if as[s1].Email != "foo@example.com" {
|
|
|
|
t.Fatalf("expected email `foo@example.com`, got %s", as[s1].Email)
|
|
|
|
}
|
|
|
|
if as[s2].Auth != "super_secret_token2" {
|
|
|
|
t.Fatalf("expected auth `super_secret_token2`, got %s", as[s2].Auth)
|
|
|
|
}
|
|
|
|
if as[s2].Email != "foo@example2.com" {
|
|
|
|
t.Fatalf("expected email `foo@example2.com`, got %s", as[s2].Email)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileStoreErase(t *testing.T) {
|
2017-06-21 16:47:06 -04:00
|
|
|
f := newStore(map[string]types.AuthConfig{
|
2016-12-25 14:31:52 -05:00
|
|
|
"https://example.com": {
|
|
|
|
Auth: "super_secret_token",
|
|
|
|
Email: "foo@example.com",
|
|
|
|
ServerAddress: "https://example.com",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
s := NewFileStore(f)
|
|
|
|
err := s.Erase("https://example.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// file store never returns errors, check that the auth config is empty
|
|
|
|
a, err := s.Get("https://example.com")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if a.Auth != "" {
|
|
|
|
t.Fatalf("expected empty auth token, got %s", a.Auth)
|
|
|
|
}
|
|
|
|
if a.Email != "" {
|
|
|
|
t.Fatalf("expected empty email, got %s", a.Email)
|
|
|
|
}
|
|
|
|
}
|