mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 22:22:31 +00:00
51 lines
1.5 KiB
Rust
51 lines
1.5 KiB
Rust
use crate::verify_artist;
|
|
use crate::{set_artist, temp_file};
|
|
use lofty::{FileType, ItemKey, ItemValue, TagItem, TagType};
|
|
use std::io::{Seek, SeekFrom, Write};
|
|
|
|
#[test]
|
|
fn read() {
|
|
// Here we have an AIFF file with both an ID3v2 chunk and text chunks
|
|
let file = lofty::read_from_path("tests/files/assets/a.aiff", false).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/a.aiff");
|
|
|
|
let mut tagged_file = lofty::read_from(&mut file, false).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.seek(SeekFrom::Start(0)).unwrap();
|
|
let mut tagged_file = lofty::read_from(&mut file, false).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/a.aiff", TagType::AiffText);
|
|
}
|
|
|
|
#[test]
|
|
fn remove_id3v2() {
|
|
crate::remove_tag!("tests/files/assets/a.aiff", TagType::Id3v2);
|
|
}
|