lofty-rs/tests/files/aiff.rs

70 lines
1.8 KiB
Rust
Raw Normal View History

2022-01-05 18:26:56 +00:00
use crate::{set_artist, temp_file, verify_artist};
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]
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
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
crate::verify_artist!(file, tag, TagType::AIFFText, "Bar artist", 1);
2021-09-03 20:30:10 +00:00
}
#[test]
fn write() {
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
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
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
crate::set_artist!(tagged_file, tag_mut, TagType::AIFFText, "Baz artist", 1 => file, "Bar artist");
2021-09-03 20:30:10 +00:00
}
#[test]
fn remove_text_chunks() {
crate::remove_tag!(
"tests/files/assets/minimal/full_test.aiff",
TagType::AIFFText
);
}
#[test]
fn remove_id3v2() {
crate::remove_tag!("tests/files/assets/minimal/full_test.aiff", TagType::ID3v2);
}