-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Validate triagebot.toml
in tidy/CI
#106104
Comments
Mentoring instructions: Add a new check to tidy around here that parses rust/src/tools/tidy/src/lib.rs Lines 41 to 58 in 17395b4
See the existing tidy files for an example of how to write a tidy check. |
Hi, I'm a new contributor here and thought of picking this as my first issue. From what I understand, a new crate (something like |
@aadityadhruv a new module, not a new crate. The module should be part of |
Right, that makes sense. Thank you! |
Hi, sorry for the late response, I was out traveling. I'm currently confused about a certain thing. Currently what I am trying to do is manually check the file for valid syntax, by going over it line by line. Is this the correct method to do this, or should I be using an already existing crate like Also, I was wondering something about Path in the check function. For this module, would I need to check/filter any paths like some other modules do? I was assuming that I will simply open path + Any help is appreciated! |
Yes, please use toml, don't use regex or anything like that. |
I personally would prefer to see this implemented in triagebot itself instead of tidy. That would make it work for all repositories. It should be fairly trivial to add a handler that checks for a PR that modifies triagebot.toml and to validate it, and post a comment if it is not correct. It can even use the |
@aadityadhruv are you still working on this? |
Hi, yeah I'm sorry, I'm still working on it. I've been pretty busy the last couple of days, I'll get it done this week itself. Hope that's ok! |
Yeah! it's alright |
Sorry for being slow with the issue, but along with being busy, I've been kinda stuck, and was unsure if I should ask for help. I am currently unsure if I should be doing work in |
Here is the code I had written (it does not work since I do not know what the configuration of the toml is): use crate::walk::{filter_dirs, walk};
use serde::Deserialize;
use std::path::Path;
#[derive(Deserialize)]
struct Config {}
pub fn check(path: &Path, bad: &mut bool) {
walk(path, &mut |path| filter_dirs(path), &mut |entry, contents| {
let file = entry.path();
let filename = file.file_name().unwrap();
if filename != "triagebot.toml" {
return;
}
let conf: Result<Config, toml::de::Error> = toml::from_str(contents);
match conf {
Ok(_) => {}
Err(_err) => {
tidy_error!(bad, "{} is an invalid toml file", file.display())
}
}
});
} I am unsure what would be the right next step here. |
Hi @aadityadhruv . I am new here and just looking through for an issue I can get started with. So keeping that in mind, here is my idea. If you look at the documentation for the toml crate there is a method where you can just parse an entire string into a My very short code is here:
I hope it helps. |
This looks great! Thank you! |
Here is a PR for the same: #106559 |
|
Just thought I'd drop by and say that this would have been nice to avoid #106848 😅 |
Ah, that wouldn't have been caught actually - the toml syntax was valid, the file just didn't exist in the repository. Checking if the glob has at least one match seems possible. |
I see the PR up but not sure if anyone is still working on the requested changes? |
Yeah I'm currently working on it in the triagebot repo, I haven't opened a PR/Issue yet for it. |
@rustbot claim |
fixes rust-lang/rust#106104 a successful run is visible here: meysam81/triagebot-test#2 (comment)
Can someone please review this change: rust-lang/triagebot#1730 |
fixes rust-lang/rust#106104 a successful run is visible here: meysam81/triagebot-test#2 (comment)
Would've prevented #106102, which broke in #105661.
We should at least validate the toml file is valid syntax, but ideally we'd validate more context-specific stuff.
The text was updated successfully, but these errors were encountered: