lofty-rs/lofty/tests/files/aiff.rs
Serial 89dd85c3dc ParseOptions: Add ParseOptions::read_tags
This makes it possible to use Lofty exclusively for its property reading, which many projects do at this point.

closes #251
2024-07-04 11:18:25 -04:00

82 lines
2 KiB
Rust

use crate::{set_artist, temp_file, verify_artist};
use lofty::config::ParseOptions;
use lofty::file::FileType;
use lofty::prelude::*;
use lofty::probe::Probe;
use lofty::tag::TagType;
use std::io::Seek;
#[test]
fn read() {
// Here we have an AIFF file with both an ID3v2 chunk and text chunks
let file = Probe::open("tests/files/assets/minimal/full_test.aiff")
.unwrap()
.options(ParseOptions::new().read_properties(false))
.read()
.unwrap();
assert_eq!(file.file_type(), FileType::Aiff);
// Verify the ID3v2 tag first
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
// Now verify the text chunks
crate::verify_artist!(file, tag, TagType::AiffText, "Bar artist", 1);
}
#[test]
fn write() {
let mut file = temp_file!("tests/files/assets/minimal/full_test.aiff");
let mut tagged_file = Probe::new(&mut file)
.options(ParseOptions::new().read_properties(false))
.guess_file_type()
.unwrap()
.read()
.unwrap();
assert_eq!(tagged_file.file_type(), FileType::Aiff);
// ID3v2
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
// Text chunks
crate::set_artist!(tagged_file, tag_mut, TagType::AiffText, "Bar artist", 1 => file, "Baz artist");
// Now reread the file
file.rewind().unwrap();
let mut tagged_file = Probe::new(&mut file)
.options(ParseOptions::new().read_properties(false))
.guess_file_type()
.unwrap()
.read()
.unwrap();
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
crate::set_artist!(tagged_file, tag_mut, TagType::AiffText, "Baz artist", 1 => file, "Bar artist");
}
#[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);
}
#[test]
fn read_no_properties() {
crate::no_properties_test!("tests/files/assets/minimal/full_test.aiff");
}
#[test]
fn read_no_tags() {
crate::no_tag_test!("tests/files/assets/minimal/full_test.aiff");
}