8ea00f5185
CI / unit_tests (push) Has been cancelled
CI / benchmark-publish (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / security (push) Has been cancelled
CI / quality (push) Has been cancelled
CI / integration_tests (push) Has been cancelled
CI / e2e_tests (push) Has been cancelled
CI / coverage (push) Has been cancelled
CI / benchmark-regression (push) Has been cancelled
CI / build (push) Has been cancelled
CI / push-validation (push) Has been cancelled
CI / status-check (push) Has been cancelled
CI / docker (push) Has been cancelled
CI / helm (push) Has been cancelled
Co-authored-by: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Co-committed-by: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
48 lines
2.6 KiB
Plaintext
48 lines
2.6 KiB
Plaintext
*** Settings ***
|
|
Documentation TDD Bug #1023 — CLI commands should succeed without explicit init
|
|
... Integration smoke tests verifying that DB-dependent CLI commands
|
|
... (e.g., ``resource add``, ``project create``) succeed in a fresh
|
|
... environment where ``agents init`` has NOT been run, when
|
|
... ``CLEVERAGENTS_AUTO_APPLY_MIGRATIONS=true`` is set.
|
|
...
|
|
... Bug #1023 reports that ``CLEVERAGENTS_AUTO_APPLY_MIGRATIONS=true``
|
|
... triggers migrations on an existing database but does NOT create
|
|
... the database file or its parent directory structure.
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Variables ***
|
|
${HELPER} ${CURDIR}/helper_tdd_e2e_implicit_init.py
|
|
|
|
*** Test Cases ***
|
|
TDD Resource Add Succeeds Without Explicit Init
|
|
[Documentation] Verify that ``resource add`` succeeds in a fresh
|
|
... environment without prior ``agents init`` when
|
|
... ``CLEVERAGENTS_AUTO_APPLY_MIGRATIONS=true`` is set.
|
|
... The helper exits 0 with a sentinel when the command
|
|
... succeeds (bug is fixed), and exits 1 when the bug is
|
|
... present (OperationalError).
|
|
[Tags] tdd_issue tdd_issue_1023 tdd_issue tdd_issue_4317 tdd_expected_fail
|
|
|
|
${result}= Run Process ${PYTHON} ${HELPER} resource-add-no-init cwd=${WORKSPACE} timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} tdd-resource-add-no-init-ok
|
|
|
|
TDD Project Create Succeeds Without Explicit Init
|
|
[Documentation] Verify that ``project create`` succeeds in a fresh
|
|
... environment without prior ``agents init`` when
|
|
... ``CLEVERAGENTS_AUTO_APPLY_MIGRATIONS=true`` is set.
|
|
... The helper exits 0 with a sentinel when the command
|
|
... succeeds (bug is fixed), and exits 1 when the bug is
|
|
... present (OperationalError).
|
|
[Tags] tdd_issue tdd_issue_1023 tdd_issue tdd_issue_4317 tdd_expected_fail
|
|
|
|
${result}= Run Process ${PYTHON} ${HELPER} project-create-no-init cwd=${WORKSPACE} timeout=120s on_timeout=kill
|
|
Log ${result.stdout}
|
|
Log ${result.stderr}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} tdd-project-create-no-init-ok
|