EBML: Add basic matroska integration tests (not yet working)

This commit is contained in:
Serial 2024-08-24 11:33:39 -04:00
parent 16bb3c0959
commit e92a2cd0c4
No known key found for this signature in database
GPG key ID: DA95198DC17C4568
2 changed files with 68 additions and 0 deletions

View file

@ -4,6 +4,7 @@ mod aac;
mod aiff;
mod ape;
mod flac;
mod matroska;
mod mp4;
mod mpc;
mod mpeg;

View file

@ -0,0 +1,67 @@
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 a tags element
let file = Probe::open("tests/files/assets/minimal/full_test.mka")
.unwrap()
.options(ParseOptions::new().read_properties(false))
.read()
.unwrap();
assert_eq!(file.file_type(), FileType::Ebml);
// Verify the tag
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
}
#[test]
fn write() {
let mut file = temp_file!("tests/files/assets/minimal/full_test.mka");
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::Ebml);
// Tags
crate::set_artist!(tagged_file, tag_mut, TagType::Ebml, "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::Ebml, "Bar artist", 1 => file, "Foo artist");
}
#[test]
fn remove() {
crate::remove_tag!("tests/files/assets/minimal/full_test.mka", TagType::Ebml);
}
#[test]
fn read_no_properties() {
crate::no_properties_test!("tests/files/assets/minimal/full_test.mka");
}
#[test]
fn read_no_tags() {
crate::no_tag_test!("tests/files/assets/minimal/full_test.mka");
}