Add log level test for foreman and proxy#22148
Open
shubhamsg199 wants to merge 1 commit into
Open
Conversation
Signed-off-by: Shubham Ganar <shubhamsg123m@gmail.com>
Contributor
Reviewer's GuideAdds an end-to-end foremanctl log level management test that validates setting and resetting log levels for Foreman and Proxy services, including persistence in the parameters file and debug output in system journals. 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
paramsobject fromload_remote_yaml_fileis treated both as having attributes (e.g.params.foreman_log_level) and as a mapping (e.g.params.get(...)); consider using a single consistent access pattern (likely dict-style) to avoid runtime errors. - The grep pattern
"\[D|"in the foreman journal check looks suspicious, as[starts a character class and|is not alternation in grep; if you intend to match the literal sequence[D|or[D|...], adjust the escaping or pattern (e.g."\[D\|"or a more precise regex).
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The `params` object from `load_remote_yaml_file` is treated both as having attributes (e.g. `params.foreman_log_level`) and as a mapping (e.g. `params.get(...)`); consider using a single consistent access pattern (likely dict-style) to avoid runtime errors.
- The grep pattern `"\[D|"` in the foreman journal check looks suspicious, as `[` starts a character class and `|` is not alternation in grep; if you intend to match the literal sequence `[D|` or `[D|...]`, adjust the escaping or pattern (e.g. `"\[D\|"` or a more precise regex).Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
2 tasks
evgeni
approved these changes
Jul 15, 2026
Contributor
Author
|
arvind4501
reviewed
Jul 15, 2026
| ' --add-feature hammer' | ||
| ' --foreman-log-level=debug' | ||
| ' --foreman-proxy-log-level=debug' | ||
| ' --log-level=debug', |
Contributor
There was a problem hiding this comment.
since --log-level=debug sets foreman and proxy both log levels as debug. would it be better to provide diffrent values for --foreman-log-level and --foreman-proxy-log-level to a different value than debug? that way we also test that --foreman-log-level = something overides --log-level for foreman?
Collaborator
|
PRT Result |
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.
Adding foremanctl log level management tests for foreman and foreman-proxy
Summary by Sourcery
Tests: