mirror of
https://github.com/block/goose.git
synced 2026-04-28 03:29:36 +00:00
Some checks failed
Canary / Prepare Version (push) Waiting to run
Canary / build-cli (push) Blocked by required conditions
Canary / Upload Install Script (push) Blocked by required conditions
Canary / bundle-desktop (push) Blocked by required conditions
Canary / bundle-desktop-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
Cargo Deny / deny (push) Waiting to run
CI / changes (push) Waiting to run
CI / Check Rust Code Format (push) Blocked by required conditions
CI / Build and Test Rust Project (push) Blocked by required conditions
CI / Lint Rust Code (push) Blocked by required conditions
CI / Check OpenAPI Schema is Up-to-Date (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Binary (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (Code Execution) (push) Blocked by required conditions
Live Provider Tests / Compaction Tests (push) Blocked by required conditions
Publish Docker Image / docker (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
Deploy Documentation / deploy (push) Has been cancelled
Publish Ask AI Bot Docker Image / docker (push) Has been cancelled
46 lines
1.4 KiB
Bash
Executable file
46 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
# Provider smoke tests - code execution mode (JS batching)
|
|
|
|
LIB_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
source "$LIB_DIR/test_providers_lib.sh"
|
|
|
|
echo "Mode: code_execution (JS batching)"
|
|
echo ""
|
|
|
|
# --- Setup ---
|
|
|
|
GOOSE_BIN=$(build_goose)
|
|
BUILTINS="developer,code_execution"
|
|
|
|
# --- Test case ---
|
|
|
|
run_test() {
|
|
local provider="$1" model="$2" result_file="$3" output_file="$4"
|
|
local testdir=$(mktemp -d)
|
|
|
|
echo "hello" > "$testdir/hello.txt"
|
|
local prompt="Run 'ls' to list files in the current directory."
|
|
|
|
# Run goose
|
|
(
|
|
export GOOSE_PROVIDER="$provider"
|
|
export GOOSE_MODEL="$model"
|
|
cd "$testdir" && "$GOOSE_BIN" run --text "$prompt" --with-builtin "$BUILTINS" 2>&1
|
|
) > "$output_file" 2>&1
|
|
|
|
# Verify: code_execution tool must be called
|
|
# Matches: "execute | code_execution", "get_function_details | code_execution",
|
|
# "tool call | execute", "tool calls | execute" (old format)
|
|
# "▸ execute N tool call" (new format with tool_graph)
|
|
if grep -qE "(execute \| code_execution)|(get_function_details \| code_execution)|(tool calls? \| execute)|(▸.*execute.*tool call)" "$output_file"; then
|
|
echo "success|code_execution tool called" > "$result_file"
|
|
else
|
|
echo "failure|no code_execution tool calls found" > "$result_file"
|
|
fi
|
|
|
|
rm -rf "$testdir"
|
|
}
|
|
|
|
build_test_cases --skip-agentic
|
|
run_test_cases run_test
|
|
report_results
|