6183ee3230
CI / lint (pull_request) Successful in 14s
CI / typecheck (pull_request) Successful in 27s
CI / security (pull_request) Successful in 22s
CI / quality (pull_request) Successful in 16s
CI / integration_tests (pull_request) Successful in 4m53s
CI / build (pull_request) Successful in 16s
CI / unit_tests (pull_request) Successful in 10m5s
CI / docker (pull_request) Successful in 39s
CI / coverage (pull_request) Successful in 7m16s
26 lines
1.3 KiB
Plaintext
26 lines
1.3 KiB
Plaintext
*** Settings ***
|
|
Documentation Integration tests for plan phase/state rebaseline migration (a5_005).
|
|
... Verifies that the rebaselined v3_plans table accepts the Action phase
|
|
... and Apply terminal processing states.
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Variables ***
|
|
${HELPER_SCRIPT} robot/helper_plan_phase_migration.py
|
|
|
|
*** Test Cases ***
|
|
Insert Plan With Action Phase And Queued State
|
|
[Documentation] Verify a plan with phase='action' and processing_state='queued' persists
|
|
[Tags] database migration plan_phase
|
|
${result}= Run Process ${PYTHON} ${HELPER_SCRIPT} action-queued cwd=${WORKSPACE}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} action-queued-ok
|
|
|
|
Insert Plan With Apply Phase And Applied State
|
|
[Documentation] Verify a plan with phase='apply' and processing_state='applied' persists
|
|
[Tags] database migration plan_phase
|
|
${result}= Run Process ${PYTHON} ${HELPER_SCRIPT} apply-applied cwd=${WORKSPACE}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} apply-applied-ok
|