2021-12-05 17:02:22 -05:00
|
|
|
use crate::{set_artist, temp_file, verify_artist};
|
2024-04-13 12:50:28 -04:00
|
|
|
use lofty::config::ParseOptions;
|
2024-04-13 13:24:14 -04:00
|
|
|
use lofty::file::FileType;
|
2024-04-10 14:08:28 -04:00
|
|
|
use lofty::prelude::*;
|
2024-04-14 13:08:08 -04:00
|
|
|
use lofty::probe::Probe;
|
2024-04-13 14:01:48 -04:00
|
|
|
use lofty::tag::TagType;
|
2024-04-10 14:08:28 -04:00
|
|
|
|
2022-04-13 13:28:48 -04:00
|
|
|
use std::io::{Seek, Write};
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
#[test]
|
2021-10-01 17:59:53 -04:00
|
|
|
fn read() {
|
2021-09-05 14:15:15 -04:00
|
|
|
// Here we have a WAV file with both an ID3v2 chunk and a RIFF INFO chunk
|
2022-09-24 02:34:22 -04:00
|
|
|
let file = Probe::open("tests/files/assets/minimal/wav_format_pcm.wav")
|
|
|
|
.unwrap()
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 14:15:15 -04:00
|
|
|
|
2023-04-20 22:22:07 -04:00
|
|
|
assert_eq!(file.file_type(), FileType::Wav);
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
// Verify the ID3v2 tag first
|
2021-09-06 10:41:24 -04:00
|
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
// Now verify the RIFF INFO chunk
|
2023-04-20 22:29:11 -04:00
|
|
|
crate::verify_artist!(file, tag, TagType::RiffInfo, "Bar artist", 1);
|
2021-09-05 14:15:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-01 17:59:53 -04:00
|
|
|
fn write() {
|
2022-02-13 13:15:27 -05:00
|
|
|
let mut file = temp_file!("tests/files/assets/minimal/wav_format_pcm.wav");
|
2021-09-05 14:15:15 -04:00
|
|
|
|
2022-09-24 02:34:22 -04:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 14:15:15 -04:00
|
|
|
|
2023-04-20 22:22:07 -04:00
|
|
|
assert_eq!(tagged_file.file_type(), FileType::Wav);
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
// ID3v2
|
2021-09-26 22:36:20 -04:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
// RIFF INFO
|
2023-04-20 22:29:11 -04:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::RiffInfo, "Bar artist", 1 => file, "Baz artist");
|
2021-09-05 14:15:15 -04:00
|
|
|
|
|
|
|
// Now reread the file
|
2022-04-13 13:28:48 -04:00
|
|
|
file.rewind().unwrap();
|
2022-09-24 02:34:22 -04:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 14:15:15 -04:00
|
|
|
|
2021-09-26 22:36:20 -04:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
|
2021-09-05 14:15:15 -04:00
|
|
|
|
2023-04-20 22:29:11 -04:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::RiffInfo, "Baz artist", 1 => file, "Bar artist");
|
2021-09-05 14:15:15 -04:00
|
|
|
}
|
2021-10-01 17:59:53 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v2() {
|
2022-02-13 13:15:27 -05:00
|
|
|
crate::remove_tag!(
|
|
|
|
"tests/files/assets/minimal/wav_format_pcm.wav",
|
2023-04-20 22:29:11 -04:00
|
|
|
TagType::Id3v2
|
2022-02-13 13:15:27 -05:00
|
|
|
);
|
2021-10-01 17:59:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_riff_info() {
|
2022-02-13 13:15:27 -05:00
|
|
|
crate::remove_tag!(
|
|
|
|
"tests/files/assets/minimal/wav_format_pcm.wav",
|
2023-04-20 22:29:11 -04:00
|
|
|
TagType::RiffInfo
|
2022-02-13 13:15:27 -05:00
|
|
|
);
|
2021-10-01 17:59:53 -04:00
|
|
|
}
|
2023-04-06 22:59:45 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_174_divide_by_zero() {
|
|
|
|
let file = Probe::open(
|
|
|
|
"tests/files/assets/issue_174_waveformatextensible-ieeefloat-44100Hz-mono95060.wav",
|
|
|
|
)
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
|
|
|
|
2023-04-20 22:22:07 -04:00
|
|
|
assert_eq!(file.file_type(), FileType::Wav);
|
2023-04-06 22:59:45 +02:00
|
|
|
}
|