test(integ): sdk-ccapi-crossref failure-seeking integration test - #853
Merged
Conversation
Add a failure-seeking integration fixture exercising the boundary between SDK Providers and the Cloud Control API. The stack mixes heterogeneously routed resources (some provisioned via SDK Providers, some via the Cloud Control API fallback) and wires bidirectional cross-references between them so that attributes resolved through one routing path feed into resources created through the other. This stresses intrinsic-function resolution and DAG ordering across the routing boundary, a path narrow single-routing fixtures never cover. Test-only: no src changes. Validated PASS against real AWS via the batch-2/3 run (clean deploy + destroy, no orphan resources).
|
🎉 This PR is included in version 0.221.10 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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
Adds a failure-seeking integration fixture,
sdk-ccapi-crossref, thatexercises the boundary between cdkd's two provisioning paths: SDK Providers
and the Cloud Control API fallback.
This is a test-only change. There are no
src/**modifications.What it covers
resources provisioned via SDK Providers with resources provisioned via the
Cloud Control API fallback, so a single deploy drives both routing layers
concurrently.
resolved through one routing path are threaded into resources created via the
other, in both directions. This stresses intrinsic-function resolution
(
Ref/Fn::GetAtt) and DAG ordering across the SDK-Provider <-> CloudControl API boundary, a path that narrow single-routing fixtures never
exercise.
each cross-referenced attribute resolves to the value produced by the other
routing path, and the post-destroy sweep confirms no orphan resources remain.
Validation
Validated PASS against real AWS as part of the batch-2/3 run: clean deploy
followed by a clean destroy, with no leftover AWS resources.
Notes
Coverage matrices (
docs/_generated/*,docs/integ-coverage.md,docs/scenario-coverage.md) and the scenario-coverage script were regeneratedto register the new fixture. No
Closes #issue is associated with this PR.