mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-14 00:17:07 +00:00
57 lines
1.4 KiB
Rust
57 lines
1.4 KiB
Rust
use crate::{set_artist, temp_file, verify_artist};
|
|
use lofty::{
|
|
FileType, ItemKey, ItemValue, ParseOptions, Probe, TagExt, TagItem, TagType, TaggedFileExt,
|
|
};
|
|
use std::io::{Seek, Write};
|
|
|
|
#[test]
|
|
fn read() {
|
|
// This file contains an ilst atom
|
|
let file = Probe::open("tests/files/assets/minimal/m4a_codec_aac.m4a")
|
|
.unwrap()
|
|
.options(ParseOptions::new().read_properties(false))
|
|
.read()
|
|
.unwrap();
|
|
|
|
assert_eq!(file.file_type(), FileType::Mp4);
|
|
|
|
// Verify the ilst tag
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
|
}
|
|
|
|
#[test]
|
|
fn write() {
|
|
let mut file = temp_file!("tests/files/assets/minimal/m4a_codec_aac.m4a");
|
|
|
|
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::Mp4);
|
|
|
|
// ilst
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::Mp4Ilst, "Foo artist", 1 => file, "Bar 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, tag_mut, TagType::Mp4Ilst, "Bar artist", 1 => file, "Foo artist");
|
|
}
|
|
|
|
#[test]
|
|
fn remove() {
|
|
crate::remove_tag!(
|
|
"tests/files/assets/minimal/m4a_codec_aac.m4a",
|
|
TagType::Mp4Ilst
|
|
);
|
|
}
|