adjusted asserts for mcp user tests - #20852
Merged
Merged
Conversation
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the MCP user permission system tests to be more resilient to transient connection issues and to assert the exact error payload for denied resource access. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
Author
|
trigger: test-robottelo |
Contributor
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The retry logic based on checking for
'Max retries exceeded'inresult.data['error']is brittle; consider encapsulating this in a small helper or using a more structured condition (e.g., error code/type) so other error messages don’t trigger an opaque second call. - The new assertion on
result.data['response']['error']['message']assumes a specific nested response structure; consider using.getor adding an explicit assertion thatresponseanderrorkeys exist to avoid confusingKeyError/TypeErrorfailures.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The retry logic based on checking for `'Max retries exceeded'` in `result.data['error']` is brittle; consider encapsulating this in a small helper or using a more structured condition (e.g., error code/type) so other error messages don’t trigger an opaque second call.
- The new assertion on `result.data['response']['error']['message']` assumes a specific nested response structure; consider using `.get` or adding an explicit assertion that `response` and `error` keys exist to avoid confusing `KeyError`/`TypeError` failures.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Collaborator
|
PRT Result |
ColeHiggins2
approved these changes
Feb 24, 2026
lpramuk
approved these changes
Feb 25, 2026
github-actions Bot
pushed a commit
that referenced
this pull request
Feb 25, 2026
(cherry picked from commit 7777535)
github-actions Bot
pushed a commit
that referenced
this pull request
Feb 25, 2026
(cherry picked from commit 7777535)
lpramuk
pushed a commit
that referenced
this pull request
Feb 25, 2026
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.
Problem Statement
targeting an issue that isn't reproducible outside of our regular automation runs, therefore a bit mysterious. My hypothesis is that on the first run attempt the mcp client queries the mcp server before the connection with satellite is established using custom credentials.
Solution
Allow for a second try if the aforementioned issue happens
Related Issues