2022-01-05 18:26:56 +00:00
|
|
|
use crate::{set_artist, temp_file, verify_artist};
|
2022-12-10 16:10:23 +00:00
|
|
|
use lofty::{
|
|
|
|
FileType, ItemKey, ItemValue, ParseOptions, Probe, TagExt, TagItem, TagType, TaggedFileExt,
|
|
|
|
};
|
2022-04-13 17:28:48 +00:00
|
|
|
use std::io::{Seek, Write};
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn read() {
|
2021-09-03 20:30:10 +00:00
|
|
|
// Here we have an AIFF file with both an ID3v2 chunk and text chunks
|
2022-09-24 06:34:22 +00:00
|
|
|
let file = Probe::open("tests/files/assets/minimal/full_test.aiff")
|
|
|
|
.unwrap()
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-03 20:30:10 +00:00
|
|
|
|
2022-02-19 15:14:14 +00:00
|
|
|
assert_eq!(file.file_type(), FileType::AIFF);
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
// Verify the ID3v2 tag first
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
// Now verify the text chunks
|
2022-06-08 00:00:05 +00:00
|
|
|
crate::verify_artist!(file, tag, TagType::AIFFText, "Bar artist", 1);
|
2021-09-03 20:30:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn write() {
|
2022-02-13 18:15:27 +00:00
|
|
|
let mut file = temp_file!("tests/files/assets/minimal/full_test.aiff");
|
2021-09-03 20:30:10 +00:00
|
|
|
|
2022-09-24 06:34:22 +00:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-03 20:30:10 +00:00
|
|
|
|
2022-02-19 15:14:14 +00:00
|
|
|
assert_eq!(tagged_file.file_type(), FileType::AIFF);
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
// ID3v2
|
2021-09-27 02:36:20 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
// Text chunks
|
2022-06-08 00:00:05 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::AIFFText, "Bar artist", 1 => file, "Baz artist");
|
2021-09-03 20:30:10 +00:00
|
|
|
|
|
|
|
// Now reread the file
|
2022-04-13 17:28:48 +00:00
|
|
|
file.rewind().unwrap();
|
2022-09-24 06:34:22 +00:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-03 20:30:10 +00:00
|
|
|
|
2021-09-27 02:36:20 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
|
2021-09-03 20:30:10 +00:00
|
|
|
|
2022-06-08 00:00:05 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::AIFFText, "Baz artist", 1 => file, "Bar artist");
|
2021-09-03 20:30:10 +00:00
|
|
|
}
|
2021-10-01 21:59:53 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_text_chunks() {
|
2022-02-13 18:15:27 +00:00
|
|
|
crate::remove_tag!(
|
|
|
|
"tests/files/assets/minimal/full_test.aiff",
|
2022-06-08 00:00:05 +00:00
|
|
|
TagType::AIFFText
|
2022-02-13 18:15:27 +00:00
|
|
|
);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v2() {
|
2022-06-08 00:00:05 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/minimal/full_test.aiff", TagType::ID3v2);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|