f7d2f63ab8
CI / lint (pull_request) Successful in 15s
CI / typecheck (pull_request) Successful in 28s
CI / security (pull_request) Successful in 23s
CI / quality (pull_request) Successful in 15s
CI / integration_tests (pull_request) Successful in 5m11s
CI / build (pull_request) Successful in 16s
CI / unit_tests (pull_request) Successful in 14m31s
CI / docker (pull_request) Successful in 40s
CI / coverage (pull_request) Successful in 8m18s
CI / lint (push) Successful in 13s
CI / typecheck (push) Successful in 28s
CI / security (push) Successful in 23s
CI / quality (push) Successful in 16s
CI / integration_tests (push) Successful in 4m58s
CI / build (push) Successful in 15s
CI / unit_tests (push) Successful in 15m30s
CI / coverage (push) Has been cancelled
CI / docker (push) Has been cancelled
25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
*** Settings ***
|
|
Documentation Integration tests for project repositories: NamespacedProjectRepository
|
|
... and ProjectResourceLinkRepository round-trip persistence.
|
|
Resource ${CURDIR}/common.resource
|
|
Suite Setup Setup Test Environment
|
|
Suite Teardown Cleanup Test Environment
|
|
|
|
*** Variables ***
|
|
${HELPER_SCRIPT} robot/helper_project_repository.py
|
|
|
|
*** Test Cases ***
|
|
Project Repository CRUD Round Trip
|
|
[Documentation] Verify project create, get, list, update, delete via repository
|
|
[Tags] database project repository roundtrip
|
|
${result}= Run Process ${PYTHON} ${HELPER_SCRIPT} project-crud cwd=${WORKSPACE}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} project-crud-ok
|
|
|
|
Link Repository CRUD Round Trip
|
|
[Documentation] Verify link create, list, get, remove, and alias uniqueness via repository
|
|
[Tags] database project link repository roundtrip
|
|
${result}= Run Process ${PYTHON} ${HELPER_SCRIPT} link-crud cwd=${WORKSPACE}
|
|
Should Be Equal As Integers ${result.rc} 0
|
|
Should Contain ${result.stdout} link-crud-ok
|