3eecb79003
CI / lint (pull_request) Successful in 16s
CI / quality (pull_request) Successful in 46s
CI / typecheck (pull_request) Successful in 56s
CI / security (pull_request) Successful in 56s
CI / benchmark-publish (pull_request) Has been skipped
CI / build (pull_request) Successful in 29s
CI / e2e_tests (pull_request) Successful in 2m7s
CI / unit_tests (pull_request) Successful in 3m8s
CI / docker (pull_request) Successful in 9s
CI / integration_tests (pull_request) Successful in 3m57s
CI / coverage (pull_request) Successful in 7m48s
CI / benchmark-regression (pull_request) Successful in 40m48s
TDD expected-fail tests proving bug #822 exists: CheckpointService.rollback_to_checkpoint() returns a successful RollbackResult but does not execute git reset --hard. Files modified after the checkpoint remain unchanged after rollback. Also fixes Robot Framework timeout robustness across the entire test suite: all Run Process calls now use on_timeout=kill (prevents SIGTERM-induced -15 exit codes under CI load) and timeouts increased to 120s (prevents premature kills during heavy parallel execution). ISSUES CLOSED: #839
58 lines
2.6 KiB
Plaintext
58 lines
2.6 KiB
Plaintext
*** Settings ***
|
|
Documentation Integration smoke tests for domain-specific analyzers
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Variables ***
|
|
${HELPER} ${CURDIR}/helper_domain_analyzers.py
|
|
|
|
*** Test Cases ***
|
|
Analyze Python Source
|
|
[Documentation] PythonAnalyzer extracts Module, Class, and Function triples
|
|
${result}= Run Process ${PYTHON} ${HELPER} analyze-python timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} analyze-python-ok
|
|
|
|
Analyze Markdown Document
|
|
[Documentation] MarkdownAnalyzer extracts Document and Section triples
|
|
${result}= Run Process ${PYTHON} ${HELPER} analyze-markdown timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} analyze-markdown-ok
|
|
|
|
Analyze PostgreSQL DDL
|
|
[Documentation] PostgreSQLAnalyzer extracts Table and Column triples
|
|
${result}= Run Process ${PYTHON} ${HELPER} analyze-postgresql timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} analyze-postgresql-ok
|
|
|
|
Analyze Docker Compose YAML
|
|
[Documentation] DockerComposeAnalyzer extracts Service and DeploymentUnit triples
|
|
${result}= Run Process ${PYTHON} ${HELPER} analyze-docker-compose timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} analyze-docker-compose-ok
|
|
|
|
Verify Analyzer Protocol Conformance
|
|
[Documentation] All four analyzers satisfy AnalyzerProtocol
|
|
${result}= Run Process ${PYTHON} ${HELPER} protocol-check timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} protocol-check-ok
|
|
|
|
Verify Analyzer Registry Lookup
|
|
[Documentation] AnalyzerRegistry registers all four analyzers and resolves by extension
|
|
${result}= Run Process ${PYTHON} ${HELPER} registry-check timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} registry-check-ok
|