lofty-rs/tests/io.rs

138 lines
3.3 KiB
Rust
Raw Normal View History

#![cfg(feature = "default")]
2021-04-22 22:01:09 +00:00
use lofty::{MimeType, Picture, Tag};
2020-10-26 20:43:11 +00:00
macro_rules! full_test {
($function:ident, $file:expr) => {
#[test]
fn $function() {
println!("-- Adding tags --");
add_tags!($file);
2021-04-22 17:56:51 +00:00
println!("-- Verifying tags --");
verify_write!($file);
println!("-- Removing tags --");
remove_tags!($file);
}
};
2020-10-26 20:43:11 +00:00
}
macro_rules! add_tags {
($file:expr) => {
println!("Reading file");
2021-04-22 22:01:09 +00:00
let mut tag = Tag::default().read_from_path_signature($file).unwrap();
println!("Setting title");
tag.set_title("foo title");
println!("Setting artist");
tag.set_artist("foo artist");
println!("Setting year");
tag.set_year(2020);
println!("Setting album title");
tag.set_album_title("foo album title");
println!("Setting album artists");
tag.set_album_artist("foo album artist");
// TODO
// let cover = Picture {
// mime_type: MimeType::Jpeg,
// data: &vec![0u8; 10],
// };
//
// tags.set_album_cover(cover.clone());
// assert_eq!(tags.album_cover(), Some(cover));
println!("Writing");
tag.write_to_path($file).unwrap();
};
}
2021-04-22 17:56:51 +00:00
macro_rules! verify_write {
($file:expr) => {
println!("Reading file");
2021-04-22 22:01:09 +00:00
let tag = Tag::default().read_from_path_signature($file).unwrap();
2021-04-22 17:56:51 +00:00
let file_name = stringify!($file);
println!("Verifying title");
assert_eq!(tag.title(), Some("foo title"));
2021-04-22 17:56:51 +00:00
println!("Verifying artist");
assert_eq!(tag.artist_str(), Some("foo artist"));
// Skip this since RIFF INFO doesn't support year
if file_name != stringify!("tests/assets/a.wav") {
println!("Verifying year");
assert_eq!(tag.year(), Some(2020));
}
println!("Verifying album title");
assert_eq!(tag.album_title(), Some("foo album title"));
// Skip this since RIFF INFO doesn't guarantee album artist
if file_name != stringify!("tests/assets/a.wav") {
println!("Verifying album artist");
assert_eq!(tag.album_artists_vec(), Some(vec!["foo album artist"]));
}
};
}
macro_rules! remove_tags {
($file:expr) => {
println!("Reading file");
2021-04-22 22:01:09 +00:00
let mut tag = Tag::default().read_from_path_signature($file).unwrap();
2021-04-22 17:56:51 +00:00
println!("Removing title");
tag.remove_title();
assert!(tag.title().is_none());
tag.remove_title(); // should not panic
println!("Removing artist");
tag.remove_artist();
assert!(tag.artist_str().is_none());
tag.remove_artist();
println!("Removing year");
tag.remove_year();
assert!(tag.year().is_none());
tag.remove_year();
println!("Removing album title");
tag.remove_album_title();
assert!(tag.album_title().is_none());
tag.remove_album_title();
println!("Removing album artists");
tag.remove_album_artists();
assert!(tag.album_artists_vec().is_none());
tag.remove_album_artists();
// TODO
// tags.remove_album_cover();
// assert!(tags.album_cover().is_none());
// tags.remove_album_cover();
println!("Writing");
tag.write_to_path($file).unwrap();
};
}
2021-04-22 15:15:19 +00:00
// APEv2
full_test!(test_ape, "tests/assets/a.ape");
2021-04-22 15:15:19 +00:00
// ID3v2
full_test!(test_mp3, "tests/assets/a.mp3");
2021-04-22 16:57:20 +00:00
full_test!(test_aiff, "tests/assets/a.aiff");
2021-04-22 15:15:19 +00:00
full_test!(test_wav_id3, "tests/assets/a-id3.wav");
// RIFF INFO
full_test!(test_wav_riff_info, "tests/assets/a.wav");
// Vorbis comments
full_test!(test_flac, "tests/assets/a.flac");
2021-04-22 15:15:19 +00:00
full_test!(test_m4a, "tests/assets/a.m4a");
full_test!(test_ogg, "tests/assets/a.ogg");
full_test!(test_opus, "tests/assets/a.opus");