Files
WeKnora/cli/internal/cmdutil/jsonflags_test.go
T
nullkey c87e35b34b chore(cli): polish + docs sync + pre-PR audit fixes
Code-reuse polish (post-implementation review pass):
- Extract text.OneLine(maxWidth, s) helper combining preview-row
  normalization (newline/CR/tab → space) with text.Truncate's
  UTF-8-safe truncation. Replaces agent/view.go truncate1Line (ASCII
  '...' + byte-slice CJK-unsafe) and chunk/list.go singleLine.
- Lift cmdutil.OpenInput(path) for the '-' = stdin / else os.Open
  pattern shared across agent create/edit and the api command.
  Replaces agent/create.go's private openInput.
- Strip inline doc-spec parentheticals from source comments — those
  belong in commit messages and project docs, not in source where
  they rot.

Pre-PR audit fixes:
- doc upload: reject `--metadata` paired with `--from-url` as
  input.invalid_argument up-front (the URL-ingest request type has
  no metadata field server-side, so the pair would otherwise silently
  drop). Long help and CHANGELOG updated to call out the asymmetry.
- doc upload (file path): map sdk.ErrDuplicateFile sentinel to
  resource.already_exists. The sentinel arrives with no "HTTP error <n>:"
  prefix because the SDK short-circuits on file-hash before reading the
  HTTP status, so the previous WrapHTTP fall-through misclassified it
  as network.error with a misleading "check base URL reachability" hint.
  The --from-url branch already handled ErrDuplicateURL this way; this
  closes the asymmetry. Caught by e2e re-upload of an already-ingested
  file; regression test added.
- README exit-10 enumeration adds `agent delete` and `chunk delete`
  (these were missing alongside the v0.5 destructive verbs they were
  meant to gate).

Docs sync:
- cli/README.md: command tree now includes the chunk subtree; adds
  agent / chunk lines to the 5-minute quickstart; adds a "Contributing
  / Reporting issues" section pointing at the repo's SECURITY.md and
  AGENTS.md; drops third-party CLI parallels from the surface
  description.
- cli/AGENTS.md: "Command surface design SOP" gains the
  flag-vs-escape-hatch step. "CRUD command flag canon" renamed to the
  hard-required-flags pattern with the contrast (TTY-prompts-fill)
  defined inline rather than via opaque shorthand.
- cli/CHANGELOG.md: search docs case-sensitivity shift promoted to its
  own #### Breaking changes subsection. MCP doc_list filter count
  corrected from 5 to 6. Drops the bogus go.mod yaml.v3 entry (yaml.v3
  was already a dependency on main; v0.5 added zero go.mod lines).
  Replaces internal-Go identifiers (fuzzyTime, NoOptDefVal) with
  user-language and drops the § section-symbol jargon.
2026-05-16 16:56:33 +08:00

191 lines
5.2 KiB
Go

