chore(test): migrate the integration tests for ota_metadata to follow new test layout#927
Merged
Bodong-Yang merged 4 commits intoMay 19, 2026
Merged
Conversation
Migrate the three legacy ota_metadata integration tests (`test_ca_store`, `test_legacy2/test_csv_parser`, `test_ota_image_v1/test_cert_verification`) to the new `test/integration/test_ota_metadata/` layout. Conventions applied per MIGRATION_PLAN §3: - `gen_certs.sh` relocated to subtree-local `test/integration/test_ota_metadata/keys/`, scoped to the smallest subtree that consumes it. - `/ota-image` container dependency declared in a local `test_legacy2/conftest.py`. - Imports from `tests.conftest` removed; `TEST_DIR` and `TestConfiguration` references replaced with `Path(__file__)`-based locals or local-conftest constants. - Unused `TEST_BASE_SIGN_PEM` reference dropped. Test bodies are otherwise preserved verbatim. All 13 cases pass under `docker/test_base/docker-compose_tests_py313.yml`. Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
Contributor
📊 OTA Update Performance Comparison Report
⏱️ Execution Time
|
This was referenced May 1, 2026
|
❌ The last analysis has failed. |
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Introduction
This PR migrates the integration tests part of existed tests for
ota_metadatapackage to follow the new test layout.