Files
WeKnora/cli/cmd/root_unknown_subcommand_test.go
nullkey 6f8b825f5f feat(cli): agent-first WeKnora CLI
The `weknora` command-line client for the WeKnora RAG server. Full command
surface: kb / doc / chunk / session / message / agent / model / search / chat /
auth / profile / link / api / mcp / skills / config / doctor / schema /
exit-codes.

Agent-first wire contract: JSON envelope by default, typed error codes mapped to
stable exit codes, error.retry_argv / retryable / partial-failure status,
global --dry-run preview, the exit-10 confirmation protocol for writes, and
control/ANSI/Bidi input hygiene. Stateless env-credential auth
(WEKNORA_API_KEY / WEKNORA_TOKEN + WEKNORA_HOST) for headless/CI/agent use.
A curated read-only MCP tool surface (`mcp serve`) and embedded Agent Skills
(`skills install`). Extensive unit + contract-golden tests and CI.
2026-07-06 22:53:01 +08:00

55 lines
1.5 KiB
Go

package cmd
import (
"bytes"
"strings"
"testing"
"github.com/Tencent/WeKnora/cli/internal/cmdutil"
)
// TestAgentInvoke_NowReturnsUnknownSubcommand verifies the deleted v0.6
// command emits a typed envelope rather than cobra's free-form exit-2 prose.
func TestAgentInvoke_NowReturnsUnknownSubcommand(t *testing.T) {
root := NewRootCmd(cmdutil.New())
root.SetArgs([]string{"agent", "invoke", "ag_x", "q"})
root.SetOut(&bytes.Buffer{})
root.SetErr(&bytes.Buffer{})
err := root.Execute()
ce := cmdutil.AsError(err)
if ce == nil || ce.Code != cmdutil.CodeInputUnknownSubcommand {
t.Errorf("expected CodeInputUnknownSubcommand, got %v", err)
}
}
func TestUnknownSubcommand_EmitsTypedEnvelope(t *testing.T) {
t.Cleanup(func() { cmdutil.SetFormatMode("") })
root := NewRootCmd(cmdutil.New())
var stderr bytes.Buffer
root.SetErr(&stderr)
root.SetArgs([]string{"fooo"})
err := root.Execute()
if err == nil {
t.Fatal("expected unknown-subcommand error, got nil")
}
// Force JSON mode for PrintError regardless of how PersistentPreRunE
// resolved it during the test invocation (no TTY in test buffer).
cmdutil.SetFormatMode("json")
mapped := MapCobraError(err)
cmdutil.PrintError(&stderr, mapped)
got := stderr.String()
if !strings.Contains(got, `"type":"input.unknown_subcommand"`) {
t.Errorf("expected typed code; got %q", got)
}
if !strings.Contains(got, `"available":[`) {
t.Errorf("expected detail.available[]; got %q", got)
}
if !strings.Contains(got, `"retry_argv":["weknora","--help"]`) {
t.Errorf("expected retry_argv; got %q", got)
}
}