mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 14:42:33 +00:00
56 lines
1.5 KiB
Rust
56 lines
1.5 KiB
Rust
|
use crate::{set_artist, temp_file, verify_artist};
|
||
|
use lofty::{FileType, ItemKey, ItemValue, TagExt, TagItem, TagType};
|
||
|
use std::io::{Seek, Write};
|
||
|
|
||
|
#[test]
|
||
|
fn read() {
|
||
|
// Here we have a WacPack file with both an ID3v1 tag and an APE tag
|
||
|
let file = lofty::read_from_path("tests/files/assets/minimal/full_test.wv", false).unwrap();
|
||
|
|
||
|
assert_eq!(file.file_type(), FileType::WavPack);
|
||
|
|
||
|
// Verify the APE tag first
|
||
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
||
|
|
||
|
// Now verify the ID3v1 tag
|
||
|
crate::verify_artist!(file, tag, TagType::Id3v1, "Bar artist", 1);
|
||
|
}
|
||
|
|
||
|
// TODO
|
||
|
|
||
|
#[test]
|
||
|
#[ignore]
|
||
|
fn write() {
|
||
|
let mut file = temp_file!("tests/files/assets/minimal/full_test.wv");
|
||
|
|
||
|
let mut tagged_file = lofty::read_from(&mut file, false).unwrap();
|
||
|
|
||
|
assert_eq!(tagged_file.file_type(), FileType::WavPack);
|
||
|
|
||
|
// APE
|
||
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
||
|
|
||
|
// ID3v1
|
||
|
crate::set_artist!(tagged_file, tag_mut, TagType::Id3v1, "Bar artist", 1 => file, "Baz artist");
|
||
|
|
||
|
// Now reread the file
|
||
|
file.rewind().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::Id3v1, "Baz artist", 1 => file, "Bar artist");
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
#[ignore]
|
||
|
fn remove_id3v1() {
|
||
|
crate::remove_tag!("tests/files/assets/minimal/full_test.wv", TagType::Id3v1);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
#[ignore]
|
||
|
fn remove_ape() {
|
||
|
crate::remove_tag!("tests/files/assets/minimal/full_test.wv", TagType::Ape);
|
||
|
}
|