use crate::declare_detector;
use crate::diagnostic::{Action, Diagnostic, LintianOverridesAction, OverrideLineSelector};
use crate::lintian_overrides::LintianOverrides;
use crate::{FixerError, FixerPreferences, LintianIssue, Visibility};
use debian_workspace::Workspace;
const REMOVED_TAGS: &[&str] = &[
"hardening-no-stackprotector",
"maintainer-not-full-name",
"uploader-not-full-name",
"uploader-address-missing",
"no-upstream-changelog",
"copyright-year-in-future",
"script-calls-init-script-directly",
];
pub fn detect(
ws: &dyn Workspace,
_preferences: &FixerPreferences,
) -> Result<Vec<Diagnostic>, FixerError> {
let mut diagnostics: Vec<Diagnostic> = Vec::new();
let mut all_removed_tags: Vec<String> = Vec::new();
for rel in crate::lintian_overrides::override_files(ws)? {
let Some(bytes) = ws.read_file(&rel)? else {
continue;
};
let Ok(content) = std::str::from_utf8(&bytes) else {
continue;
};
let parsed = LintianOverrides::parse(content);
let Ok(overrides) = parsed.ok() else {
continue;
};
for (lineno, line) in overrides.lines().enumerate() {
if line.is_comment() || line.is_empty() {
continue;
}
let Some(tag_token) = line.tag() else {
continue;
};
let tag = tag_token.text();
if !REMOVED_TAGS.contains(&tag) {
continue;
}
let tag_string = tag.to_string();
if !all_removed_tags.contains(&tag_string) {
all_removed_tags.push(tag_string.clone());
}
let package_name = line.package_spec().and_then(|s| s.package_name());
let issue = if let Some(ref pkg) = package_name {
LintianIssue::binary_with_info(
pkg,
"malformed-override",
Visibility::Error,
vec![format!("Unknown tag {} in line {}", tag, lineno + 1)],
)
} else {
LintianIssue::source_with_info(
"malformed-override",
Visibility::Error,
vec![format!("Unknown tag {} in line {}", tag, lineno + 1)],
)
};
let info = line
.info()
.map(|s| s.trim().to_string())
.filter(|s| !s.is_empty());
diagnostics.push(Diagnostic::with_actions(
issue,
String::new(),
format!("Remove override for removed tag {}.", tag_string),
vec![Action::LintianOverrides(LintianOverridesAction::DropLine {
file: rel.clone(),
selector: OverrideLineSelector {
tag: tag_string,
info,
package: package_name,
},
})],
));
}
}
if diagnostics.is_empty() {
return Ok(Vec::new());
}
let summary = format!(
"Remove overrides for lintian tags that are no longer supported: {}",
all_removed_tags.join(", ")
);
for d in &mut diagnostics {
for plan in &mut d.plans {
plan.label = summary.clone();
}
}
Ok(diagnostics)
}
declare_detector! {
name: "malformed-override",
tags: ["malformed-override"],
triggers: [
debian_workspace::Trigger::File("debian/source/lintian-overrides"),
debian_workspace::Trigger::Glob("debian/*.lintian-overrides"),
],
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 v: Version = "1.0".parse().unwrap();
let adapter = DetectorImpl;
{
let ws = debian_workspace::fs_workspace::FsWorkspace::new(
base,
Some("test".into()),
Some(v.clone()),
);
adapter.apply(&ws, &FixerPreferences::default())
}
}
#[test]
fn test_remove_obsolete_tag() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let overrides = source_dir.join("lintian-overrides");
fs::write(&overrides, "lintian-brush source: uploader-not-full-name\n").unwrap();
let result = run_apply(tmp.path()).unwrap();
assert_eq!(
result.description,
"Remove overrides for lintian tags that are no longer supported: uploader-not-full-name"
);
assert!(!overrides.exists());
}
#[test]
fn test_keep_valid_tag() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let overrides = source_dir.join("lintian-overrides");
fs::write(&overrides, "some-valid-tag\n").unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
assert_eq!(fs::read_to_string(&overrides).unwrap(), "some-valid-tag\n");
}
#[test]
fn test_mixed_tags() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let overrides = source_dir.join("lintian-overrides");
fs::write(
&overrides,
"valid-tag\nuploader-not-full-name\nanother-valid-tag\n",
)
.unwrap();
run_apply(tmp.path()).unwrap();
assert_eq!(
fs::read_to_string(&overrides).unwrap(),
"valid-tag\nanother-valid-tag\n",
);
}
#[test]
fn test_no_override_files() {
let tmp = TempDir::new().unwrap();
let debian = tmp.path().join("debian");
fs::create_dir(&debian).unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
}