fix: resolve gateway binary path, pass --config flag, and clarify empty model error (#1337)
This commit is contained in:
parent
929f18eb91
commit
d8a520766b
3 changed files with 58 additions and 6 deletions
|
|
@ -40,6 +40,10 @@ func resolveProviderSelection(cfg *config.Config) (providerSelection, error) {
|
||||||
providerName := strings.ToLower(cfg.Agents.Defaults.Provider)
|
providerName := strings.ToLower(cfg.Agents.Defaults.Provider)
|
||||||
lowerModel := strings.ToLower(model)
|
lowerModel := strings.ToLower(model)
|
||||||
|
|
||||||
|
if providerName == "" && model == "" {
|
||||||
|
return providerSelection{}, fmt.Errorf("no model configured: agents.defaults.model is empty")
|
||||||
|
}
|
||||||
|
|
||||||
sel := providerSelection{
|
sel := providerSelection{
|
||||||
providerType: providerTypeHTTPCompat,
|
providerType: providerTypeHTTPCompat,
|
||||||
model: model,
|
model: model,
|
||||||
|
|
|
||||||
|
|
@ -134,6 +134,12 @@ func (h *Handler) startGatewayLocked() (int, error) {
|
||||||
execPath := findPicoclawBinary()
|
execPath := findPicoclawBinary()
|
||||||
|
|
||||||
cmd := exec.Command(execPath, "gateway")
|
cmd := exec.Command(execPath, "gateway")
|
||||||
|
// Forward the launcher's config path via the environment variable that
|
||||||
|
// GetConfigPath() already reads, so the gateway sub-process uses the same
|
||||||
|
// config file without requiring a --config flag on the gateway subcommand.
|
||||||
|
if h.configPath != "" {
|
||||||
|
cmd.Env = append(os.Environ(), "PICOCLAW_CONFIG="+h.configPath)
|
||||||
|
}
|
||||||
|
|
||||||
stdoutPipe, err := cmd.StdoutPipe()
|
stdoutPipe, err := cmd.StdoutPipe()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
@ -530,18 +536,32 @@ func (h *Handler) currentGatewayStatus() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
// findPicoclawBinary locates the picoclaw executable.
|
// findPicoclawBinary locates the picoclaw executable.
|
||||||
// Tries the same directory as the current executable first, then falls back to $PATH.
|
// Search order:
|
||||||
|
// 1. PICOCLAW_BINARY environment variable (explicit override)
|
||||||
|
// 2. Same directory as the current executable
|
||||||
|
// 3. Falls back to "picoclaw" and relies on $PATH
|
||||||
func findPicoclawBinary() string {
|
func findPicoclawBinary() string {
|
||||||
if exe, err := os.Executable(); err == nil {
|
binaryName := "picoclaw"
|
||||||
dir := filepath.Dir(exe)
|
if runtime.GOOS == "windows" {
|
||||||
candidate := filepath.Join(dir, "picoclaw")
|
binaryName = "picoclaw.exe"
|
||||||
if runtime.GOOS == "windows" {
|
}
|
||||||
candidate += ".exe"
|
|
||||||
|
// 1. Explicit override via environment variable
|
||||||
|
if p := os.Getenv("PICOCLAW_BINARY"); p != "" {
|
||||||
|
if info, _ := os.Stat(p); info != nil && !info.IsDir() {
|
||||||
|
return p
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Same directory as the launcher executable
|
||||||
|
if exe, err := os.Executable(); err == nil {
|
||||||
|
candidate := filepath.Join(filepath.Dir(exe), binaryName)
|
||||||
if info, err := os.Stat(candidate); err == nil && !info.IsDir() {
|
if info, err := os.Stat(candidate); err == nil && !info.IsDir() {
|
||||||
return candidate
|
return candidate
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 3. Fall back to PATH lookup
|
||||||
return "picoclaw"
|
return "picoclaw"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
@ -120,3 +121,30 @@ func TestGatewayStatusIncludesStartConditionWhenNotReady(t *testing.T) {
|
||||||
t.Fatalf("gateway_start_reason missing or not string: %#v", body["gateway_start_reason"])
|
t.Fatalf("gateway_start_reason missing or not string: %#v", body["gateway_start_reason"])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestFindPicoclawBinary_EnvOverride(t *testing.T) {
|
||||||
|
// Create a temporary file to act as the mock binary
|
||||||
|
tmpDir := t.TempDir()
|
||||||
|
mockBinary := filepath.Join(tmpDir, "picoclaw-mock")
|
||||||
|
if err := os.WriteFile(mockBinary, []byte("mock"), 0o755); err != nil {
|
||||||
|
t.Fatalf("WriteFile() error = %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
t.Setenv("PICOCLAW_BINARY", mockBinary)
|
||||||
|
|
||||||
|
got := findPicoclawBinary()
|
||||||
|
if got != mockBinary {
|
||||||
|
t.Errorf("findPicoclawBinary() = %q, want %q", got, mockBinary)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFindPicoclawBinary_EnvOverride_InvalidPath(t *testing.T) {
|
||||||
|
// When PICOCLAW_BINARY points to a non-existent path, fall through to next strategy
|
||||||
|
t.Setenv("PICOCLAW_BINARY", "/nonexistent/picoclaw-binary")
|
||||||
|
|
||||||
|
got := findPicoclawBinary()
|
||||||
|
// Should not return the invalid path; falls back to "picoclaw" or another found path
|
||||||
|
if got == "/nonexistent/picoclaw-binary" {
|
||||||
|
t.Errorf("findPicoclawBinary() returned invalid env path %q, expected fallback", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue