use crate::declare_detector;
use crate::diagnostic::{Action, Diagnostic, FilesystemAction};
use crate::{Certainty, FixerError, FixerPreferences};
use debian_workspace::Workspace;
use std::path::PathBuf;
pub fn detect(
ws: &dyn Workspace,
_preferences: &FixerPreferences,
) -> Result<Vec<Diagnostic>, FixerError> {
let rel = PathBuf::from("debian/source/options");
let bytes = match ws.read_file(&rel)? {
Some(b) => b,
None => return Ok(Vec::new()),
};
let Ok(content) = std::str::from_utf8(&bytes) else {
return Ok(Vec::new());
};
if !content.trim().is_empty() {
return Ok(Vec::new());
}
Ok(vec![Diagnostic::untagged(
"debian/source/options is empty.",
"Remove empty debian/source/options.",
vec![Action::Filesystem(FilesystemAction::Delete { file: rel })],
)
.with_certainty(Certainty::Certain)])
}
declare_detector! {
name: "empty-debian-source-options",
tags: [],
triggers: [debian_workspace::Trigger::File("debian/source/options")],
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_remove_empty_options() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let options_path = source_dir.join("options");
fs::write(&options_path, "").unwrap();
let result = run_apply(tmp.path()).unwrap();
assert_eq!(result.description, "Remove empty debian/source/options.");
assert!(!options_path.exists());
}
#[test]
fn test_remove_whitespace_only_options() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let options_path = source_dir.join("options");
fs::write(&options_path, " \n\t \n ").unwrap();
run_apply(tmp.path()).unwrap();
assert!(!options_path.exists());
}
#[test]
fn test_keep_non_empty_options() {
let tmp = TempDir::new().unwrap();
let source_dir = tmp.path().join("debian/source");
fs::create_dir_all(&source_dir).unwrap();
let options_path = source_dir.join("options");
fs::write(&options_path, "compression = xz\n").unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
assert!(options_path.exists());
}
#[test]
fn test_no_options_file() {
let tmp = TempDir::new().unwrap();
fs::create_dir_all(tmp.path().join("debian/source")).unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
#[test]
fn test_no_debian_dir() {
let tmp = TempDir::new().unwrap();
assert!(matches!(run_apply(tmp.path()), Err(FixerError::NoChanges)));
}
}