// Package component — LLM unit tests. // // Tests use a stub ChatInvoker to avoid the network. The production path // flows through einoChatInvoker + models.NewEinoChatModel + the real // provider driver; here we focus on the component contract: // - inputs → outputs map shape // - json_output parsing // - Stream variant emits the same payload + closes // - error path surfaces invoker errors // - variable reference substitution is the canvas engine's job, not // this component's — we only verify the raw user_prompt is passed // through to the invoker. package component import ( "context" "errors" "slices" "testing" "github.com/cloudwego/eino/schema" ) // stubInvoker is a programmable ChatInvoker used by these tests. type stubInvoker struct { resp *ChatInvokeResponse err error captured *ChatInvokeRequest calls int } func (s *stubInvoker) Invoke(_ context.Context, req ChatInvokeRequest) (*ChatInvokeResponse, error) { s.calls++ cp := req s.captured = &cp if s.err != nil { return nil, s.err } return s.resp, nil } // withStubInvoker swaps the package-level ChatInvoker for the duration of t. func withStubInvoker(t *testing.T, s ChatInvoker) { t.Helper() prev := getDefaultChatInvoker() SetDefaultChatInvoker(s) t.Cleanup(func() { SetDefaultChatInvoker(prev) }) } func TestLLM_Invoke_HappyPath(t *testing.T) { stub := &stubInvoker{resp: &ChatInvokeResponse{Content: "hello", Model: "echo-model", Stopped: true, Tokens: 7}} withStubInvoker(t, stub) c := NewLLMComponent(LLMParam{ModelID: "echo-model"}) out, err := c.Invoke(context.Background(), map[string]any{ "user_prompt": "hi", }) if err != nil { t.Fatalf("Invoke: %v", err) } if got, want := out["content"], "hello"; got != want { t.Errorf("content=%v, want %v", got, want) } if got, want := out["model"], "echo-model"; got != want { t.Errorf("model=%v, want %v", got, want) } if got, want := out["stopped"], true; got != want { t.Errorf("stopped=%v, want %v", got, want) } if stub.calls != 1 { t.Errorf("invoker calls=%d, want 1", stub.calls) } if stub.captured == nil || stub.captured.ModelName != "echo-model" { t.Errorf("ModelName not propagated: %+v", stub.captured) } if len(stub.captured.Messages) != 1 || stub.captured.Messages[0].Role != schema.User || stub.captured.Messages[0].Content != "hi" { t.Errorf("messages not built correctly: %+v", stub.captured.Messages) } } func TestLLM_Invoke_JSONOutput(t *testing.T) { stub := &stubInvoker{resp: &ChatInvokeResponse{Content: `{"k":"v"}`, Model: "echo", Stopped: true}} withStubInvoker(t, stub) c := NewLLMComponent(LLMParam{ModelID: "echo"}) out, err := c.Invoke(context.Background(), map[string]any{ "user_prompt": "give me json", "json_output": true, }) if err != nil { t.Fatalf("Invoke: %v", err) } if got, want := out["content"], `{"k":"v"}`; got != want { t.Errorf("content=%v, want %v", got, want) } parsed, ok := out["json"].(map[string]any) if !ok { t.Fatalf("json output missing or wrong type: %T", out["json"]) } if parsed["k"] != "v" { t.Errorf("json[k]=%v, want v", parsed["k"]) } } func TestLLM_Invoke_SystemAndUser(t *testing.T) { stub := &stubInvoker{resp: &ChatInvokeResponse{Content: "ok", Model: "echo"}} withStubInvoker(t, stub) c := NewLLMComponent(LLMParam{ModelID: "echo"}) _, err := c.Invoke(context.Background(), map[string]any{ "system_prompt": "you are helpful", "user_prompt": "say hi", }) if err != nil { t.Fatalf("Invoke: %v", err) } if got := len(stub.captured.Messages); got != 2 { t.Fatalf("messages=%d, want 2", got) } if stub.captured.Messages[0].Role != schema.System || stub.captured.Messages[0].Content != "you are helpful" { t.Errorf("system msg wrong: %+v", stub.captured.Messages[0]) } if stub.captured.Messages[1].Role != schema.User || stub.captured.Messages[1].Content != "say hi" { t.Errorf("user msg wrong: %+v", stub.captured.Messages[1]) } } func TestLLM_Stream(t *testing.T) { stub := &stubInvoker{resp: &ChatInvokeResponse{Content: "streamed", Model: "echo", Stopped: true}} withStubInvoker(t, stub) c := NewLLMComponent(LLMParam{ModelID: "echo"}) ch, err := c.Stream(context.Background(), map[string]any{"user_prompt": "go"}) if err != nil { t.Fatalf("Stream: %v", err) } // Drain all chunks; the implementation emits content + done // over the goroutine-streaming pattern. var got []map[string]any for chunk := range ch { got = append(got, chunk) } if len(got) != 2 { t.Fatalf("expected 2 chunks (content + done), got %d", len(got)) } if got[0]["content"] != "streamed" { t.Errorf("chunk[0].content=%v, want 'streamed'", got[0]["content"]) } if got[1]["done"] != true { t.Errorf("chunk[1].done=%v, want true", got[1]["done"]) } } func TestLLM_Invoke_MissingModelID(t *testing.T) { withStubInvoker(t, &stubInvoker{resp: &ChatInvokeResponse{Content: "should not be called"}}) c := NewLLMComponent(LLMParam{}) // no model_id _, err := c.Invoke(context.Background(), map[string]any{"user_prompt": "x"}) if err == nil { t.Fatal("expected ParamError for missing model_id") } var pe *ParamError if !errors.As(err, &pe) { t.Errorf("err type=%T, want *ParamError", err) } } func TestLLM_Invoke_InvokerError(t *testing.T) { stub := &stubInvoker{err: errors.New("upstream blew up")} withStubInvoker(t, stub) c := NewLLMComponent(LLMParam{ModelID: "echo"}) _, err := c.Invoke(context.Background(), map[string]any{"user_prompt": "x"}) if err == nil { t.Fatal("expected error to propagate") } if stub.calls != 1 { t.Errorf("calls=%d, want 1", stub.calls) } } func TestLLM_Registered(t *testing.T) { names := RegisteredNames() if !slices.Contains(names, "llm") { t.Fatalf("LLM not registered; names=%v", names) } // And a factory round-trip. c, err := New("LLM", map[string]any{"model_id": "echo"}) if err != nil { t.Fatalf("New(LLM): %v", err) } if c.Name() != "LLM" { t.Errorf("Name()=%q, want LLM", c.Name()) } } // TestLLM_ThinkingFieldRoundTrip guards the agent-component // portion of PR #15446 (thinking switch) and PR #16640 (gen_conf // forwarding). The agent component accepts `thinking` from the DSL // params (any non-empty, non-"default" value) and threads it through // LLMParam and the ChatInvokeRequest. Downstream (einoChatInvoker) // only acts on "enabled" / "disabled" and silently ignores other // values, so lenient forwarding is safe. func TestLLM_ThinkingFieldRoundTrip(t *testing.T) { t.Parallel() // Case 1: "enabled" round-trips into LLMParam and ChatInvokeRequest. enabled := mergeLLMParam(LLMParam{}, map[string]any{ "thinking": "enabled", "model_id": "qwen3-max", "system_prompt": "s", "user_prompt": "u", }) if enabled.Thinking != "enabled" { t.Errorf("Thinking = %q, want enabled", enabled.Thinking) } // Case 2: "disabled" also round-trips. disabled := mergeLLMParam(LLMParam{}, map[string]any{ "thinking": "disabled", "model_id": "kimi-k2.6", "user_prompt": "u", }) if disabled.Thinking != "disabled" { t.Errorf("Thinking = %q, want disabled", disabled.Thinking) } // Case 3: empty / missing value → empty (system default). defaulted := mergeLLMParam(LLMParam{}, map[string]any{ "model_id": "glm-4.6", "user_prompt": "u", }) if defaulted.Thinking != "" { t.Errorf("Thinking = %q, want empty (system default)", defaulted.Thinking) } // Case 4: "default" is explicitly rejected, matching Python's // `self.thinking != "default"` gate in gen_conf(). defaultStr := mergeLLMParam(LLMParam{}, map[string]any{ "thinking": "default", "model_id": "glm-4.6", "user_prompt": "u", }) if defaultStr.Thinking != "" { t.Errorf(`Thinking = %q, want empty ("default" rejected)`, defaultStr.Thinking) } // Case 5: arbitrary / unknown values are leniently forwarded // (matches Python gen_conf() which passes through any truthy // non-"default" string). Downstream einoChatInvoker ignores // unknown values, so this is safe. arbitrary := mergeLLMParam(LLMParam{}, map[string]any{ "thinking": "auto", "model_id": "glm-4.6", "user_prompt": "u", }) if arbitrary.Thinking != "auto" { t.Errorf("arbitrary thinking = %q, want auto (lenient forwarding)", arbitrary.Thinking) } }