-
Notifications
You must be signed in to change notification settings - Fork 233
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
buck2_validation: tweak and slightly improve error message #769
base: main
Are you sure you want to change the base?
buck2_validation: tweak and slightly improve error message #769
Conversation
b7f8aaf
to
d93ae63
Compare
24e0bcf
to
8b24471
Compare
8b24471
to
010f9b3
Compare
e3b9f8d
to
7aacdf1
Compare
7aacdf1
to
47c4740
Compare
47c4740
to
ee9f2b1
Compare
43e16f1
to
ab62fdc
Compare
Previously, when using `ValidationInfo()` with a failure, it ends up turning out an awkward message that turns { "status": "failure", "message": "you failed the test!" } into "you failed the test!". After this patch, it comes out as: you failed the test! Which seems much more reasonable and easy to parse. It also gives the validation message more control over the punctuation. Signed-off-by: Austin Seipp <[email protected]>
ab62fdc
to
4705939
Compare
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.
First of all, thanks for the PR! @thoughtpolice do you mind also fixing the tests since we check the how validation messages are rendered in our e2e suite?
pub(crate) fn rendered_message(&self) -> Cow<str> { | ||
self.short_message.as_deref().map_or_else( | ||
|| Cow::Borrowed("Diagnostic message is missing from validation result"), | ||
|x| Cow::Owned(format!("\"{}\"", x)), | ||
|x| Cow::Owned(format!("{}", x)), | ||
) | ||
} |
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.
With this change it could be just simplified to return &str
:
pub(crate) fn rendered_message(&self) -> &str {
self.short_message.as_deref().unwrap_or("Diagnostic message is missing from validation result")
}
@facebook-github-bot has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Previously, when using
ValidationInfo()
with a failure, it ends up turning out an awkward message that turnsinto
After this patch, it comes out as:
Which seems much more reasonable and easy to parse. It also gives the validation message more control over the punctuation.