use crate::declare_detector;
use crate::diagnostic::{Action, Deb822Action, Diagnostic, ParagraphSelector};
use crate::{FixerError, FixerPreferences, LintianIssue, Visibility};
use debian_workspace::Workspace;
use std::path::PathBuf;
const NEW_MAINTAINER: &str = "Debian Python Team <team+python@tracker.debian.org>";
const OBSOLETE_EMAILS: &[&str] = &[
"python-modules-team@lists.alioth.debian.org",
"python-modules-team@alioth-lists.debian.net",
"python-apps-team@lists.alioth.debian.org",
];
fn parse_email(maintainer_field: &str) -> Option<&str> {
let start = maintainer_field.rfind('<')?;
let end = maintainer_field[start..].find('>')?;
let email = &maintainer_field[start + 1..start + end];
if email.is_empty() {
None
} else {
Some(email)
}
}
pub fn detect(
ws: &dyn Workspace,
_preferences: &FixerPreferences,
) -> Result<Vec<Diagnostic>, FixerError> {
let control_rel = PathBuf::from("debian/control");
let control = match ws.parsed_control() {
Ok(c) => c,
Err(debian_workspace::Error::NotFound) => return Ok(Vec::new()),
Err(e) => return Err(e.into()),
};
let Some(source) = control.source() else {
return Ok(Vec::new());
};
let Some(source_name) = source.as_deb822().get("Source") else {
return Ok(Vec::new());
};
let Some(maintainer) = source.as_deb822().get("Maintainer") else {
return Ok(Vec::new());
};
let Some(email) = parse_email(&maintainer) else {
return Ok(Vec::new());
};
if !OBSOLETE_EMAILS.contains(&email) {
return Ok(Vec::new());
}
let issue = LintianIssue::source_with_info(
"python-teams-merged",
Visibility::Warning,
vec![email.to_string()],
);
Ok(vec![Diagnostic::with_actions(
issue,
"Maintainer points at obsolete Python team address.",
"Update maintainer email for merge of DPMT and PAPT.",
vec![Action::Deb822(Deb822Action::SetField {
file: control_rel,
paragraph: ParagraphSelector::ByKey {
field: "Source".into(),
value: source_name,
},
field: "Maintainer".into(),
value: NEW_MAINTAINER.into(),
})],
)])
}
declare_detector! {
name: "python-teams-merged",
tags: ["python-teams-merged"],
triggers: [
debian_workspace::Trigger::Deb822Field {
file: "debian/control",
paragraph_key: "Source",
field: "Source",
},
debian_workspace::Trigger::Deb822Field {
file: "debian/control",
paragraph_key: "Source",
field: "Maintainer",
},
],
detect: |ws, prefs| detect(ws, prefs),
}
#[cfg(test)]
mod tests {
use super::*;
use crate::detector::Detector;
use crate::{FixerPreferences, Version};
use std::fs;
use std::path::Path;
use tempfile::TempDir;
fn run_apply(base: &Path) -> Result<crate::FixerResult, FixerError> {
let version: Version = "1.0".parse().unwrap();
let adapter = DetectorImpl;
{
let ws = debian_workspace::fs_workspace::FsWorkspace::new(
base,
Some("test".into()),
Some(version.clone()),
);
adapter.apply(&ws, &FixerPreferences::default())
}
}
#[test]
fn test_no_control_file() {
let tmp = TempDir::new().unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
#[test]
fn test_update_obsolete_maintainer() {
let tmp = TempDir::new().unwrap();
let debian = tmp.path().join("debian");
fs::create_dir(&debian).unwrap();
let control = debian.join("control");
fs::write(
&control,
"Source: foo\nMaintainer: Python Modules Packaging Team <python-modules-team@lists.alioth.debian.org>\nUploaders: Jelmer Vernooij <jelmer@debian.org>\n",
)
.unwrap();
let result = run_apply(tmp.path()).unwrap();
assert_eq!(
result.description,
"Update maintainer email for merge of DPMT and PAPT."
);
assert_eq!(
fs::read_to_string(&control).unwrap(),
"Source: foo\nMaintainer: Debian Python Team <team+python@tracker.debian.org>\nUploaders: Jelmer Vernooij <jelmer@debian.org>\n",
);
}
#[test]
fn test_no_maintainer_field() {
let tmp = TempDir::new().unwrap();
let debian = tmp.path().join("debian");
fs::create_dir(&debian).unwrap();
fs::write(debian.join("control"), "Source: foo\n").unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
#[test]
fn test_non_obsolete_maintainer() {
let tmp = TempDir::new().unwrap();
let debian = tmp.path().join("debian");
fs::create_dir(&debian).unwrap();
fs::write(
debian.join("control"),
"Source: foo\nMaintainer: John Doe <john@example.com>\n",
)
.unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
#[test]
fn test_parse_email() {
assert_eq!(
parse_email("John Doe <john@example.com>"),
Some("john@example.com")
);
assert_eq!(parse_email("John Doe"), None);
assert_eq!(parse_email(""), None);
assert_eq!(parse_email("<>"), None);
}
}