2021-09-06 14:41:24 +00:00
|
|
|
mod util;
|
|
|
|
|
2021-09-05 18:15:15 +00:00
|
|
|
use lofty::{FileType, ItemKey, ItemValue, Probe, TagItem, TagType};
|
2021-11-21 20:18:19 +00:00
|
|
|
use std::io::{Seek, Write};
|
2021-09-05 18:15:15 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn read() {
|
2021-09-05 18:15:15 +00:00
|
|
|
// Here we have a WAV file with both an ID3v2 chunk and a RIFF INFO chunk
|
2021-11-22 09:24:07 +00:00
|
|
|
let file = Probe::new().read_from_path("tests/assets/a.wav").unwrap();
|
2021-09-05 18:15:15 +00:00
|
|
|
|
|
|
|
assert_eq!(file.file_type(), &FileType::WAV);
|
|
|
|
|
|
|
|
// Verify the ID3v2 tag first
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
2021-09-05 18:15:15 +00:00
|
|
|
|
|
|
|
// Now verify the RIFF INFO chunk
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::verify_artist!(file, tag, TagType::RiffInfo, "Bar artist", 1);
|
2021-09-05 18:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn write() {
|
2021-11-21 20:18:19 +00:00
|
|
|
let mut file = tempfile::tempfile().unwrap();
|
2021-11-21 21:32:41 +00:00
|
|
|
file.write_all(&std::fs::read("tests/assets/a.wav").unwrap())
|
2021-09-05 18:15:15 +00:00
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let mut tagged_file = Probe::new().read_from(&mut file).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(tagged_file.file_type(), &FileType::WAV);
|
|
|
|
|
|
|
|
// ID3v2
|
2021-09-27 02:36:20 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
2021-09-05 18:15:15 +00:00
|
|
|
|
|
|
|
// RIFF INFO
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::RiffInfo, "Bar artist", 1 => file, "Baz artist");
|
2021-09-05 18:15:15 +00:00
|
|
|
|
2021-11-21 20:18:19 +00:00
|
|
|
drop(tagged_file);
|
|
|
|
|
2021-09-05 18:15:15 +00:00
|
|
|
// Now reread the file
|
|
|
|
let mut tagged_file = Probe::new().read_from(&mut file).unwrap();
|
|
|
|
|
2021-09-27 02:36:20 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
|
2021-09-05 18:15:15 +00:00
|
|
|
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::RiffInfo, "Baz artist", 1 => file, "Bar artist");
|
2021-09-05 18:15:15 +00:00
|
|
|
}
|
2021-10-01 21:59:53 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v2() {
|
2021-11-21 21:32:41 +00:00
|
|
|
crate::remove_tag!("tests/assets/a.wav", TagType::Id3v2);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_riff_info() {
|
2021-11-21 21:32:41 +00:00
|
|
|
crate::remove_tag!("tests/assets/a.wav", TagType::RiffInfo);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|