2021-09-06 10:41:24 -04:00
|
|
|
mod util;
|
|
|
|
|
2021-09-04 21:18:11 -04:00
|
|
|
use lofty::{FileType, ItemKey, ItemValue, Probe, TagItem, TagType};
|
2021-10-01 17:59:53 -04:00
|
|
|
use std::io::Write;
|
2021-09-03 16:30:10 -04:00
|
|
|
|
|
|
|
#[test]
|
2021-10-01 17:59:53 -04:00
|
|
|
fn read() {
|
2021-09-03 16:30:10 -04:00
|
|
|
// Here we have an AIFF file with both an ID3v2 chunk and text chunks
|
|
|
|
let file = Probe::new()
|
|
|
|
.read_from_path("tests/assets/a_mixed.aiff")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(file.file_type(), &FileType::AIFF);
|
|
|
|
|
|
|
|
// Verify the ID3v2 tag first
|
2021-09-06 10:41:24 -04:00
|
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
2021-09-03 16:30:10 -04:00
|
|
|
|
|
|
|
// Now verify the text chunks
|
2021-09-06 10:41:24 -04:00
|
|
|
crate::verify_artist!(file, tag, TagType::AiffText, "Bar artist", 1);
|
2021-09-03 16:30:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-01 17:59:53 -04:00
|
|
|
fn write() {
|
2021-09-03 16:30:10 -04:00
|
|
|
let mut file = std::fs::OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.write(true)
|
|
|
|
.open("tests/assets/a_mixed.aiff")
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut tagged_file = Probe::new().read_from(&mut file).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(tagged_file.file_type(), &FileType::AIFF);
|
|
|
|
|
|
|
|
// ID3v2
|
2021-09-26 22:36:20 -04:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
2021-09-03 16:30:10 -04:00
|
|
|
|
|
|
|
// Text chunks
|
2021-09-06 10:41:24 -04:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::AiffText, "Bar artist", 1 => file, "Baz artist");
|
2021-09-03 16:30:10 -04:00
|
|
|
|
|
|
|
// Now reread the file
|
|
|
|
let mut tagged_file = Probe::new().read_from(&mut file).unwrap();
|
|
|
|
|
2021-09-26 22:36:20 -04:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
|
2021-09-03 16:30:10 -04:00
|
|
|
|
2021-09-06 10:41:24 -04:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::AiffText, "Baz artist", 1 => file, "Bar artist");
|
2021-09-03 16:30:10 -04:00
|
|
|
}
|
2021-10-01 17:59:53 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_text_chunks() {
|
|
|
|
crate::remove_tag!("tests/assets/a_mixed.aiff", TagType::AiffText);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v2() {
|
|
|
|
crate::remove_tag!("tests/assets/a_mixed.aiff", TagType::Id3v2);
|
|
|
|
}
|