Files
ragflow/internal/agent/component/retrieval_swap_test.go
Zhichang Yu e45659868a feat(agent): ship the Go agent canvas port — eino interrupt/resume + Redis check-pointing (#16035)
Replaces the Python agent canvas runtime with a Go implementation that
runs inside `cmd/server_main`.

The canvas compiles into an eino Workflow that pauses on wait-for-user
via native Interrupt/Resume (no sentinel flag) and resumes from a
Redis-backed CheckPointStore.

All 21 Python agent components and ~35 tools are ported with functional
parity.

Sandbox providers now read their JSON config from the admin-panel
system_settings table with env fallback.

234 files / +35,413 / -6,111. All Go files are gofmt-clean (CI gate
added); drops the v2 DSL E2E step and the gap-analysis plan (both
redundant after the port ships).

## Type of change

- [x] Refactoring
- [x] New feature
- [x] Bug fix

🤖 Generated with [Claude Code](https://claude.com/claude-code)

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-06-17 13:24:03 +08:00

124 lines
4.2 KiB
Go

//
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package component
import (
"context"
"strings"
"testing"
agenttool "ragflow/internal/agent/tool"
)
// TestRetrieval_DelegatesToRealWrapper pins the Universe A →
// Universe B delegation for `Retrieval` and `SearchMyDataset`:
// with the simple retrieval service installed, an Invoke must
// surface a non-empty `formalized_content` — that's the contract
// the stub-only path no longer satisfies.
func TestRetrieval_DelegatesToRealWrapper(t *testing.T) {
t.Parallel()
// Install the synthetic service that returns 3 deterministic
// chunks per query. Restore the stub on cleanup so the rest of
// the suite stays unaffected.
prev := agenttool.GetRetrievalService()
agenttool.SetSimpleRetrievalService()
t.Cleanup(func() { agenttool.SetRetrievalService(prev) })
c, err := New(componentNameRetrieval, map[string]any{
"kb_ids": []any{"kb-1", "kb-2"},
"top_n": 3,
"similarity_threshold": 0.1,
})
if err != nil {
t.Fatalf("New(Retrieval) errored: %v", err)
}
// The component must report the canonical Retrieval name (the
// wrapper's Name() returns "Retrieval", distinct from the alias
// "SearchMyDataset" which maps to the same factory).
if got := c.Name(); got != componentNameRetrieval {
t.Errorf("Retrieval c.Name() = %q, want %q", got, componentNameRetrieval)
}
out, err := c.Invoke(context.Background(), map[string]any{"query": "ragflow"})
if err != nil {
t.Fatalf("Retrieval Invoke errored: %v", err)
}
fc, _ := out["formalized_content"].(string)
if fc == "" {
t.Fatalf("expected non-empty formalized_content from real wrapper; got empty (out=%v)", out)
}
if !strings.Contains(fc, "ragflow") {
t.Errorf("formalized_content %q does not echo the query", fc)
}
}
// TestSearchMyDataset_AliasDelegatesToRealWrapper verifies the
// SearchMyDataset → Retrieval alias resolves to the real wrapper
// (not the stub).
func TestSearchMyDataset_AliasDelegatesToRealWrapper(t *testing.T) {
t.Parallel()
prev := agenttool.GetRetrievalService()
agenttool.SetSimpleRetrievalService()
t.Cleanup(func() { agenttool.SetRetrievalService(prev) })
c, err := New("SearchMyDataset", nil)
if err != nil {
t.Fatalf("New(SearchMyDataset) errored: %v", err)
}
// The wrapper's Name() returns the canonical "Retrieval"; the
// alias lookup by "SearchMyDataset" still resolves.
if got := c.Name(); got != componentNameRetrieval {
t.Errorf("SearchMyDataset alias c.Name() = %q, want %q (canonical)", got, componentNameRetrieval)
}
out, err := c.Invoke(context.Background(), map[string]any{"query": "kb"})
if err != nil {
t.Fatalf("SearchMyDataset Invoke errored: %v", err)
}
if fc, _ := out["formalized_content"].(string); fc == "" {
t.Fatalf("expected non-empty formalized_content from real wrapper; got empty (out=%v)", out)
}
}
// TestRetrieval_InputsSurfaceMatchesStub guards against accidental
// regression in the Inputs() description surface when swapping from
// the stub to the wrapper. The v1 DSL fixture set uses these keys
// (kb_ids, similarity_threshold, keywords_similarity_weight, top_n,
// top_k, rerank_id, empty_response) for type checking and form
// rendering; removing or renaming one would break the fixture.
func TestRetrieval_InputsSurfaceMatchesStub(t *testing.T) {
t.Parallel()
stub, err := NewRetrievalStub(nil)
if err != nil {
t.Fatalf("NewRetrievalStub: %v", err)
}
inputs := stub.Inputs()
for _, key := range []string{
"kb_ids", "similarity_threshold", "keywords_similarity_weight",
"top_n", "top_k", "rerank_id", "empty_response",
} {
if _, ok := inputs[key]; !ok {
t.Errorf("Inputs() missing key %q (v1 fixture compatibility)", key)
}
}
}