Files
gnoma/internal/tool/bash/bash_test.go
T
vikingowl 0b1392cf6b feat(pty): Phase 2 — interactive shell and bash interactive detection
- /shell [cmd]: launch user's $SHELL via tea.ExecProcess (PTY handoff)
  hands terminal to the shell and restores TUI on exit.
  /shell <cmd> runs that command in the shell directly.
  Detects $SHELL > $COMSPEC > /bin/sh|powershell.exe in order.

- bash tool: detect interactive commands before execution
  Prefix-interactive: sudo, ssh, passwd, vim/vi/nano, less/more,
  htop/top, mysql/psql, ftp/sftp, git push.
  Exact-interactive (REPL): python3/python/node/irb/iex/ghci/julia.
  Returns a tool result with interactive=true metadata and a hint to
  use /shell instead of hanging or erroring.

- completions: add /shell to builtin command list
- help: document /shell [cmd]
2026-05-07 15:52:56 +02:00

167 lines
4.4 KiB
Go

package bash
import (
"context"
"encoding/json"
"strings"
"testing"
"time"
)
func TestBashTool_Interface(t *testing.T) {
b := New()
if b.Name() != "bash" {
t.Errorf("Name() = %q", b.Name())
}
if b.IsReadOnly() {
t.Error("bash should not be read-only")
}
if !b.IsDestructive() {
t.Error("bash should be destructive")
}
if b.Parameters() == nil {
t.Error("Parameters() should not be nil")
}
}
func TestBashTool_Echo(t *testing.T) {
b := New()
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"echo hello world"}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Output != "hello world" {
t.Errorf("Output = %q, want %q", result.Output, "hello world")
}
if result.Metadata["exit_code"] != 0 {
t.Errorf("exit_code = %v, want 0", result.Metadata["exit_code"])
}
}
func TestBashTool_ExitCode(t *testing.T) {
b := New()
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"exit 42"}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Metadata["exit_code"] != 42 {
t.Errorf("exit_code = %v, want 42", result.Metadata["exit_code"])
}
if !strings.HasPrefix(result.Output, "Exit code 42") {
t.Errorf("Output = %q, should start with exit code", result.Output)
}
}
func TestBashTool_Timeout(t *testing.T) {
b := New(WithTimeout(100 * time.Millisecond))
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"sleep 10"}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Metadata["timeout"] != true {
t.Error("should have timed out")
}
if !strings.Contains(result.Output, "timed out") {
t.Errorf("Output = %q, should mention timeout", result.Output)
}
}
func TestBashTool_CustomTimeout(t *testing.T) {
b := New(WithTimeout(30 * time.Second))
// Args override the default timeout
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"sleep 10","timeout":1}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Metadata["timeout"] != true {
t.Error("should have timed out with custom 1s timeout")
}
}
func TestBashTool_InvalidArgs(t *testing.T) {
b := New()
_, err := b.Execute(context.Background(), json.RawMessage(`not json`))
if err == nil {
t.Error("expected error for invalid JSON")
}
}
func TestBashTool_EmptyCommand(t *testing.T) {
b := New()
_, err := b.Execute(context.Background(), json.RawMessage(`{"command":""}`))
if err == nil {
t.Error("expected error for empty command")
}
}
func TestBashTool_SecurityBlock(t *testing.T) {
b := New()
// Command substitution should be blocked
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"echo $(whoami)"}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Metadata["blocked"] != true {
t.Error("command with $() should be blocked")
}
if !strings.Contains(result.Output, "blocked") {
t.Errorf("Output = %q, should mention blocked", result.Output)
}
}
func TestBashTool_WorkingDir(t *testing.T) {
b := New(WithWorkingDir(t.TempDir()))
result, err := b.Execute(context.Background(), json.RawMessage(`{"command":"pwd"}`))
if err != nil {
t.Fatalf("Execute: %v", err)
}
if result.Output == "" {
t.Error("pwd should produce output")
}
}
func TestBashTool_InteractiveDetection(t *testing.T) {
b := New()
tests := []struct {
name string
cmd string
wantHit bool
}{
{"sudo", "sudo apt install vim", true},
{"vim", "vim file.txt", true},
{"git push", "git push origin main", true},
{"python3 REPL", "python3", true},
{"python3 script not interactive", "python3 script.py", false},
{"ls not interactive", "ls -la", false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
args, _ := json.Marshal(map[string]string{"command": tt.cmd})
result, err := b.Execute(context.Background(), args)
if err != nil {
t.Fatalf("Execute: %v", err)
}
hit := result.Metadata["interactive"] == true
if hit != tt.wantHit {
t.Errorf("interactive=%v, want %v (output=%q)", hit, tt.wantHit, result.Output)
}
})
}
}
func TestBashTool_ContextCancellation(t *testing.T) {
b := New()
ctx, cancel := context.WithCancel(context.Background())
cancel() // cancel immediately
_, err := b.Execute(ctx, json.RawMessage(`{"command":"echo hello"}`))
// Should either return an error or a timeout result
if err == nil {
// That's ok too — context cancellation is best-effort for fast commands
return
}
}