mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-28 05:46:58 +02:00
* fix(landing): scope landing route to always-light palette The landing page sections use hardcoded light colors (bg-white / #0a0d12), but shared components rendered inside — notably CloudWaitlistExpand on /download — use semantic tokens that flip to dark values under next-themes' `.dark` class, producing a mismatched dark card on an otherwise light page when the user's OS is in dark mode. Add a `.landing-light` class on the landing layout wrapper that re-declares all color tokens to their light values for the subtree, so nested token-driven components stay in lockstep with the hardcoded palette. * test(agent): serialize fake-executable writes to avoid ETXTBSY on CI TestKimiBackendInvokesACPSubcommand (and its Kimi/Codex siblings) write a shell script to a per-test TempDir and then fork/exec it. With t.Parallel() enabled across the package, a concurrent goroutine's fork can inherit the still-open write fd to another test's new executable; Linux then rejects the subsequent exec with ETXTBSY (seen as fork/exec /tmp/.../kimi: text file busy on GitHub Actions). Introduce writeTestExecutable, which holds syscall.ForkLock.RLock across OpenFile→Write→Close. Fork (which takes ForkLock.Lock) cannot run while we hold RLock, so no sibling fork inherits our write fd. Ran the three callers with -count=10 under -p=1 and the full package with no failures.
212 lines
6.6 KiB
Go
212 lines
6.6 KiB
Go
package agent
|
|
|
|
import (
|
|
"context"
|
|
"log/slog"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestNewReturnsKimiBackend(t *testing.T) {
|
|
t.Parallel()
|
|
b, err := New("kimi", Config{ExecutablePath: "/nonexistent/kimi"})
|
|
if err != nil {
|
|
t.Fatalf("New(kimi) error: %v", err)
|
|
}
|
|
if _, ok := b.(*kimiBackend); !ok {
|
|
t.Fatalf("expected *kimiBackend, got %T", b)
|
|
}
|
|
}
|
|
|
|
func TestKimiToolNameFromTitle(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
title string
|
|
want string
|
|
}{
|
|
{"Read file: /tmp/foo.go", "read_file"},
|
|
{"read", "read_file"},
|
|
{"Write: /tmp/bar.go", "write_file"},
|
|
{"Edit", "edit_file"},
|
|
{"Patch: /tmp/x", "edit_file"},
|
|
{"Shell: ls -la", "terminal"},
|
|
{"Bash", "terminal"},
|
|
{"Run command: pwd", "terminal"},
|
|
{"Search: foo", "search_files"},
|
|
{"Glob: *.go", "glob"},
|
|
{"Web search: golang acp", "web_search"},
|
|
{"Fetch: https://example.com", "web_fetch"},
|
|
{"Todo Write", "todo_write"},
|
|
// Fallback: snake_case the title.
|
|
{"Custom Thing", "custom_thing"},
|
|
// Empty input returns empty — caller decides how to react.
|
|
{"", ""},
|
|
}
|
|
for _, tt := range tests {
|
|
got := kimiToolNameFromTitle(tt.title)
|
|
if got != tt.want {
|
|
t.Errorf("kimiToolNameFromTitle(%q) = %q, want %q", tt.title, got, tt.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
// fakeKimiACPScript returns a POSIX-sh script that impersonates
|
|
// `kimi acp` for a single short ACP session: it acks initialize /
|
|
// session/new and then replies to session/set_model with a JSON-RPC
|
|
// error — the scenario the kimiBackend must propagate as a failed
|
|
// task rather than silently falling back to the default model.
|
|
func fakeKimiACPScript() string {
|
|
return `#!/bin/sh
|
|
# Fake ` + "`kimi`" + ` binary — used by TestKimiBackendSetModelFailureFailsTask
|
|
# and TestKimiBackendPassesYoloFlag.
|
|
#
|
|
# Writes the full argv (one arg per line) to $KIMI_ARGS_FILE if that env
|
|
# var is set, so tests can assert that the daemon invokes us with the
|
|
# right flags (`+"`--yolo acp`"+`, not bare `+"`acp`"+`).
|
|
#
|
|
# Then reads one JSON-RPC request per line from stdin, matches on the
|
|
# method name, and writes back a canned response. Exits after set_model
|
|
# so the kimiBackend cleanup path can run.
|
|
if [ -n "$KIMI_ARGS_FILE" ]; then
|
|
for arg in "$@"; do
|
|
printf '%s\n' "$arg" >> "$KIMI_ARGS_FILE"
|
|
done
|
|
fi
|
|
while IFS= read -r line; do
|
|
id=$(printf '%s' "$line" | sed -n 's/.*"id":\([0-9]*\).*/\1/p')
|
|
case "$line" in
|
|
*'"method":"initialize"'*)
|
|
printf '{"jsonrpc":"2.0","id":%s,"result":{"protocolVersion":1,"agentCapabilities":{}}}\n' "$id"
|
|
;;
|
|
*'"method":"session/new"'*)
|
|
printf '{"jsonrpc":"2.0","id":%s,"result":{"sessionId":"ses_fake"}}\n' "$id"
|
|
;;
|
|
*'"method":"session/set_model"'*)
|
|
printf '{"jsonrpc":"2.0","id":%s,"error":{"code":-32602,"message":"model not available: bogus-model"}}\n' "$id"
|
|
exit 0
|
|
;;
|
|
esac
|
|
done
|
|
`
|
|
}
|
|
|
|
// TestKimiBackendSetModelFailureFailsTask pins the "don't silently
|
|
// fall back" behaviour that landed in this PR: when kimi rejects the
|
|
// caller-selected model via session/set_model, the task result must
|
|
// report status=failed with a message that names the model and the
|
|
// upstream error — not claim success while actually running on the
|
|
// default model.
|
|
func TestKimiBackendSetModelFailureFailsTask(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
fakePath := filepath.Join(t.TempDir(), "kimi")
|
|
writeTestExecutable(t, fakePath, []byte(fakeKimiACPScript()))
|
|
|
|
backend, err := New("kimi", Config{ExecutablePath: fakePath, Logger: slog.Default()})
|
|
if err != nil {
|
|
t.Fatalf("new kimi backend: %v", err)
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
session, err := backend.Execute(ctx, "prompt-ignored", ExecOptions{
|
|
Model: "bogus-model",
|
|
Timeout: 5 * time.Second,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("execute: %v", err)
|
|
}
|
|
// Drain message stream so the lifecycle goroutine can progress.
|
|
go func() {
|
|
for range session.Messages {
|
|
}
|
|
}()
|
|
|
|
select {
|
|
case result, ok := <-session.Result:
|
|
if !ok {
|
|
t.Fatal("result channel closed without a value")
|
|
}
|
|
if result.Status != "failed" {
|
|
t.Fatalf("expected status=failed, got %q (error=%q)", result.Status, result.Error)
|
|
}
|
|
if !strings.Contains(result.Error, `could not switch to model "bogus-model"`) {
|
|
t.Errorf("expected error to name the requested model, got %q", result.Error)
|
|
}
|
|
if !strings.Contains(result.Error, "model not available") {
|
|
t.Errorf("expected error to surface upstream message, got %q", result.Error)
|
|
}
|
|
if result.SessionID != "ses_fake" {
|
|
t.Errorf("expected session id to be preserved on failure, got %q", result.SessionID)
|
|
}
|
|
case <-time.After(10 * time.Second):
|
|
t.Fatal("timeout waiting for result")
|
|
}
|
|
}
|
|
|
|
// TestKimiBackendInvokesACPSubcommand pins the argv for `kimi`. An
|
|
// earlier fix tried passing `--yolo` to bypass per-tool approval
|
|
// prompts, but the `acp` subcommand in kimi-cli takes no options
|
|
// (see cli/__init__.py @cli.command def acp()), so `--yolo` was a
|
|
// no-op and the daemon still hung for 5 min on the first Shell call.
|
|
// The actual bypass is in hermesClient.handleAgentRequest, which
|
|
// auto-approves session/request_permission. This test catches
|
|
// accidental re-introduction of the dead flag.
|
|
func TestKimiBackendInvokesACPSubcommand(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tempDir := t.TempDir()
|
|
argsFile := filepath.Join(tempDir, "argv.txt")
|
|
fakePath := filepath.Join(tempDir, "kimi")
|
|
writeTestExecutable(t, fakePath, []byte(fakeKimiACPScript()))
|
|
|
|
backend, err := New("kimi", Config{
|
|
ExecutablePath: fakePath,
|
|
Logger: slog.Default(),
|
|
Env: map[string]string{"KIMI_ARGS_FILE": argsFile},
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("new kimi backend: %v", err)
|
|
}
|
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
|
defer cancel()
|
|
|
|
// Set Model so the fake binary exits on set_model and we don't
|
|
// have to wait for the prompt branch. We only care about argv here.
|
|
session, err := backend.Execute(ctx, "prompt-ignored", ExecOptions{
|
|
Model: "bogus-model",
|
|
Timeout: 5 * time.Second,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("execute: %v", err)
|
|
}
|
|
go func() {
|
|
for range session.Messages {
|
|
}
|
|
}()
|
|
<-session.Result
|
|
|
|
raw, err := os.ReadFile(argsFile)
|
|
if err != nil {
|
|
t.Fatalf("read args file: %v", err)
|
|
}
|
|
lines := strings.Split(strings.TrimSpace(string(raw)), "\n")
|
|
if len(lines) < 1 {
|
|
t.Fatalf("expected at least 1 arg (acp), got %d: %q", len(lines), lines)
|
|
}
|
|
if lines[0] != "acp" {
|
|
t.Errorf("expected first arg to be acp, got %q (full: %q)", lines[0], lines)
|
|
}
|
|
for _, l := range lines {
|
|
switch l {
|
|
case "--yolo", "--auto-approve", "--yes", "-y":
|
|
t.Errorf("kimi acp doesn't accept %q; auto-approval is handled in hermesClient.handleAgentRequest", l)
|
|
}
|
|
}
|
|
}
|