Files
cleveragents-core/robot/repl_smoke.robot
T
freemo b122ec7ed5
CI / lint (pull_request) Successful in 23s
CI / quality (pull_request) Successful in 51s
CI / typecheck (pull_request) Successful in 1m0s
CI / security (pull_request) Successful in 55s
CI / build (pull_request) Successful in 25s
CI / helm (pull_request) Successful in 32s
CI / push-validation (pull_request) Successful in 26s
CI / e2e_tests (pull_request) Successful in 3m38s
CI / integration_tests (pull_request) Successful in 6m42s
CI / unit_tests (pull_request) Successful in 8m19s
CI / docker (pull_request) Successful in 13s
CI / coverage (pull_request) Successful in 15m23s
CI / status-check (pull_request) Successful in 2s
fix(test-infra): remove redundant ${PYTHON} variable definitions from robot files
Remove the local ${PYTHON}    python (and python3) variable definitions from
the *** Variables *** sections of all affected robot files. These local
definitions were overriding the pabot-injected venv Python path passed via
--variable PYTHON:/path/to/venv/python, causing tests to use the system
Python (which lacks required packages like structlog, sqlalchemy, etc.)
instead of the nox venv Python.

The correct ${PYTHON} value is already set by Setup Test Environment in
common.resource via sys.executable, and pabot passes it via --variable.
The local fallback definitions are redundant and harmful in parallel runs.

Audit found 56 robot files with the pattern (more than the 9 originally
identified in the issue). All occurrences have been removed.

ISSUES CLOSED: #1309
2026-04-14 14:50:55 +00:00

65 lines
2.6 KiB
Plaintext

*** Settings ***
Documentation REPL command smoke tests for CleverAgents
Resource ${CURDIR}/common.resource
Library Process
Library OperatingSystem
Library String
Library Collections
Library ${CURDIR}/helper_repl_smoke.py
Suite Setup Setup Test Environment
Suite Teardown Cleanup Test Environment
*** Test Cases ***
REPL Help Flag Displays Usage
[Documentation] ``agents repl --help`` shows the REPL help text
${result}= Run Process ${PYTHON} -m cleveragents repl --help timeout=120s on_timeout=kill
Should Be Equal As Integers ${result.rc} 0
Should Contain ${result.stdout} interactive REPL session
REPL Module Is Importable
[Documentation] The repl module can be imported without errors
${result}= Run Process ${PYTHON} -c from cleveragents.cli.commands.repl import run_repl, dispatch_command timeout=120s on_timeout=kill
Should Be Equal As Integers ${result.rc} 0
REPL Prompt Context Without Env Vars
[Documentation] Default prompt context is ``agents> ``
${prompt}= Get Default Prompt
Should Be Equal ${prompt} agents>${{' '}}
REPL Prompt Context With Project
[Documentation] Prompt contains the project name from env var
${prompt}= Get Prompt With Project myproj
Should Contain ${prompt} myproj
REPL Prompt Context With Project And Plan
[Documentation] Prompt contains project/plan from env vars
${prompt}= Get Prompt With Project And Plan myproj myplan
Should Contain ${prompt} myproj
Should Contain ${prompt} myplan
REPL Dispatch Version Command
[Documentation] dispatch_command(["--version"]) returns 0
${rc}= Dispatch Argv --version
Should Be Equal As Integers ${rc} 0
REPL Run With Immediate EOF Exits Cleanly
[Documentation] REPL with no input (immediate EOF) exits with code 0
${rc}= Run Repl With Eof
Should Be Equal As Integers ${rc} 0
REPL Help Builtin Shows Commands
[Documentation] ``:help`` built-in prints available commands
${output}= Run Repl With Help
Should Contain ${output} Built-in commands
Should Contain ${output} :exit
REPL No Previous Command Warning
[Documentation] ``!!`` with no prior command shows a warning
${output}= Run Repl With Bang Bang
Should Contain ${output} No previous command
REPL Completer Is Installed
[Documentation] Tab completer recognises known REPL commands
${ok}= Verify Completer
Should Be True ${ok}