Contains pictures (#22)
All checks were successful
Release Tagging / release (push) Successful in 38s
Rust Build / Check (push) Successful in 33s
Rust Build / Check (pull_request) Successful in 35s
Rust Build / Test Suite (push) Successful in 43s
Rust Build / Rustfmt (push) Successful in 35s
Rust Build / Clippy (push) Successful in 38s
Rust Build / build (push) Successful in 43s
Rust Build / Test Suite (pull_request) Successful in 33s
Rust Build / Rustfmt (pull_request) Successful in 31s
Rust Build / Clippy (pull_request) Successful in 34s
Rust Build / build (pull_request) Successful in 40s

Reviewed-on: #22
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
2025-04-19 00:52:14 +00:00
committed by phoenix
parent 43774fe580
commit 805dfb269b
2 changed files with 56 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "icarus_meta"
version = "0.1.0"
version = "0.1.10"
edition = "2024"
rust-version = "1.86"

View File

@@ -88,6 +88,36 @@ pub mod coverart {
Err(err) => Err(err),
}
}
pub fn contains_coverart(song_filepath: &String) -> Result<(bool, usize), std::io::Error> {
match std::fs::File::open(song_filepath) {
Ok(mut file) => {
match lofty::flac::FlacFile::read_from(
&mut file,
lofty::config::ParseOptions::new(),
) {
Ok(flac_file) => {
let pictures = flac_file.pictures();
if pictures.is_empty() {
Ok((false, 0))
} else {
let res = pictures.to_vec();
if res.is_empty() {
Ok((false, 0))
} else {
Ok((true, res.len()))
}
}
}
Err(err) => Err(std::io::Error::new(
std::io::ErrorKind::InvalidData,
err.to_string(),
)),
}
}
Err(err) => Err(err),
}
}
}
pub fn get_meta(t: types::Type, filepath: &String) -> Result<String, std::io::Error> {
@@ -944,5 +974,30 @@ mod tests {
}
};
}
#[test]
fn test_picture_exists() {
let filename = util::get_filename(1);
let dir = String::from(util::TESTFILEDIRECTORY);
match file_exists(&dir, &filename) {
Ok(_) => {
let filepath = get_full_path(&dir, &filename).unwrap();
match coverart::contains_coverart(&filepath) {
Ok((exists, pictures)) => {
assert!(exists, "File should have a cover art");
assert!((pictures > 0), "No cover art was found in the file");
}
Err(err) => {
assert!(false, "Error: {:?}", err);
}
}
}
Err(err) => {
assert!(false, "Error: File does not exist {:?}", err.to_string());
}
};
}
}
}