feat(session): add session lifecycle management with auto-reset triggers
- Add session management functions: get_session_id(), reset_session(), log_session_transition(), init_session_tracking() - Session auto-reset on: circuit breaker open, manual interrupt, project completion, manual circuit reset - Add --reset-session CLI flag for manual session reset - Add session history tracking (.ralph_session_history, last 50 entries) - New config: RALPH_SESSION_FILE, RALPH_SESSION_HISTORY_FILE - Add 26 comprehensive tests for session continuity (TDD) - All 265 tests pass (up from 239) - Update CLAUDE.md with v0.9.7 release notes
This commit is contained in:
parent
3a474b4317
commit
d3310d1f3f
3 changed files with 536 additions and 4 deletions
28
CLAUDE.md
28
CLAUDE.md
|
|
@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
|||
|
||||
This is the Ralph for Claude Code repository - an autonomous AI development loop system that enables continuous development cycles with intelligent exit detection and rate limiting.
|
||||
|
||||
**Version**: v0.9.6 | **Tests**: 239 passing (100% pass rate) | **CI/CD**: GitHub Actions
|
||||
**Version**: v0.9.7 | **Tests**: 265 passing (100% pass rate) | **CI/CD**: GitHub Actions
|
||||
|
||||
## Core Architecture
|
||||
|
||||
|
|
@ -37,6 +37,9 @@ The system uses a modular architecture with reusable components in the `lib/` di
|
|||
- Extracts structured fields: status, exit_signal, work_type, files_modified
|
||||
- **Session management**: `store_session_id()`, `get_last_session_id()`, `should_resume_session()`
|
||||
- Automatic session persistence to `.claude_session_id` file with 24-hour expiration
|
||||
- Session lifecycle: `get_session_id()`, `reset_session()`, `log_session_transition()`, `init_session_tracking()`
|
||||
- Session history tracked in `.ralph_session_history` (last 50 transitions)
|
||||
- Session auto-reset on: circuit breaker open, manual interrupt, project completion
|
||||
- Detects test-only loops and stuck error patterns
|
||||
- Two-stage error filtering to eliminate false positives
|
||||
- Multi-line error matching for accurate stuck loop detection
|
||||
|
|
@ -81,6 +84,9 @@ ralph --status
|
|||
# Circuit breaker management
|
||||
ralph --reset-circuit
|
||||
ralph --circuit-status
|
||||
|
||||
# Session management
|
||||
ralph --reset-session # Reset session state manually
|
||||
```
|
||||
|
||||
### Monitoring
|
||||
|
|
@ -275,13 +281,14 @@ Ralph uses advanced error detection with two-stage filtering to eliminate false
|
|||
|
||||
## Test Suite
|
||||
|
||||
### Test Files (239 tests total)
|
||||
### Test Files (265 tests total)
|
||||
|
||||
| File | Tests | Description |
|
||||
|------|-------|-------------|
|
||||
| `test_cli_parsing.bats` | 27 | CLI argument parsing for all 12 flags |
|
||||
| `test_cli_modern.bats` | 29 | Modern CLI commands (Phase 1.1) + build_claude_command fix |
|
||||
| `test_json_parsing.bats` | 36 | JSON output format parsing + Claude CLI format + session management |
|
||||
| `test_session_continuity.bats` | 26 | Session lifecycle management + circuit breaker integration |
|
||||
| `test_exit_detection.bats` | 20 | Exit signal detection |
|
||||
| `test_rate_limiting.bats` | 15 | Rate limiting behavior |
|
||||
| `test_loop_execution.bats` | 20 | Integration tests |
|
||||
|
|
@ -304,6 +311,23 @@ bats tests/unit/test_cli_parsing.bats
|
|||
|
||||
## Recent Improvements
|
||||
|
||||
### Session Lifecycle Management (v0.9.7)
|
||||
- Added complete session lifecycle management with automatic reset triggers:
|
||||
- `get_session_id()` - Retrieves current session from `.ralph_session`
|
||||
- `reset_session(reason)` - Clears session with reason logging
|
||||
- `log_session_transition()` - Records transitions to `.ralph_session_history`
|
||||
- `init_session_tracking()` - Initializes session file with validation
|
||||
- Session auto-reset integration points:
|
||||
- Circuit breaker open events (stagnation detection)
|
||||
- Manual interrupt (Ctrl+C / SIGINT)
|
||||
- Project completion (graceful exit)
|
||||
- Manual circuit breaker reset (`--reset-circuit`)
|
||||
- Added `--reset-session` CLI flag for manual session reset
|
||||
- Session history tracking (last 50 transitions) for debugging
|
||||
- New configuration constants: `RALPH_SESSION_FILE`, `RALPH_SESSION_HISTORY_FILE`
|
||||
- Added 26 new tests for session continuity features
|
||||
- Test count: 265 (up from 239)
|
||||
|
||||
### JSON Output & Session Management (v0.9.6)
|
||||
- Extended `parse_json_response()` to support Claude Code CLI JSON format
|
||||
- Supports `result`, `sessionId`, and `metadata` fields alongside existing flat format
|
||||
|
|
|
|||
143
ralph_loop.sh
143
ralph_loop.sh
|
|
@ -33,6 +33,11 @@ CLAUDE_USE_CONTINUE=true # Enable session continuity
|
|||
CLAUDE_SESSION_FILE=".claude_session_id" # Session ID persistence file
|
||||
CLAUDE_MIN_VERSION="2.0.76" # Minimum required Claude CLI version
|
||||
|
||||
# Session management configuration (Phase 1.2)
|
||||
RALPH_SESSION_FILE=".ralph_session" # Ralph-specific session tracking
|
||||
RALPH_SESSION_HISTORY_FILE=".ralph_session_history" # Session transition history
|
||||
SESSION_EXPIRATION_SECONDS=86400 # 24 hours in seconds
|
||||
|
||||
# Valid tool patterns for --allowed-tools validation
|
||||
# Tools can be exact matches or pattern matches with wildcards in parentheses
|
||||
VALID_TOOL_PATTERNS=(
|
||||
|
|
@ -477,6 +482,125 @@ save_claude_session() {
|
|||
fi
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION LIFECYCLE MANAGEMENT FUNCTIONS (Phase 1.2)
|
||||
# =============================================================================
|
||||
|
||||
# Get current session ID from Ralph session file
|
||||
# Returns: session ID string or empty if not found
|
||||
get_session_id() {
|
||||
if [[ ! -f "$RALPH_SESSION_FILE" ]]; then
|
||||
echo ""
|
||||
return 0
|
||||
fi
|
||||
|
||||
# Extract session_id from JSON file
|
||||
local session_id=$(jq -r '.session_id // ""' "$RALPH_SESSION_FILE" 2>/dev/null)
|
||||
if [[ "$session_id" == "null" ]]; then
|
||||
session_id=""
|
||||
fi
|
||||
echo "$session_id"
|
||||
return 0
|
||||
}
|
||||
|
||||
# Reset session with reason logging
|
||||
# Usage: reset_session "reason_for_reset"
|
||||
reset_session() {
|
||||
local reason=${1:-"manual_reset"}
|
||||
|
||||
# Log the transition before clearing
|
||||
local old_session_id=$(get_session_id)
|
||||
|
||||
# Clear the session file
|
||||
if [[ -f "$RALPH_SESSION_FILE" ]]; then
|
||||
cat > "$RALPH_SESSION_FILE" << EOF
|
||||
{
|
||||
"session_id": "",
|
||||
"created_at": "",
|
||||
"last_used": "",
|
||||
"reset_at": "$(get_iso_timestamp)",
|
||||
"reset_reason": "$reason"
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
|
||||
# Also clear the Claude session file for consistency
|
||||
if [[ -f "$CLAUDE_SESSION_FILE" ]]; then
|
||||
rm -f "$CLAUDE_SESSION_FILE"
|
||||
fi
|
||||
|
||||
# Log the session transition
|
||||
log_session_transition "active" "reset" "$reason" "${loop_count:-0}"
|
||||
|
||||
log_status "INFO" "Session reset: $reason"
|
||||
}
|
||||
|
||||
# Log session state transitions to history file
|
||||
# Usage: log_session_transition from_state to_state reason loop_number
|
||||
log_session_transition() {
|
||||
local from_state=$1
|
||||
local to_state=$2
|
||||
local reason=$3
|
||||
local loop_number=${4:-0}
|
||||
|
||||
# Initialize history file if needed
|
||||
if [[ ! -f "$RALPH_SESSION_HISTORY_FILE" ]]; then
|
||||
echo '[]' > "$RALPH_SESSION_HISTORY_FILE"
|
||||
fi
|
||||
|
||||
# Create transition entry
|
||||
local transition
|
||||
transition=$(jq -n \
|
||||
--arg timestamp "$(get_iso_timestamp)" \
|
||||
--arg from_state "$from_state" \
|
||||
--arg to_state "$to_state" \
|
||||
--arg reason "$reason" \
|
||||
--argjson loop_number "$loop_number" \
|
||||
'{
|
||||
timestamp: $timestamp,
|
||||
from_state: $from_state,
|
||||
to_state: $to_state,
|
||||
reason: $reason,
|
||||
loop_number: $loop_number
|
||||
}')
|
||||
|
||||
# Append to history and keep only last 50 entries
|
||||
local history=$(cat "$RALPH_SESSION_HISTORY_FILE" 2>/dev/null || echo '[]')
|
||||
history=$(echo "$history" | jq ". += [$transition] | .[-50:]")
|
||||
echo "$history" > "$RALPH_SESSION_HISTORY_FILE"
|
||||
}
|
||||
|
||||
# Initialize session tracking (called at loop start)
|
||||
init_session_tracking() {
|
||||
# Create session file if it doesn't exist
|
||||
if [[ ! -f "$RALPH_SESSION_FILE" ]]; then
|
||||
cat > "$RALPH_SESSION_FILE" << EOF
|
||||
{
|
||||
"session_id": "",
|
||||
"created_at": "$(get_iso_timestamp)",
|
||||
"last_used": "",
|
||||
"reset_at": "",
|
||||
"reset_reason": ""
|
||||
}
|
||||
EOF
|
||||
log_status "INFO" "Initialized session tracking"
|
||||
fi
|
||||
|
||||
# Validate existing session file
|
||||
if ! jq empty "$RALPH_SESSION_FILE" 2>/dev/null; then
|
||||
log_status "WARN" "Corrupted session file detected, recreating..."
|
||||
cat > "$RALPH_SESSION_FILE" << EOF
|
||||
{
|
||||
"session_id": "",
|
||||
"created_at": "$(get_iso_timestamp)",
|
||||
"last_used": "",
|
||||
"reset_at": "",
|
||||
"reset_reason": "corrupted_file_recovery"
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
}
|
||||
|
||||
# Global array for Claude command arguments (avoids shell injection)
|
||||
declare -a CLAUDE_CMD_ARGS=()
|
||||
|
||||
|
|
@ -731,6 +855,7 @@ EOF
|
|||
# Cleanup function
|
||||
cleanup() {
|
||||
log_status "INFO" "Ralph loop interrupted. Cleaning up..."
|
||||
reset_session "manual_interrupt"
|
||||
update_status "$loop_count" "$(cat "$CALL_COUNT_FILE" 2>/dev/null || echo "0")" "interrupted" "stopped"
|
||||
exit 0
|
||||
}
|
||||
|
|
@ -785,6 +910,7 @@ main() {
|
|||
|
||||
# Check circuit breaker before attempting execution
|
||||
if should_halt_execution; then
|
||||
reset_session "circuit_breaker_open"
|
||||
update_status "$loop_count" "$(cat "$CALL_COUNT_FILE")" "circuit_breaker_open" "halted" "stagnation_detected"
|
||||
log_status "ERROR" "🛑 Circuit breaker has opened - execution halted"
|
||||
break
|
||||
|
|
@ -800,13 +926,14 @@ main() {
|
|||
local exit_reason=$(should_exit_gracefully)
|
||||
if [[ "$exit_reason" != "" ]]; then
|
||||
log_status "SUCCESS" "🏁 Graceful exit triggered: $exit_reason"
|
||||
reset_session "project_complete"
|
||||
update_status "$loop_count" "$(cat "$CALL_COUNT_FILE")" "graceful_exit" "completed" "$exit_reason"
|
||||
|
||||
|
||||
log_status "SUCCESS" "🎉 Ralph has completed the project! Final stats:"
|
||||
log_status "INFO" " - Total loops: $loop_count"
|
||||
log_status "INFO" " - API calls used: $(cat "$CALL_COUNT_FILE")"
|
||||
log_status "INFO" " - Exit reason: $exit_reason"
|
||||
|
||||
|
||||
break
|
||||
fi
|
||||
|
||||
|
|
@ -825,6 +952,7 @@ main() {
|
|||
sleep 5
|
||||
elif [ $exec_result -eq 3 ]; then
|
||||
# Circuit breaker opened
|
||||
reset_session "circuit_breaker_trip"
|
||||
update_status "$loop_count" "$(cat "$CALL_COUNT_FILE")" "circuit_breaker_open" "halted" "stagnation_detected"
|
||||
log_status "ERROR" "🛑 Circuit breaker has opened - halting loop"
|
||||
log_status "INFO" "Run 'ralph --reset-circuit' to reset the circuit breaker after addressing issues"
|
||||
|
|
@ -896,6 +1024,7 @@ Options:
|
|||
-t, --timeout MIN Set Claude Code execution timeout in minutes (default: $CLAUDE_TIMEOUT_MINUTES)
|
||||
--reset-circuit Reset circuit breaker to CLOSED state
|
||||
--circuit-status Show circuit breaker status and exit
|
||||
--reset-session Reset session state and exit (clears session continuity)
|
||||
|
||||
Modern CLI Options (Phase 1.1):
|
||||
--output-format FORMAT Set Claude output format: json or text (default: $CLAUDE_OUTPUT_FORMAT)
|
||||
|
|
@ -968,7 +1097,17 @@ while [[ $# -gt 0 ]]; do
|
|||
# Source the circuit breaker library
|
||||
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
||||
source "$SCRIPT_DIR/lib/circuit_breaker.sh"
|
||||
source "$SCRIPT_DIR/lib/date_utils.sh"
|
||||
reset_circuit_breaker "Manual reset via command line"
|
||||
reset_session "manual_circuit_reset"
|
||||
exit 0
|
||||
;;
|
||||
--reset-session)
|
||||
# Reset session state only
|
||||
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
||||
source "$SCRIPT_DIR/lib/date_utils.sh"
|
||||
reset_session "manual_reset_flag"
|
||||
echo -e "${GREEN}✅ Session state reset successfully${NC}"
|
||||
exit 0
|
||||
;;
|
||||
--circuit-status)
|
||||
|
|
|
|||
369
tests/unit/test_session_continuity.bats
Normal file
369
tests/unit/test_session_continuity.bats
Normal file
|
|
@ -0,0 +1,369 @@
|
|||
#!/usr/bin/env bats
|
||||
# Unit tests for session continuity enhancements
|
||||
# TDD: Tests for session lifecycle management across Ralph loops
|
||||
|
||||
load '../helpers/test_helper'
|
||||
load '../helpers/fixtures'
|
||||
|
||||
setup() {
|
||||
# Create temporary test directory
|
||||
TEST_DIR="$(mktemp -d)"
|
||||
cd "$TEST_DIR"
|
||||
|
||||
# Initialize git repo
|
||||
git init > /dev/null 2>&1
|
||||
git config user.email "test@example.com"
|
||||
git config user.name "Test User"
|
||||
|
||||
# Set up environment
|
||||
export PROMPT_FILE="PROMPT.md"
|
||||
export LOG_DIR="logs"
|
||||
export DOCS_DIR="docs/generated"
|
||||
export STATUS_FILE="status.json"
|
||||
export EXIT_SIGNALS_FILE=".exit_signals"
|
||||
export CALL_COUNT_FILE=".call_count"
|
||||
export TIMESTAMP_FILE=".last_reset"
|
||||
export CLAUDE_SESSION_FILE=".claude_session_id"
|
||||
export RALPH_SESSION_FILE=".ralph_session"
|
||||
export RALPH_SESSION_HISTORY_FILE=".ralph_session_history"
|
||||
export CLAUDE_MIN_VERSION="2.0.76"
|
||||
export CLAUDE_CODE_CMD="claude"
|
||||
export CLAUDE_USE_CONTINUE="true"
|
||||
|
||||
mkdir -p "$LOG_DIR" "$DOCS_DIR"
|
||||
echo "0" > "$CALL_COUNT_FILE"
|
||||
echo "$(date +%Y%m%d%H)" > "$TIMESTAMP_FILE"
|
||||
echo '{"test_only_loops": [], "done_signals": [], "completion_indicators": []}' > "$EXIT_SIGNALS_FILE"
|
||||
|
||||
# Create sample project files
|
||||
create_sample_prompt
|
||||
create_sample_fix_plan "@fix_plan.md" 10 3
|
||||
|
||||
# Source library components
|
||||
source "${BATS_TEST_DIRNAME}/../../lib/date_utils.sh"
|
||||
source "${BATS_TEST_DIRNAME}/../../lib/response_analyzer.sh"
|
||||
source "${BATS_TEST_DIRNAME}/../../lib/circuit_breaker.sh"
|
||||
|
||||
# Define color variables for log_status
|
||||
RED='\033[0;31m'
|
||||
GREEN='\033[0;32m'
|
||||
YELLOW='\033[1;33m'
|
||||
BLUE='\033[0;34m'
|
||||
PURPLE='\033[0;35m'
|
||||
NC='\033[0m'
|
||||
|
||||
# Define log_status function for tests
|
||||
log_status() {
|
||||
local level=$1
|
||||
local message=$2
|
||||
echo "[$level] $message"
|
||||
}
|
||||
export -f log_status
|
||||
}
|
||||
|
||||
teardown() {
|
||||
if [[ -n "$TEST_DIR" ]] && [[ -d "$TEST_DIR" ]]; then
|
||||
cd /
|
||||
rm -rf "$TEST_DIR"
|
||||
fi
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# HELPER: Check if function exists in ralph_loop.sh
|
||||
# =============================================================================
|
||||
|
||||
function_exists_in_ralph() {
|
||||
local func_name=$1
|
||||
grep -qE "^${func_name}\s*\(\)|^function\s+${func_name}" "${BATS_TEST_DIRNAME}/../../ralph_loop.sh" 2>/dev/null
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION RESET FUNCTION TESTS
|
||||
# =============================================================================
|
||||
|
||||
@test "reset_session function exists in ralph_loop.sh" {
|
||||
run function_exists_in_ralph "reset_session"
|
||||
[[ $status -eq 0 ]] || skip "reset_session function not yet implemented"
|
||||
}
|
||||
|
||||
@test "get_session_id function exists in ralph_loop.sh" {
|
||||
run function_exists_in_ralph "get_session_id"
|
||||
[[ $status -eq 0 ]] || skip "get_session_id function not yet implemented"
|
||||
}
|
||||
|
||||
@test "log_session_transition function exists in ralph_loop.sh" {
|
||||
run function_exists_in_ralph "log_session_transition"
|
||||
[[ $status -eq 0 ]] || skip "log_session_transition function not yet implemented"
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# --reset-session CLI FLAG TESTS
|
||||
# =============================================================================
|
||||
|
||||
@test "--reset-session flag is recognized in help" {
|
||||
run bash "${BATS_TEST_DIRNAME}/../../ralph_loop.sh" --help
|
||||
|
||||
[[ "$output" == *"reset-session"* ]] || skip "--reset-session flag not yet implemented"
|
||||
}
|
||||
|
||||
@test "--reset-session flag in argument parser" {
|
||||
# Check if the flag exists in the argument parsing section
|
||||
run grep -E '\-\-reset-session' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ $status -eq 0 ]] || skip "--reset-session flag not yet implemented"
|
||||
}
|
||||
|
||||
@test "--reset-session resets session file" {
|
||||
# Create a session file
|
||||
echo '{"session_id": "session-to-reset", "timestamp": "2026-01-09T10:00:00Z"}' > "$RALPH_SESSION_FILE"
|
||||
echo 'session-to-reset' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
# Run with --reset-session flag (should exit quickly)
|
||||
run timeout 5 bash "${BATS_TEST_DIRNAME}/../../ralph_loop.sh" --reset-session 2>&1
|
||||
|
||||
# If flag not recognized, skip
|
||||
if [[ "$output" == *"Unknown option"* ]]; then
|
||||
skip "--reset-session flag not yet implemented"
|
||||
fi
|
||||
|
||||
# Check that session was reset
|
||||
if [[ -f "$RALPH_SESSION_FILE" ]]; then
|
||||
local session=$(jq -r '.session_id // ""' "$RALPH_SESSION_FILE" 2>/dev/null || echo "")
|
||||
[[ -z "$session" || "$session" == "" || "$session" == "null" ]]
|
||||
fi
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# CIRCUIT BREAKER SESSION INTEGRATION TESTS
|
||||
# =============================================================================
|
||||
|
||||
@test "circuit breaker reset code includes session reset" {
|
||||
# Check if reset_circuit_breaker mentions reset_session
|
||||
run grep -A10 'reset_circuit_breaker' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ "$output" == *"reset_session"* ]] || skip "Circuit breaker session integration not yet implemented"
|
||||
}
|
||||
|
||||
@test "cleanup function includes session reset" {
|
||||
# Check if cleanup function includes reset_session
|
||||
run grep -A5 'cleanup()' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ "$output" == *"reset_session"* ]] || skip "Cleanup session reset not yet implemented"
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION HISTORY TESTS
|
||||
# =============================================================================
|
||||
|
||||
@test "RALPH_SESSION_HISTORY_FILE constant defined" {
|
||||
run grep 'RALPH_SESSION_HISTORY_FILE' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ $status -eq 0 ]] || skip "Session history file constant not yet defined"
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# RESPONSE ANALYZER SESSION FUNCTIONS (already implemented)
|
||||
# =============================================================================
|
||||
|
||||
@test "store_session_id writes session to file with timestamp" {
|
||||
run store_session_id "session-test-abc"
|
||||
|
||||
[[ -f "$CLAUDE_SESSION_FILE" ]] || skip "store_session_id not yet implemented"
|
||||
|
||||
local content=$(cat "$CLAUDE_SESSION_FILE")
|
||||
[[ "$content" == *"session-test-abc"* ]]
|
||||
}
|
||||
|
||||
@test "get_last_session_id retrieves stored session" {
|
||||
# First store a session
|
||||
echo '{"session_id": "session-retrieve-test", "timestamp": "2026-01-09T10:00:00Z"}' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run get_last_session_id
|
||||
|
||||
[[ "$output" == *"session-retrieve-test"* ]]
|
||||
}
|
||||
|
||||
@test "get_last_session_id returns empty when no session file" {
|
||||
rm -f "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run get_last_session_id
|
||||
|
||||
# Should return empty string, not error
|
||||
[[ $status -eq 0 ]]
|
||||
[[ -z "$output" || "$output" == "" || "$output" == "null" ]]
|
||||
}
|
||||
|
||||
@test "should_resume_session returns true for recent session" {
|
||||
# Store a recent session
|
||||
local now_iso=$(date -Iseconds 2>/dev/null || date +%Y-%m-%dT%H:%M:%S%z)
|
||||
echo "{\"session_id\": \"session-recent\", \"timestamp\": \"$now_iso\"}" > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
# Should indicate session can be resumed
|
||||
[[ "$output" == "true" ]]
|
||||
}
|
||||
|
||||
@test "should_resume_session returns false for old session" {
|
||||
# Store an old session (24+ hours ago)
|
||||
echo '{"session_id": "session-old", "timestamp": "2020-01-01T00:00:00Z"}' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
# Should indicate session expired
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
|
||||
@test "should_resume_session returns false when no session file" {
|
||||
rm -f "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
# Should indicate no session to resume
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION ID EXTRACTION FROM CLAUDE OUTPUT
|
||||
# =============================================================================
|
||||
|
||||
@test "parse_json_response extracts sessionId from Claude CLI format" {
|
||||
local output_file="$LOG_DIR/test_output.log"
|
||||
|
||||
cat > "$output_file" << 'EOF'
|
||||
{
|
||||
"result": "Working on feature implementation.",
|
||||
"sessionId": "session-unique-123"
|
||||
}
|
||||
EOF
|
||||
|
||||
run parse_json_response "$output_file"
|
||||
local result_file=".json_parse_result"
|
||||
|
||||
[[ -f "$result_file" ]]
|
||||
|
||||
local session_id=$(jq -r '.session_id' "$result_file")
|
||||
assert_equal "$session_id" "session-unique-123"
|
||||
}
|
||||
|
||||
@test "analyze_response persists sessionId to session file" {
|
||||
local output_file="$LOG_DIR/test_output.log"
|
||||
|
||||
cat > "$output_file" << 'EOF'
|
||||
{
|
||||
"result": "Working on implementation.",
|
||||
"sessionId": "session-persist-test-456"
|
||||
}
|
||||
EOF
|
||||
|
||||
analyze_response "$output_file" 1
|
||||
|
||||
# Session ID should be persisted
|
||||
[[ -f "$CLAUDE_SESSION_FILE" ]]
|
||||
|
||||
local stored=$(cat "$CLAUDE_SESSION_FILE" 2>/dev/null)
|
||||
[[ "$stored" == *"session-persist-test-456"* ]]
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION CONTINUITY IN CLAUDE CLI COMMAND
|
||||
# =============================================================================
|
||||
|
||||
@test "--continue flag is added to Claude CLI command" {
|
||||
# Check that --continue is used in build_claude_command
|
||||
run grep -E '\-\-continue' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ $status -eq 0 ]]
|
||||
[[ "$output" == *"--continue"* ]]
|
||||
}
|
||||
|
||||
@test "CLAUDE_USE_CONTINUE configuration controls session continuity" {
|
||||
# Check that CLAUDE_USE_CONTINUE is defined and controls --continue
|
||||
run grep 'CLAUDE_USE_CONTINUE' "${BATS_TEST_DIRNAME}/../../ralph_loop.sh"
|
||||
|
||||
[[ $status -eq 0 ]]
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# SESSION EXPIRATION HANDLING
|
||||
# =============================================================================
|
||||
|
||||
@test "SESSION_EXPIRATION_SECONDS is defined in response_analyzer" {
|
||||
run grep 'SESSION_EXPIRATION_SECONDS' "${BATS_TEST_DIRNAME}/../../lib/response_analyzer.sh"
|
||||
|
||||
[[ $status -eq 0 ]]
|
||||
[[ "$output" == *"86400"* ]] # 24 hours in seconds
|
||||
}
|
||||
|
||||
@test "expired session (24+ hours) is not resumed" {
|
||||
# Create old session
|
||||
echo '{"session_id": "old-session", "timestamp": "2020-01-01T00:00:00Z"}' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# EDGE CASES
|
||||
# =============================================================================
|
||||
|
||||
@test "store_session_id handles empty session ID" {
|
||||
run store_session_id ""
|
||||
|
||||
# Should fail or return error status
|
||||
[[ $status -ne 0 ]]
|
||||
}
|
||||
|
||||
@test "get_last_session_id handles corrupted JSON file" {
|
||||
echo "not valid json at all {{{" > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run get_last_session_id
|
||||
|
||||
# Should not error, should return empty
|
||||
[[ $status -eq 0 ]]
|
||||
[[ -z "$output" || "$output" == "" || "$output" == "null" ]]
|
||||
}
|
||||
|
||||
@test "should_resume_session handles corrupted JSON file" {
|
||||
echo "corrupted json {{{" > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
# Should return false, not error
|
||||
[[ $status -eq 0 || $status -eq 1 ]] # Either is acceptable
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
|
||||
@test "should_resume_session handles missing timestamp field" {
|
||||
echo '{"session_id": "session-no-time"}' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
run should_resume_session
|
||||
|
||||
# Should return false since no timestamp to validate
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
|
||||
# =============================================================================
|
||||
# INTEGRATION: FULL SESSION LIFECYCLE
|
||||
# =============================================================================
|
||||
|
||||
@test "full session lifecycle: store -> get -> check -> expires" {
|
||||
# 1. Store a session
|
||||
store_session_id "lifecycle-session-001"
|
||||
|
||||
# 2. Get it back
|
||||
local stored=$(get_last_session_id)
|
||||
[[ "$stored" == "lifecycle-session-001" ]]
|
||||
|
||||
# 3. Check if resumable (should be true since just created)
|
||||
run should_resume_session
|
||||
[[ "$output" == "true" ]]
|
||||
|
||||
# 4. Simulate expiration by setting old timestamp
|
||||
echo '{"session_id": "lifecycle-session-001", "timestamp": "2020-01-01T00:00:00Z"}' > "$CLAUDE_SESSION_FILE"
|
||||
|
||||
# 5. Check again (should be expired)
|
||||
run should_resume_session
|
||||
[[ "$output" == "false" ]]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue