mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 14:42:33 +00:00
89dd85c3dc
This makes it possible to use Lofty exclusively for its property reading, which many projects do at this point. closes #251
70 lines
1.6 KiB
Rust
70 lines
1.6 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() {
|
|
// 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
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn read_no_properties() {
|
|
crate::no_properties_test!("tests/files/assets/minimal/m4a_codec_aac.m4a");
|
|
}
|
|
|
|
#[test]
|
|
fn read_no_tags() {
|
|
crate::no_tag_test!("tests/files/assets/minimal/m4a_codec_aac.m4a");
|
|
}
|