mirror of https://github.com/databricks/cli.git
Compare commits
26 Commits
facbd27774
...
20aea8fd03
Author | SHA1 | Date |
---|---|---|
Richard Nordström | 20aea8fd03 | |
dependabot[bot] | 4b069bb6e1 | |
Richard Nordström | ca08796f77 | |
Richard Nordström | fc23aa584d | |
Richard Nordström | 6af6b55832 | |
Richard Nordström | 865964e029 | |
Richard Nordström | 41999fbe87 | |
Richard Nordström | d2bead3fe6 | |
Richard Nordström | 11c37673a6 | |
Richard Nordström | 18d3fea34e | |
Richard Nordström | b7ff019b60 | |
Richard Nordström | bb35ca090f | |
Richard Nordström | d037ec32a1 | |
Richard Nordström | 89d3b1a4df | |
Richard Nordström | 37067ef933 | |
Richard Nordström | 171c3fdd75 | |
Richard Nordström | dc44dbd667 | |
Richard Nordström | b044a6c0e0 | |
Richard Nordström | 7636c55ba9 | |
Richard Nordström | e88fd0a5c0 | |
Richard Nordström | 6c32a0df7a | |
Richard Nordström | 7eca34a7b2 | |
Richard Nordström | 6277cf24c6 | |
Richard Nordström | 6a8b2f452f | |
Richard Nordström | 712e2919f5 | |
Richard Nordström | 882ccba0f5 |
|
@ -31,6 +31,7 @@ GCP: https://docs.gcp.databricks.com/dev-tools/auth/index.html`,
|
||||||
cmd.AddCommand(newProfilesCommand())
|
cmd.AddCommand(newProfilesCommand())
|
||||||
cmd.AddCommand(newTokenCommand(&perisistentAuth))
|
cmd.AddCommand(newTokenCommand(&perisistentAuth))
|
||||||
cmd.AddCommand(newDescribeCommand())
|
cmd.AddCommand(newDescribeCommand())
|
||||||
|
cmd.AddCommand(newLogoutCommand(&perisistentAuth))
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,110 @@
|
||||||
|
package auth
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io/fs"
|
||||||
|
|
||||||
|
"github.com/databricks/cli/libs/auth"
|
||||||
|
"github.com/databricks/cli/libs/auth/cache"
|
||||||
|
"github.com/databricks/cli/libs/cmdio"
|
||||||
|
"github.com/databricks/cli/libs/databrickscfg/profile"
|
||||||
|
"github.com/databricks/databricks-sdk-go/config"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
type logoutSession struct {
|
||||||
|
profile string
|
||||||
|
file config.File
|
||||||
|
persistentAuth *auth.PersistentAuth
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *logoutSession) load(ctx context.Context, profileName string, persistentAuth *auth.PersistentAuth) error {
|
||||||
|
l.profile = profileName
|
||||||
|
l.persistentAuth = persistentAuth
|
||||||
|
iniFile, err := profile.DefaultProfiler.Get(ctx)
|
||||||
|
if errors.Is(err, fs.ErrNotExist) {
|
||||||
|
return err
|
||||||
|
} else if err != nil {
|
||||||
|
return fmt.Errorf("cannot parse config file: %w", err)
|
||||||
|
}
|
||||||
|
l.file = *iniFile
|
||||||
|
if err := l.setHostAndAccountIdFromProfile(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *logoutSession) setHostAndAccountIdFromProfile() error {
|
||||||
|
sectionMap, err := l.getConfigSectionMap()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if sectionMap["host"] == "" {
|
||||||
|
return fmt.Errorf("no host configured for profile %s", l.profile)
|
||||||
|
}
|
||||||
|
l.persistentAuth.Host = sectionMap["host"]
|
||||||
|
l.persistentAuth.AccountID = sectionMap["account_id"]
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *logoutSession) getConfigSectionMap() (map[string]string, error) {
|
||||||
|
section, err := l.file.GetSection(l.profile)
|
||||||
|
if err != nil {
|
||||||
|
return map[string]string{}, fmt.Errorf("profile does not exist in config file: %w", err)
|
||||||
|
}
|
||||||
|
return section.KeysHash(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// clear token from ~/.databricks/token-cache.json
|
||||||
|
func (l *logoutSession) clearTokenCache(ctx context.Context) error {
|
||||||
|
return l.persistentAuth.ClearToken(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
func newLogoutCommand(persistentAuth *auth.PersistentAuth) *cobra.Command {
|
||||||
|
cmd := &cobra.Command{
|
||||||
|
Use: "logout [PROFILE]",
|
||||||
|
Short: "Logout from specified profile",
|
||||||
|
Long: "Removes the OAuth token from the token-cache",
|
||||||
|
}
|
||||||
|
|
||||||
|
cmd.RunE = func(cmd *cobra.Command, args []string) error {
|
||||||
|
ctx := cmd.Context()
|
||||||
|
profileNameFromFlag := cmd.Flag("profile").Value.String()
|
||||||
|
// If both [PROFILE] and --profile are provided, return an error.
|
||||||
|
if len(args) > 0 && profileNameFromFlag != "" {
|
||||||
|
return fmt.Errorf("please only provide a profile as an argument or a flag, not both")
|
||||||
|
}
|
||||||
|
// Determine the profile name from either args or the flag.
|
||||||
|
profileName := profileNameFromFlag
|
||||||
|
if len(args) > 0 {
|
||||||
|
profileName = args[0]
|
||||||
|
}
|
||||||
|
// If the user has not specified a profile name, prompt for one.
|
||||||
|
if profileName == "" {
|
||||||
|
var err error
|
||||||
|
profileName, err = promptForProfile(ctx, persistentAuth.ProfileName())
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defer persistentAuth.Close()
|
||||||
|
logoutSession := &logoutSession{}
|
||||||
|
err := logoutSession.load(ctx, profileName, persistentAuth)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = logoutSession.clearTokenCache(ctx)
|
||||||
|
if err != nil {
|
||||||
|
if errors.Is(err, cache.ErrNotConfigured) {
|
||||||
|
// It is OK to not have OAuth configured
|
||||||
|
} else {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cmdio.LogString(ctx, fmt.Sprintf("Profile %s is logged out", profileName))
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return cmd
|
||||||
|
}
|
|
@ -0,0 +1,62 @@
|
||||||
|
package auth
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"path/filepath"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"github.com/databricks/cli/libs/auth"
|
||||||
|
"github.com/databricks/cli/libs/databrickscfg"
|
||||||
|
"github.com/databricks/databricks-sdk-go/config"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestLogout_setHostAndAccountIdFromProfile(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
path := filepath.Join(t.TempDir(), "databrickscfg")
|
||||||
|
|
||||||
|
err := databrickscfg.SaveToProfile(ctx, &config.Config{
|
||||||
|
ConfigFile: path,
|
||||||
|
Profile: "abc",
|
||||||
|
Host: "https://foo",
|
||||||
|
Token: "xyz",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
iniFile, err := config.LoadFile(path)
|
||||||
|
require.NoError(t, err)
|
||||||
|
logout := &logoutSession{
|
||||||
|
profile: "abc",
|
||||||
|
file: *iniFile,
|
||||||
|
persistentAuth: &auth.PersistentAuth{},
|
||||||
|
}
|
||||||
|
err = logout.setHostAndAccountIdFromProfile()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, logout.persistentAuth.Host, "https://foo")
|
||||||
|
assert.Empty(t, logout.persistentAuth.AccountID)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLogout_getConfigSectionMap(t *testing.T) {
|
||||||
|
ctx := context.Background()
|
||||||
|
path := filepath.Join(t.TempDir(), "databrickscfg")
|
||||||
|
|
||||||
|
err := databrickscfg.SaveToProfile(ctx, &config.Config{
|
||||||
|
ConfigFile: path,
|
||||||
|
Profile: "abc",
|
||||||
|
Host: "https://foo",
|
||||||
|
Token: "xyz",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
iniFile, err := config.LoadFile(path)
|
||||||
|
require.NoError(t, err)
|
||||||
|
logout := &logoutSession{
|
||||||
|
profile: "abc",
|
||||||
|
file: *iniFile,
|
||||||
|
persistentAuth: &auth.PersistentAuth{},
|
||||||
|
}
|
||||||
|
configSectionMap, err := logout.getConfigSectionMap()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
assert.Equal(t, configSectionMap["host"], "https://foo")
|
||||||
|
assert.Equal(t, configSectionMap["token"], "xyz")
|
||||||
|
}
|
4
go.mod
4
go.mod
|
@ -27,7 +27,7 @@ require (
|
||||||
golang.org/x/mod v0.22.0
|
golang.org/x/mod v0.22.0
|
||||||
golang.org/x/oauth2 v0.24.0
|
golang.org/x/oauth2 v0.24.0
|
||||||
golang.org/x/sync v0.9.0
|
golang.org/x/sync v0.9.0
|
||||||
golang.org/x/term v0.25.0
|
golang.org/x/term v0.26.0
|
||||||
golang.org/x/text v0.20.0
|
golang.org/x/text v0.20.0
|
||||||
gopkg.in/ini.v1 v1.67.0 // Apache 2.0
|
gopkg.in/ini.v1 v1.67.0 // Apache 2.0
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
|
@ -64,7 +64,7 @@ require (
|
||||||
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
go.opentelemetry.io/otel/trace v1.24.0 // indirect
|
||||||
golang.org/x/crypto v0.24.0 // indirect
|
golang.org/x/crypto v0.24.0 // indirect
|
||||||
golang.org/x/net v0.26.0 // indirect
|
golang.org/x/net v0.26.0 // indirect
|
||||||
golang.org/x/sys v0.26.0 // indirect
|
golang.org/x/sys v0.27.0 // indirect
|
||||||
golang.org/x/time v0.5.0 // indirect
|
golang.org/x/time v0.5.0 // indirect
|
||||||
google.golang.org/api v0.182.0 // indirect
|
google.golang.org/api v0.182.0 // indirect
|
||||||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e // indirect
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e // indirect
|
||||||
|
|
|
@ -212,10 +212,10 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w
|
||||||
golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
|
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
|
||||||
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||||
golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24=
|
golang.org/x/term v0.26.0 h1:WEQa6V3Gja/BhNxg540hBip/kkaYtRg3cxg4oXSw4AU=
|
||||||
golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M=
|
golang.org/x/term v0.26.0/go.mod h1:Si5m1o57C5nBNQo5z1iq+XDijt21BDBDp2bK0QI8e3E=
|
||||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
|
golang.org/x/text v0.20.0 h1:gK/Kv2otX8gz+wn7Rmb3vT96ZwuoxnQlY+HlJVj7Qug=
|
||||||
|
|
|
@ -9,6 +9,7 @@ import (
|
||||||
type TokenCache interface {
|
type TokenCache interface {
|
||||||
Store(key string, t *oauth2.Token) error
|
Store(key string, t *oauth2.Token) error
|
||||||
Lookup(key string) (*oauth2.Token, error)
|
Lookup(key string) (*oauth2.Token, error)
|
||||||
|
Delete(key string) error
|
||||||
}
|
}
|
||||||
|
|
||||||
var tokenCache int
|
var tokenCache int
|
||||||
|
|
|
@ -52,11 +52,7 @@ func (c *FileTokenCache) Store(key string, t *oauth2.Token) error {
|
||||||
c.Tokens = map[string]*oauth2.Token{}
|
c.Tokens = map[string]*oauth2.Token{}
|
||||||
}
|
}
|
||||||
c.Tokens[key] = t
|
c.Tokens[key] = t
|
||||||
raw, err := json.MarshalIndent(c, "", " ")
|
return c.write()
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("marshal: %w", err)
|
|
||||||
}
|
|
||||||
return os.WriteFile(c.fileLocation, raw, ownerReadWrite)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *FileTokenCache) Lookup(key string) (*oauth2.Token, error) {
|
func (c *FileTokenCache) Lookup(key string) (*oauth2.Token, error) {
|
||||||
|
@ -73,6 +69,24 @@ func (c *FileTokenCache) Lookup(key string) (*oauth2.Token, error) {
|
||||||
return t, nil
|
return t, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *FileTokenCache) Delete(key string) error {
|
||||||
|
err := c.load()
|
||||||
|
if errors.Is(err, fs.ErrNotExist) {
|
||||||
|
return ErrNotConfigured
|
||||||
|
} else if err != nil {
|
||||||
|
return fmt.Errorf("load: %w", err)
|
||||||
|
}
|
||||||
|
if c.Tokens == nil {
|
||||||
|
c.Tokens = map[string]*oauth2.Token{}
|
||||||
|
}
|
||||||
|
_, ok := c.Tokens[key]
|
||||||
|
if !ok {
|
||||||
|
return ErrNotConfigured
|
||||||
|
}
|
||||||
|
delete(c.Tokens, key)
|
||||||
|
return c.write()
|
||||||
|
}
|
||||||
|
|
||||||
func (c *FileTokenCache) location() (string, error) {
|
func (c *FileTokenCache) location() (string, error) {
|
||||||
home, err := os.UserHomeDir()
|
home, err := os.UserHomeDir()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -105,4 +119,12 @@ func (c *FileTokenCache) load() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *FileTokenCache) write() error {
|
||||||
|
raw, err := json.MarshalIndent(c, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("marshal: %w", err)
|
||||||
|
}
|
||||||
|
return os.WriteFile(c.fileLocation, raw, ownerReadWrite)
|
||||||
|
}
|
||||||
|
|
||||||
var _ TokenCache = (*FileTokenCache)(nil)
|
var _ TokenCache = (*FileTokenCache)(nil)
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package cache
|
package cache
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
@ -103,3 +104,64 @@ func TestStoreOnDev(t *testing.T) {
|
||||||
// macOS: read-only file system
|
// macOS: read-only file system
|
||||||
assert.Error(t, err)
|
assert.Error(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestStoreAndDeleteKey(t *testing.T) {
|
||||||
|
setup(t)
|
||||||
|
c := &FileTokenCache{}
|
||||||
|
err := c.Store("x", &oauth2.Token{
|
||||||
|
AccessToken: "abc",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
err = c.Store("y", &oauth2.Token{
|
||||||
|
AccessToken: "bcd",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
l := &FileTokenCache{}
|
||||||
|
err = l.Delete("x")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, 1, len(l.Tokens))
|
||||||
|
|
||||||
|
_, err = l.Lookup("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
|
||||||
|
tok, err := l.Lookup("y")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, "bcd", tok.AccessToken)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDeleteKeyNotExist(t *testing.T) {
|
||||||
|
c := &FileTokenCache{
|
||||||
|
Tokens: map[string]*oauth2.Token{},
|
||||||
|
}
|
||||||
|
err := c.Delete("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
|
||||||
|
_, err = c.Lookup("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestWrite(t *testing.T) {
|
||||||
|
tempFile := filepath.Join(t.TempDir(), "token-cache.json")
|
||||||
|
|
||||||
|
tokenMap := map[string]*oauth2.Token{}
|
||||||
|
token := &oauth2.Token{
|
||||||
|
AccessToken: "some-access-token",
|
||||||
|
}
|
||||||
|
tokenMap["test"] = token
|
||||||
|
|
||||||
|
cache := &FileTokenCache{
|
||||||
|
fileLocation: tempFile,
|
||||||
|
Tokens: tokenMap,
|
||||||
|
}
|
||||||
|
|
||||||
|
err := cache.write()
|
||||||
|
assert.NoError(t, err)
|
||||||
|
|
||||||
|
content, err := os.ReadFile(tempFile)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
expected, _ := json.MarshalIndent(&cache, "", " ")
|
||||||
|
assert.Equal(t, content, expected)
|
||||||
|
}
|
||||||
|
|
|
@ -23,4 +23,14 @@ func (i *InMemoryTokenCache) Store(key string, t *oauth2.Token) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Delete implements TokenCache.
|
||||||
|
func (i *InMemoryTokenCache) Delete(key string) error {
|
||||||
|
_, ok := i.Tokens[key]
|
||||||
|
if !ok {
|
||||||
|
return ErrNotConfigured
|
||||||
|
}
|
||||||
|
delete(i.Tokens, key)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var _ TokenCache = (*InMemoryTokenCache)(nil)
|
var _ TokenCache = (*InMemoryTokenCache)(nil)
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/stretchr/testify/require"
|
||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -42,3 +43,40 @@ func TestInMemoryCacheStore(t *testing.T) {
|
||||||
assert.Equal(t, res, token)
|
assert.Equal(t, res, token)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestInMemoryDeleteKey(t *testing.T) {
|
||||||
|
c := &InMemoryTokenCache{
|
||||||
|
Tokens: map[string]*oauth2.Token{},
|
||||||
|
}
|
||||||
|
err := c.Store("x", &oauth2.Token{
|
||||||
|
AccessToken: "abc",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
err = c.Store("y", &oauth2.Token{
|
||||||
|
AccessToken: "bcd",
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
err = c.Delete("x")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, 1, len(c.Tokens))
|
||||||
|
|
||||||
|
_, err = c.Lookup("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
|
||||||
|
tok, err := c.Lookup("y")
|
||||||
|
require.NoError(t, err)
|
||||||
|
assert.Equal(t, "bcd", tok.AccessToken)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestInMemoryDeleteKeyNotExist(t *testing.T) {
|
||||||
|
c := &InMemoryTokenCache{
|
||||||
|
Tokens: map[string]*oauth2.Token{},
|
||||||
|
}
|
||||||
|
err := c.Delete("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
|
||||||
|
_, err = c.Lookup("x")
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
}
|
||||||
|
|
|
@ -144,6 +144,18 @@ func (a *PersistentAuth) Challenge(ctx context.Context) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *PersistentAuth) ClearToken(ctx context.Context) error {
|
||||||
|
if a.Host == "" && a.AccountID == "" {
|
||||||
|
return ErrFetchCredentials
|
||||||
|
}
|
||||||
|
if a.cache == nil {
|
||||||
|
a.cache = cache.GetTokenCache(ctx)
|
||||||
|
}
|
||||||
|
// lookup token identified by host (and possibly the account id)
|
||||||
|
key := a.key()
|
||||||
|
return a.cache.Delete(key)
|
||||||
|
}
|
||||||
|
|
||||||
// This function cleans up the host URL by only retaining the scheme and the host.
|
// This function cleans up the host URL by only retaining the scheme and the host.
|
||||||
// This function thus removes any path, query arguments, or fragments from the URL.
|
// This function thus removes any path, query arguments, or fragments from the URL.
|
||||||
func (a *PersistentAuth) cleanHost() {
|
func (a *PersistentAuth) cleanHost() {
|
||||||
|
|
|
@ -55,6 +55,7 @@ func TestOidcForWorkspace(t *testing.T) {
|
||||||
type tokenCacheMock struct {
|
type tokenCacheMock struct {
|
||||||
store func(key string, t *oauth2.Token) error
|
store func(key string, t *oauth2.Token) error
|
||||||
lookup func(key string) (*oauth2.Token, error)
|
lookup func(key string) (*oauth2.Token, error)
|
||||||
|
delete func(key string) error
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *tokenCacheMock) Store(key string, t *oauth2.Token) error {
|
func (m *tokenCacheMock) Store(key string, t *oauth2.Token) error {
|
||||||
|
@ -71,6 +72,13 @@ func (m *tokenCacheMock) Lookup(key string) (*oauth2.Token, error) {
|
||||||
return m.lookup(key)
|
return m.lookup(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *tokenCacheMock) Delete(key string) error {
|
||||||
|
if m.delete == nil {
|
||||||
|
panic("no deleteKey mock")
|
||||||
|
}
|
||||||
|
return m.delete(key)
|
||||||
|
}
|
||||||
|
|
||||||
func TestLoad(t *testing.T) {
|
func TestLoad(t *testing.T) {
|
||||||
p := &PersistentAuth{
|
p := &PersistentAuth{
|
||||||
Host: "abc",
|
Host: "abc",
|
||||||
|
@ -229,6 +237,52 @@ func TestChallengeFailed(t *testing.T) {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestClearToken(t *testing.T) {
|
||||||
|
p := &PersistentAuth{
|
||||||
|
Host: "abc",
|
||||||
|
AccountID: "xyz",
|
||||||
|
cache: &tokenCacheMock{
|
||||||
|
lookup: func(key string) (*oauth2.Token, error) {
|
||||||
|
assert.Equal(t, "https://abc/oidc/accounts/xyz", key)
|
||||||
|
return &oauth2.Token{}, ErrNotConfigured
|
||||||
|
},
|
||||||
|
delete: func(key string) error {
|
||||||
|
assert.Equal(t, "https://abc/oidc/accounts/xyz", key)
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
defer p.Close()
|
||||||
|
err := p.ClearToken(context.Background())
|
||||||
|
assert.NoError(t, err)
|
||||||
|
key := p.key()
|
||||||
|
_, err = p.cache.Lookup(key)
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestClearTokenNotExist(t *testing.T) {
|
||||||
|
p := &PersistentAuth{
|
||||||
|
Host: "abc",
|
||||||
|
AccountID: "xyz",
|
||||||
|
cache: &tokenCacheMock{
|
||||||
|
lookup: func(key string) (*oauth2.Token, error) {
|
||||||
|
assert.Equal(t, "https://abc/oidc/accounts/xyz", key)
|
||||||
|
return &oauth2.Token{}, ErrNotConfigured
|
||||||
|
},
|
||||||
|
delete: func(key string) error {
|
||||||
|
assert.Equal(t, "https://abc/oidc/accounts/xyz", key)
|
||||||
|
return ErrNotConfigured
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
defer p.Close()
|
||||||
|
err := p.ClearToken(context.Background())
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
key := p.key()
|
||||||
|
_, err = p.cache.Lookup(key)
|
||||||
|
assert.Equal(t, ErrNotConfigured, err)
|
||||||
|
}
|
||||||
|
|
||||||
func TestPersistentAuthCleanHost(t *testing.T) {
|
func TestPersistentAuthCleanHost(t *testing.T) {
|
||||||
for _, tcases := range []struct {
|
for _, tcases := range []struct {
|
||||||
in string
|
in string
|
||||||
|
|
Loading…
Reference in New Issue