use crate::declare_detector;
use crate::diagnostic::{Action, Deb822Action, Diagnostic, ParagraphSelector};
use crate::{FixerError, FixerPreferences, LintianIssue, Visibility};
use debian_workspace::Workspace;
use std::collections::HashSet;
use std::path::PathBuf;
const DESCRIPTION: &str = "Set Homepage field in Source rather than Binary package.";
const LABEL: &str = "Set Homepage field in Source rather than Binary package.";
pub fn detect(
ws: &dyn Workspace,
_preferences: &FixerPreferences,
) -> Result<Vec<Diagnostic>, FixerError> {
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 source_homepage = control.source().as_ref().and_then(|s| s.get("Homepage"));
let binaries_with_homepage: Vec<(String, String)> = control
.binaries()
.filter_map(|b| {
let homepage = b.get("Homepage")?;
let name = b.name()?;
Some((name, homepage))
})
.collect();
let mut diagnostics = Vec::new();
if let Some(source_hp) = &source_homepage {
for (name, hp) in &binaries_with_homepage {
if hp == source_hp {
let issue = LintianIssue::source_with_info(
"homepage-in-binary-package",
Visibility::Info,
vec![name.clone()],
);
diagnostics.push(Diagnostic::with_actions(
issue,
DESCRIPTION,
LABEL,
vec![Action::Deb822(Deb822Action::RemoveField {
file: PathBuf::from("debian/control"),
paragraph: ParagraphSelector::Binary {
package: name.clone(),
},
field: "Homepage".into(),
})],
));
}
}
} else {
let unique: HashSet<&str> = binaries_with_homepage
.iter()
.map(|(_, hp)| hp.as_str())
.collect();
if unique.len() == 1 && !binaries_with_homepage.is_empty() {
let homepage = binaries_with_homepage[0].1.clone();
let mut actions = Vec::with_capacity(binaries_with_homepage.len() + 1);
actions.push(Action::Deb822(Deb822Action::SetField {
file: PathBuf::from("debian/control"),
paragraph: ParagraphSelector::Source,
field: "Homepage".into(),
value: homepage,
}));
for (name, _) in &binaries_with_homepage {
actions.push(Action::Deb822(Deb822Action::RemoveField {
file: PathBuf::from("debian/control"),
paragraph: ParagraphSelector::Binary {
package: name.clone(),
},
field: "Homepage".into(),
}));
}
for (name, _) in &binaries_with_homepage {
let issue = LintianIssue::source_with_info(
"homepage-in-binary-package",
Visibility::Info,
vec![name.clone()],
);
diagnostics.push(Diagnostic::with_actions(
issue,
DESCRIPTION,
LABEL,
actions.clone(),
));
}
}
}
Ok(diagnostics)
}
declare_detector! {
name: "homepage-in-binary-package",
tags: ["homepage-in-binary-package"],
triggers: [
debian_workspace::Trigger::Deb822Field {
file: "debian/control",
paragraph_key: "Source",
field: "Homepage",
},
debian_workspace::Trigger::Deb822Field {
file: "debian/control",
paragraph_key: "Package",
field: "Homepage",
},
],
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-package".into()),
Some(version.clone()),
);
adapter.apply(&ws, &FixerPreferences::default())
}
}
#[test]
fn test_no_source_homepage_same_in_binaries() {
let temp_dir = TempDir::new().unwrap();
let debian_dir = temp_dir.path().join("debian");
fs::create_dir_all(&debian_dir).unwrap();
let control_path = debian_dir.join("control");
fs::write(
&control_path,
"Source: blah\nMaintainer: Joe <joe@example.com>\n\nPackage: blah1\nHomepage: https://www.example.com/blah\nDescription: blah\n\nPackage: blah2\nHomepage: https://www.example.com/blah\nDescription: blah2\n",
)
.unwrap();
let result = run_apply(temp_dir.path()).unwrap();
assert_eq!(result.description, DESCRIPTION);
assert_eq!(result.fixed_lintian_issues.len(), 2);
assert_eq!(
fs::read_to_string(&control_path).unwrap(),
"Source: blah\nMaintainer: Joe <joe@example.com>\nHomepage: https://www.example.com/blah\n\nPackage: blah1\nDescription: blah\n\nPackage: blah2\nDescription: blah2\n",
);
}
#[test]
fn test_source_homepage_matches_binary() {
let temp_dir = TempDir::new().unwrap();
let debian_dir = temp_dir.path().join("debian");
fs::create_dir_all(&debian_dir).unwrap();
let control_path = debian_dir.join("control");
fs::write(
&control_path,
"Source: blah\nMaintainer: Joe <joe@example.com>\nHomepage: https://www.example.com/blah\n\nPackage: blah1\nHomepage: https://www.example.com/blah\nDescription: blah\n\nPackage: blah2\nHomepage: https://www.example.com/blah2\nDescription: blah2\n",
)
.unwrap();
let result = run_apply(temp_dir.path()).unwrap();
assert_eq!(result.fixed_lintian_issues.len(), 1);
assert_eq!(
fs::read_to_string(&control_path).unwrap(),
"Source: blah\nMaintainer: Joe <joe@example.com>\nHomepage: https://www.example.com/blah\n\nPackage: blah1\nDescription: blah\n\nPackage: blah2\nHomepage: https://www.example.com/blah2\nDescription: blah2\n",
);
}
#[test]
fn test_no_change_when_different_homepages() {
let temp_dir = TempDir::new().unwrap();
let debian_dir = temp_dir.path().join("debian");
fs::create_dir_all(&debian_dir).unwrap();
let control_path = debian_dir.join("control");
let original = "Source: blah\nMaintainer: Joe <joe@example.com>\n\nPackage: blah1\nHomepage: https://www.example.com/blah1\nDescription: blah\n\nPackage: blah2\nHomepage: https://www.example.com/blah2\nDescription: blah2\n";
fs::write(&control_path, original).unwrap();
assert!(matches!(
run_apply(temp_dir.path()),
Err(FixerError::NoChanges)
));
assert_eq!(fs::read_to_string(&control_path).unwrap(), original);
}
#[test]
fn test_no_change_when_no_homepage() {
let temp_dir = TempDir::new().unwrap();
let debian_dir = temp_dir.path().join("debian");
fs::create_dir_all(&debian_dir).unwrap();
let control_path = debian_dir.join("control");
let original =
"Source: blah\nMaintainer: Joe <joe@example.com>\n\nPackage: blah1\nDescription: blah\n";
fs::write(&control_path, original).unwrap();
assert!(matches!(
run_apply(temp_dir.path()),
Err(FixerError::NoChanges)
));
}
}