lofty-rs/tests/hound.rs

52 lines
1.6 KiB
Rust
Raw Normal View History

2022-01-23 12:37:13 +00:00
use std::fs;
use std::fs::File;
use std::path::Path;
2022-01-23 11:32:51 +00:00
use hound::WavReader;
use lofty::iff::wav::WavFile;
2022-09-24 06:34:22 +00:00
use lofty::{AudioFile, ParseOptions, Result};
2022-01-23 11:32:51 +00:00
fn get_properties(path: &Path) -> Result<<WavFile as AudioFile>::Properties> {
2022-01-23 11:32:51 +00:00
let mut f = File::open(path).unwrap();
2022-09-24 06:34:22 +00:00
let wav_file = WavFile::read_from(&mut f, ParseOptions::new())?;
2022-01-23 12:37:13 +00:00
Ok(*wav_file.properties())
2022-01-23 11:32:51 +00:00
}
#[test]
fn hound() {
let paths = fs::read_dir("tests/files/assets/hound").unwrap();
for path in paths {
let path = path.unwrap().path();
if path.is_file() && path.extension().unwrap() == "wav" {
println!("Name: {}", path.display());
let wav_reader = WavReader::open(&path).unwrap();
2022-01-23 12:37:13 +00:00
let lofty = get_properties(&path).unwrap();
assert_eq!(lofty.channels() as u16, wav_reader.spec().channels);
assert_eq!(lofty.sample_rate(), wav_reader.spec().sample_rate);
assert_eq!(lofty.bit_depth() as u16, wav_reader.spec().bits_per_sample);
}
}
}
#[test]
fn hound_fuzz() {
let paths = fs::read_dir("tests/files/assets/hound/fuzz").unwrap();
for path in paths {
let path = path.unwrap().path();
if path.is_file() && path.extension().unwrap() == "wav" {
println!("Name: {}", path.display());
if let Ok(wav_reader) = WavReader::open(&path) {
let lofty = get_properties(&path).unwrap();
println!("{lofty:#?}");
assert_eq!(lofty.channels() as u16, wav_reader.spec().channels);
assert_eq!(lofty.sample_rate(), wav_reader.spec().sample_rate);
assert_eq!(lofty.bit_depth() as u16, wav_reader.spec().bits_per_sample);
} else if get_properties(&path).is_ok() {
println!("We are even better for this file!");
}
2022-01-23 11:32:51 +00:00
}
}
}