[6.19.z] adjusted asserts for mcp user tests - #20868
Merged
lpramuk merged 1 commit intoFeb 25, 2026
Merged
Conversation
(cherry picked from commit 7777535)
Collaborator
Author
|
trigger: test-robottelo |
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideAdjusts the MCP user permissions system test to tolerate a transient connection error by retrying once and strengthens the negative-permission assertion to validate the exact access-denied error payload. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The retry logic based on a specific error message string is quite brittle; consider checking for a more structured error signal (e.g., status code/exception type) or wrapping this in a small helper so similar transient cases can be handled consistently across tests.
- The new assertion
result.data['response']['error']['message']assumes a deeply nested structure that may not always exist; you might want to guard this with safer access (e.g.,getor an explicit assertion on the response shape) to avoid unexpected KeyErrors masking the test intent.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The retry logic based on a specific error message string is quite brittle; consider checking for a more structured error signal (e.g., status code/exception type) or wrapping this in a small helper so similar transient cases can be handled consistently across tests.
- The new assertion `result.data['response']['error']['message']` assumes a deeply nested structure that may not always exist; you might want to guard this with safer access (e.g., `get` or an explicit assertion on the response shape) to avoid unexpected KeyErrors masking the test intent.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Contributor
|
trigger: test-robottelo |
Collaborator
Author
|
PRT Result |
lpramuk
deleted the
cherry-pick-6.19.z-7777535ba140615e9c13447e9f61c8b53e1f2f59
branch
February 25, 2026 14:46
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.
Cherrypick of PR: #20852
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
Summary by Sourcery
Relax flaky MCP user view permissions test behavior around transient connection failures and strengthen negative access assertion.
Tests: