mirror of
https://github.com/Tencent/WeKnora.git
synced 2026-09-01 14:53:07 +08:00
0e081aec5c
Operability surface and the bulk of the jopts→fopts migration: * --log-level error|warn|info|debug + WEKNORA_LOG_LEVEL env, wired to the SDK via client.SetDebugLevel. Invalid --log-level returns FlagError (exit 2). * kb status <kb-id> / kb check <kb-id> verb split (1 HTTP vs 1+N for failed_count aggregation). * agent status <agent-id> / agent check <agent-id> verb split (probes kb_scope_all_reachable via 1+N HTTP). * kb create <name> positional (matches agent create). * Positional id help strings namespaced (<kb-id> / <agent-id>). * All auth / context / link / doctor / kb / agent CRUD commands migrated to the FormatOptions API. * root.go Execute(ctx) takes a context so signal-cancellation propagates via cmd.Context() into long-running commands. * Pagination termination uses len(accum) >= total (not page*pageSize) so server-capped page sizes do not truncate aggregations.
217 lines
8.6 KiB
Go
217 lines
8.6 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/Tencent/WeKnora/cli/internal/cmdutil"
|
|
"github.com/Tencent/WeKnora/cli/internal/config"
|
|
"github.com/Tencent/WeKnora/cli/internal/iostreams"
|
|
"github.com/Tencent/WeKnora/cli/internal/prompt"
|
|
"github.com/Tencent/WeKnora/cli/internal/secrets"
|
|
"github.com/Tencent/WeKnora/cli/internal/testutil"
|
|
sdk "github.com/Tencent/WeKnora/client"
|
|
)
|
|
|
|
// fakeRefreshService scripts a RefreshToken response.
|
|
type fakeRefreshService struct {
|
|
resp *sdk.RefreshTokenResponse
|
|
err error
|
|
gotTok string
|
|
}
|
|
|
|
func (f *fakeRefreshService) RefreshToken(_ context.Context, refreshToken string) (*sdk.RefreshTokenResponse, error) {
|
|
f.gotTok = refreshToken
|
|
return f.resp, f.err
|
|
}
|
|
|
|
// stubSvc returns a closure conforming to the refresherFor signature; it
|
|
// ignores host since the fake doesn't talk to the network.
|
|
func stubSvc(s cmdutil.Refresher) func(string) cmdutil.Refresher {
|
|
return func(string) cmdutil.Refresher { return s }
|
|
}
|
|
|
|
func newRefreshFactory(t *testing.T, cfg *config.Config, store *secrets.MemStore) *cmdutil.Factory {
|
|
t.Helper()
|
|
testutil.XDGTempDir(t)
|
|
require.NoError(t, config.Save(cfg))
|
|
return &cmdutil.Factory{
|
|
Config: func() (*config.Config, error) { return config.Load() },
|
|
Client: func() (*sdk.Client, error) { panic("client") },
|
|
Prompter: func() prompt.Prompter { return prompt.AgentPrompter{} },
|
|
Secrets: func() (secrets.Store, error) { return store, nil },
|
|
}
|
|
}
|
|
|
|
func TestRefresh_Happy(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("prod", "access", "old-access"))
|
|
require.NoError(t, store.Set("prod", "refresh", "old-refresh"))
|
|
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{
|
|
"prod": {
|
|
Host: "https://kb.example.com",
|
|
TokenRef: "mem://prod/access",
|
|
RefreshRef: "mem://prod/refresh",
|
|
User: "alice@example.com",
|
|
},
|
|
},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
svc := &fakeRefreshService{resp: &sdk.RefreshTokenResponse{
|
|
Success: true,
|
|
AccessToken: "new-access",
|
|
RefreshToken: "new-refresh",
|
|
}}
|
|
require.NoError(t, runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(svc)))
|
|
|
|
assert.Equal(t, "old-refresh", svc.gotTok, "must pass stored refresh token to SDK")
|
|
gotAccess, _ := store.Get("prod", "access")
|
|
gotRefresh, _ := store.Get("prod", "refresh")
|
|
assert.Equal(t, "new-access", gotAccess)
|
|
assert.Equal(t, "new-refresh", gotRefresh)
|
|
}
|
|
|
|
func TestRefresh_NamedContext(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("staging", "refresh", "stg-refresh"))
|
|
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{
|
|
"prod": {Host: "https://prod", TokenRef: "mem://prod/access", RefreshRef: "mem://prod/refresh"},
|
|
"staging": {Host: "https://stg", TokenRef: "mem://staging/access", RefreshRef: "mem://staging/refresh"},
|
|
},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
svc := &fakeRefreshService{resp: &sdk.RefreshTokenResponse{
|
|
Success: true, AccessToken: "new-stg-access", RefreshToken: "new-stg-refresh",
|
|
}}
|
|
require.NoError(t, runRefresh(context.Background(), &RefreshOptions{Name: "staging"}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(svc)))
|
|
|
|
assert.Equal(t, "stg-refresh", svc.gotTok, "--name=staging must refresh the staging context, not current")
|
|
// current is untouched
|
|
if v, _ := store.Get("prod", "access"); v != "" {
|
|
t.Errorf("prod must not have been touched, got %q", v)
|
|
}
|
|
}
|
|
|
|
func TestRefresh_NoCurrentContext(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
f := newRefreshFactory(t, &config.Config{}, secrets.NewMemStore())
|
|
err := runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(&fakeRefreshService{}))
|
|
require.Error(t, err)
|
|
var typed *cmdutil.Error
|
|
require.ErrorAs(t, err, &typed)
|
|
assert.Equal(t, cmdutil.CodeAuthUnauthenticated, typed.Code)
|
|
}
|
|
|
|
func TestRefresh_APIKeyContext(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("ci", "api_key", "sk-123"))
|
|
cfg := &config.Config{
|
|
CurrentContext: "ci",
|
|
Contexts: map[string]config.Context{"ci": {Host: "https://kb", APIKeyRef: "mem://ci/api_key"}},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
err := runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(&fakeRefreshService{}))
|
|
require.Error(t, err)
|
|
var typed *cmdutil.Error
|
|
require.ErrorAs(t, err, &typed)
|
|
assert.Equal(t, cmdutil.CodeInputInvalidArgument, typed.Code)
|
|
assert.Contains(t, typed.Hint, "api-key", "hint should explain api-key contexts cannot be refreshed")
|
|
}
|
|
|
|
func TestRefresh_NoRefreshTokenStored(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{
|
|
"prod": {Host: "https://kb", TokenRef: "mem://prod/access", RefreshRef: "mem://prod/refresh"},
|
|
},
|
|
}
|
|
// MemStore is empty - RefreshRef points to a slot that doesn't exist.
|
|
f := newRefreshFactory(t, cfg, secrets.NewMemStore())
|
|
err := runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(&fakeRefreshService{}))
|
|
require.Error(t, err)
|
|
var typed *cmdutil.Error
|
|
require.ErrorAs(t, err, &typed)
|
|
assert.Equal(t, cmdutil.CodeAuthTokenExpired, typed.Code)
|
|
assert.Contains(t, typed.Hint, "auth login")
|
|
}
|
|
|
|
func TestRefresh_ServerRefused(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("prod", "refresh", "stale-refresh"))
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{"prod": {Host: "https://kb", TokenRef: "mem://prod/access", RefreshRef: "mem://prod/refresh"}},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
svc := &fakeRefreshService{resp: &sdk.RefreshTokenResponse{Success: false, Message: "refresh token expired"}}
|
|
err := runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(svc))
|
|
require.Error(t, err)
|
|
var typed *cmdutil.Error
|
|
require.ErrorAs(t, err, &typed)
|
|
assert.Equal(t, cmdutil.CodeAuthTokenExpired, typed.Code)
|
|
assert.Contains(t, typed.Hint, "auth login")
|
|
// stored access must NOT have been overwritten with empty
|
|
if v, _ := store.Get("prod", "access"); v == "" {
|
|
// Was never set in this test, that's fine - main thing is no panic.
|
|
_ = v
|
|
}
|
|
}
|
|
|
|
func TestRefresh_TransportError(t *testing.T) {
|
|
iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("prod", "refresh", "ok-refresh"))
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{"prod": {Host: "https://kb", TokenRef: "mem://prod/access", RefreshRef: "mem://prod/refresh"}},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
svc := &fakeRefreshService{err: errors.New("connection reset")}
|
|
err := runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatText}, f, stubSvc(svc))
|
|
require.Error(t, err)
|
|
var typed *cmdutil.Error
|
|
require.ErrorAs(t, err, &typed)
|
|
// network/transport classified as network.error (mirrors auth login's
|
|
// CodeAuthBadCredential mapping pattern; here we keep network errors
|
|
// distinct since auth/refresh treats them as retryable).
|
|
assert.Equal(t, cmdutil.CodeNetworkError, typed.Code)
|
|
}
|
|
|
|
func TestRefresh_JSONOutput(t *testing.T) {
|
|
out, _ := iostreams.SetForTest(t)
|
|
store := secrets.NewMemStore()
|
|
require.NoError(t, store.Set("prod", "refresh", "ok-refresh"))
|
|
cfg := &config.Config{
|
|
CurrentContext: "prod",
|
|
Contexts: map[string]config.Context{"prod": {Host: "https://kb", TokenRef: "mem://prod/access", RefreshRef: "mem://prod/refresh"}},
|
|
}
|
|
f := newRefreshFactory(t, cfg, store)
|
|
svc := &fakeRefreshService{resp: &sdk.RefreshTokenResponse{Success: true, AccessToken: "a", RefreshToken: "r"}}
|
|
require.NoError(t, runRefresh(context.Background(), &RefreshOptions{}, &cmdutil.FormatOptions{Mode: cmdutil.FormatJSON}, f, stubSvc(svc)))
|
|
|
|
body := out.String()
|
|
// payload must not leak the actual token values.
|
|
assert.NotContains(t, body, "ok-refresh", "output must not leak refresh token")
|
|
assert.NotContains(t, body, "\"a\"", "output must not leak the new access token")
|
|
assert.NotContains(t, body, "\"r\"", "output must not leak the new refresh token")
|
|
// must mention the context name so agents can confirm what was refreshed
|
|
assert.True(t, strings.Contains(body, "prod"), "output should reference the refreshed context")
|
|
assert.NotContains(t, body, `"ok":`)
|
|
}
|