Files
ragflow/internal/agent/audio/tts_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

120 lines
3.4 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 audio
import (
"context"
"errors"
"testing"
)
// TestStubSynth_EmptyEngine: an empty engine returns
// ErrTTSEngineNotConfigured (the deferred-state sentinel).
func TestStubSynth_EmptyEngine(t *testing.T) {
// Ensure the stub is installed (in case a previous test
// registered a different one).
SetSynthesizer(nil)
synth := GetSynthesizer()
_, err := synth.Synthesize(context.Background(), SynthesizeRequest{
Engine: EngineEmpty,
Text: "hi",
})
if !errors.Is(err, ErrTTSEngineNotConfigured) {
t.Errorf("got %v, want ErrTTSEngineNotConfigured", err)
}
}
// TestStubSynth_UnknownEngine: a non-empty unknown engine
// returns ErrTTSUnsupportedEngine.
func TestStubSynth_UnknownEngine(t *testing.T) {
SetSynthesizer(nil)
synth := GetSynthesizer()
_, err := synth.Synthesize(context.Background(), SynthesizeRequest{
Engine: Engine("unknown-engine"),
Text: "hi",
})
if !errors.Is(err, ErrTTSUnsupportedEngine) {
t.Errorf("got %v, want ErrTTSUnsupportedEngine", err)
}
}
// TestSetSynthesizer_Roundtrip: a custom synthesizer set via
// SetSynthesizer is returned by GetSynthesizer.
func TestSetSynthesizer_Roundtrip(t *testing.T) {
var called bool
custom := &fakeSynth{called: &called}
SetSynthesizer(custom)
defer SetSynthesizer(nil)
got := GetSynthesizer()
if got != custom {
t.Fatalf("synthesizer not registered")
}
resp, err := got.Synthesize(context.Background(), SynthesizeRequest{
Engine: EngineGTTS,
Text: "hi",
})
if err != nil {
t.Fatalf("Synthesize: %v", err)
}
if !called {
t.Errorf("custom Synthesize not called")
}
if string(resp.Audio) != "fake" {
t.Errorf("audio bytes: got %q, want %q", string(resp.Audio), "fake")
}
}
// TestSetSynthesizer_NilRevertsToStub: passing a nil
// synthesizer reverts to the default stub. (The legacy
// InstallShellSynthesizer was removed; its invented
// --engine --text --voice --lang protocol didn't match any real
// TTS binary. See tts_design.md.)
func TestSetSynthesizer_NilRevertsToStub(t *testing.T) {
var called bool
SetSynthesizer(&fakeSynth{called: &called})
SetSynthesizer(nil)
if _, ok := GetSynthesizer().(stubSynthesizer); !ok {
t.Errorf("expected stub to remain after nil SetSynthesizer")
}
}
// TestEngineConstants: the Engine constants match the Python
// DSL values.
func TestEngineConstants(t *testing.T) {
if EngineGTTS != "gtts" {
t.Errorf("EngineGTTS=%q, want 'gtts'", EngineGTTS)
}
if EngineEdge != "edge-tts" {
t.Errorf("EngineEdge=%q, want 'edge-tts'", EngineEdge)
}
if EngineEmpty != "" {
t.Errorf("EngineEmpty=%q, want ''", EngineEmpty)
}
}
type fakeSynth struct {
called *bool
}
func (f *fakeSynth) Synthesize(_ context.Context, _ SynthesizeRequest) (*SynthesizeResponse, error) {
*f.called = true
return &SynthesizeResponse{
Audio: []byte("fake"),
MediaType: "audio/mpeg",
}, nil
}