2021-12-05 22:02:22 +00:00
|
|
|
use crate::{set_artist, temp_file, verify_artist};
|
|
|
|
use lofty::{FileType, ItemKey, ItemValue, TagItem, TagType};
|
|
|
|
use std::io::{Seek, SeekFrom, 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
|
2022-01-31 23:19:11 +00:00
|
|
|
let file = lofty::read_from_path("tests/files/assets/wav_format_pcm.wav", false).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() {
|
2022-01-31 23:19:11 +00:00
|
|
|
let mut file = temp_file!("tests/files/assets/wav_format_pcm.wav");
|
2021-09-05 18:15:15 +00:00
|
|
|
|
2021-12-22 01:20:24 +00:00
|
|
|
let mut tagged_file = lofty::read_from(&mut file, false).unwrap();
|
2021-09-05 18:15:15 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
// Now reread the file
|
2021-12-05 22:02:22 +00:00
|
|
|
file.seek(SeekFrom::Start(0)).unwrap();
|
2021-12-22 01:20:24 +00:00
|
|
|
let mut tagged_file = lofty::read_from(&mut file, false).unwrap();
|
2021-09-05 18:15:15 +00:00
|
|
|
|
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() {
|
2022-01-31 23:19:11 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/wav_format_pcm.wav", TagType::Id3v2);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_riff_info() {
|
2022-01-31 23:19:11 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/wav_format_pcm.wav", TagType::RiffInfo);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|