-
Notifications
You must be signed in to change notification settings - Fork 113
feat(toolkit-lib): diagnose hook failures in the central stack diagnoser #1786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a5967ef
feat(toolkit-lib): cdk diagnose surfaces the failure details of Cloud…
iankhou 439f5a8
test(cli-integ): cdk diagnose surfaces guard hook failure details
iankhou 5c3121f
Merge branch 'main' into iankhou-hook-error-diagnosis
iankhou 5f6d9c1
fix(toolkit-lib): use narrowed problem variant in hook diagnoser tests
iankhou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
...i-integ-tests/diagnose/cdk-diagnose-guard-hook-failure-displays-hook-details.integtest.ts
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| import { integTest, withSpecificFixture } from '../../../lib'; | ||
|
|
||
| jest.setTimeout(2 * 60 * 60_000); | ||
|
|
||
| integTest( | ||
| 'cdk diagnose after guard hook failure displays hook failure details', | ||
| withSpecificFixture('guard-hook-app', async (fixture) => { | ||
| // Deploy the setup stack which creates the Guard Hook via CloudFormation | ||
| await fixture.cdkDeploy('guard-hook-setup'); | ||
|
|
||
| // Attempt to deploy the non-compliant stack; it fails due to the Guard Hook. | ||
| // --no-rollback leaves the stack in CREATE_FAILED so diagnose can inspect it. | ||
| const deployOutput = await fixture.cdkDeploy('guard-hook-test', { | ||
| options: ['--no-rollback'], | ||
| allowErrExit: true, | ||
| }); | ||
| expect(deployOutput).toContain('CREATE_FAILED'); | ||
|
|
||
| // Run cdk diagnose on the failed stack | ||
| const diagnoseOutput = await fixture.cdk( | ||
| ['--unstable=diagnose', 'diagnose', fixture.fullStackName('guard-hook-test')], | ||
| { allowErrExit: true }, | ||
| ); | ||
|
|
||
| // diagnose has no live activity stream, so the hook failure details must have | ||
| // been fetched via the GetHookResult API and attached to the diagnosis | ||
| expect(diagnoseOutput).toContain("Hook 'Private::Guard::TestHook' failed: NonCompliant Rules:"); | ||
| expect(diagnoseOutput).toContain('[AWS_S3_Bucket_AccessControl]'); | ||
| expect(diagnoseOutput).toContain('• Check was not compliant as property [/Resources/NonCompliantBucket/Properties/AccessControl[L:0,C:91]] existed.'); | ||
| expect(diagnoseOutput).toContain('Remediation: AccessControl is deprecated'); | ||
| }), | ||
| ); |
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This adds a new API call, deserves an integ test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right, we test the deploy flow but now introduce this API call for diagnose. Will add an integ test.