package cmdutil_test
import (
"bytes"
"errors"
"strings"
"testing"
"github.com/spf13/cobra"
"github.com/Tencent/WeKnora/cli/internal/cmdutil"
)
var testFields = []string{"id", "name", "kb_id", "updated_at"}
func newTestCmd(t *testing.T, captured **cmdutil.JSONOptions) *cobra.Command {
t.Helper()
cmd := &cobra.Command{
Use: "test",
SilenceErrors: true,
SilenceUsage: true,
RunE: func(c *cobra.Command, args []string) error {
opts, err := cmdutil.CheckJSONFlags(c)
if err != nil {
return err
}
*captured = opts
return nil
},
}
cmdutil.AddJSONFlags(cmd, testFields)
return cmd
}
func TestAddJSONFlags_BareYieldsEnabledOptsWithNoFields(t *testing.T) {
// `--json` bare → Enabled() with empty Fields → caller emits full payload.
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs([]string{"--json"})
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
if err := cmd.Execute(); err != nil {
t.Fatalf("Execute() err = %v", err)
}
if !captured.Enabled() {
t.Fatalf("expected Enabled, got nil")
}
if len(captured.Fields) != 0 {
t.Errorf("bare --json must produce empty Fields, got %v", captured.Fields)
}
}
func TestAddJSONFlags_FieldsFlagParsing(t *testing.T) {
// NoOptDefVal sentinel means the `=` form is required for value passing.
// Space form `--json id,name` parses as bare + positional; bare `--json`
// (no value) is reserved as a shortcut for the unfiltered payload.
cases := []struct {
args []string
want []string
}{
{[]string{"--json=id,name"}, []string{"id", "name"}},
{[]string{"--json=id,name,kb_id"}, []string{"id", "name", "kb_id"}},
{[]string{"--json=id"}, []string{"id"}},
}
for _, tc := range cases {
t.Run(strings.Join(tc.args, " "), func(t *testing.T) {
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs(tc.args)
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
if err := cmd.Execute(); err != nil {
t.Fatalf("Execute() err = %v", err)
}
if captured == nil {
t.Fatalf("expected JSONOptions captured, got nil")
}
if !equalSlice(captured.Fields, tc.want) {
t.Errorf("Fields = %v, want %v", captured.Fields, tc.want)
}
if captured.JQ != "" {
t.Errorf("JQ should be empty, got %q", captured.JQ)
}
})
}
}
func TestAddJSONFlags_NoFlagsSet(t *testing.T) {
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs([]string{})
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
if err := cmd.Execute(); err != nil {
t.Fatalf("Execute() err = %v", err)
}
if captured != nil {
t.Errorf("expected nil JSONOptions for human mode, got %+v", captured)
}
}
func TestAddJSONFlags_JQWithoutJSON(t *testing.T) {
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs([]string{"--jq", ".data.items[]"})
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
err := cmd.Execute()
if err == nil {
t.Fatalf("expected mutual-dep error, got nil")
}
want := "cannot use `--jq` without specifying `--json`"
if err.Error() != want {
t.Errorf("wrong message.\nwant: %q\ngot: %q", want, err.Error())
}
// Must NOT be a FlagError - gh emits this as a plain error so exit
// code stays 1, not 2.
var fe *cmdutil.FlagError
if errors.As(err, &fe) {
t.Errorf("error should not be FlagError; gh treats this as exit 1")
}
}
func TestAddJSONFlags_JQWithJSON(t *testing.T) {
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs([]string{"--json=id,name", "--jq", ".data.items[0].id"})
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
if err := cmd.Execute(); err != nil {
t.Fatalf("Execute() err = %v", err)
}
if captured == nil {
t.Fatalf("expected JSONOptions, got nil")
}
if !equalSlice(captured.Fields, []string{"id", "name"}) {
t.Errorf("Fields = %v, want [id name]", captured.Fields)
}
if captured.JQ != ".data.items[0].id" {
t.Errorf("JQ = %q, want %q", captured.JQ, ".data.items[0].id")
}
}
func TestAddJSONFlags_JQShortFlag(t *testing.T) {
// gh uses -q as shorthand for --jq.
var captured *cmdutil.JSONOptions
cmd := newTestCmd(t, &captured)
cmd.SetArgs([]string{"--json=id", "-q", ".data"})
cmd.SetOut(&bytes.Buffer{})
cmd.SetErr(&bytes.Buffer{})
if err := cmd.Execute(); err != nil {
t.Fatalf("Execute() err = %v", err)
}
if captured == nil || captured.JQ != ".data" {
t.Errorf("expected JQ=.data, got %+v", captured)
}
}
func TestAddJSONFlags_HelpListsFields(t *testing.T) {
cmd := &cobra.Command{Use: "test", Short: "A test command"}
cmdutil.AddJSONFlags(cmd, []string{"name", "id", "updated_at"})
if !strings.Contains(cmd.Long, "JSON fields available") {
t.Errorf("expected help to include 'JSON fields available'; got Long=%q", cmd.Long)
}
// Fields should appear alphabetically sorted.
idAt := strings.Index(cmd.Long, "id")
nameAt := strings.Index(cmd.Long, "name")
updatedAt := strings.Index(cmd.Long, "updated_at")
if !(idAt < nameAt && nameAt < updatedAt) {
t.Errorf("fields not sorted in Long: idAt=%d nameAt=%d updatedAt=%d", idAt, nameAt, updatedAt)
}
}
func equalSlice(a, b []string) bool {
if len(a) != len(b) {
return false
}
for i := range a {
if a[i] != b[i] {
return false
}
}
return true
}