analysis/tracing: add canary requirement and test links - #581
Draft
Nikhil2206 wants to merge 3 commits into
Draft
Nikhil2206 wants to merge 3 commits into
Nikhil2206 wants to merge 3 commits into
Conversation
Nikhil2206
requested review from
4og,
antonkri,
arkjedrz,
aschemmel-tech,
fbaeuerle and
pawelrutkaq
as code owners
September 11, 2026 08:07
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:07 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:07 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:07 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:07 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
requested a deployment
to
workflow-approval
September 11, 2026 08:23 — with
GitHub Actions
Waiting
Nikhil2206
marked this pull request as draft
September 11, 2026 08:23
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.
Summary
Author the missing
analysis/tracingcomponent requirement and link all 24 canary wrapper tests to it.The requirement covers canary-protected data integrity: wrapping arbitrary data with configurable canaries, detecting corruption at either boundary, and reporting corrupted data as unavailable.
Changes
comp_req__analysis_tracing__canary_protected_data_integrity.analysis/tracingdocumentation bundle and root component wiring.RecordPropertymetadata to all 24 canary wrapper tests.Validation
bazel test --config=bl-x86_64-linux //score/analysis/tracing/common/canary_wrapper/test:canary_wrapper_test-> passed.bazel build //score/analysis/tracing:docs-> passed.bazel run //:format.fix -- ...-> completed successfully.git diff --check-> passed.The full
bazel run //:docscommand is blocked before Sphinx validation by the pre-existing root-owned_build/permission error. The component docs bundle itself builds successfully.Traceability
All tests use
PartiallyVerifies,Description,TestType, andDerivationTechnique. Deliberately corrupted canary tests usefault-injection; boundary-validity cases useboundary-values.The requirement derives from
feat_req__com__data_corruption[version==1], which requires protection against corruption of data consumed by higher-criticality partners.