2021-12-05 22:02:22 +00:00
|
|
|
use crate::{set_artist, temp_file, verify_artist};
|
2024-04-13 16:50:28 +00:00
|
|
|
use lofty::config::ParseOptions;
|
2024-04-13 17:24:14 +00:00
|
|
|
use lofty::file::FileType;
|
2024-04-10 18:08:28 +00:00
|
|
|
use lofty::prelude::*;
|
2024-04-13 18:01:48 +00:00
|
|
|
use lofty::tag::TagType;
|
|
|
|
use lofty::Probe;
|
2024-04-10 18:08:28 +00:00
|
|
|
|
2022-04-13 17:28:48 +00:00
|
|
|
use std::io::{Seek, Write};
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn read() {
|
2021-09-05 22:48:51 +00:00
|
|
|
// Here we have an APE file with an ID3v2, ID3v1, and an APEv2 tag
|
2022-09-24 06:34:22 +00:00
|
|
|
let file = Probe::open("tests/files/assets/minimal/full_test.ape")
|
|
|
|
.unwrap()
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 22:48:51 +00:00
|
|
|
|
2023-04-21 02:22:07 +00:00
|
|
|
assert_eq!(file.file_type(), FileType::Ape);
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// Verify the APEv2 tag first
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::verify_artist!(file, primary_tag, "Foo artist", 1);
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// Now verify ID3v1
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::verify_artist!(file, tag, TagType::Id3v1, "Bar artist", 1);
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// Finally, verify ID3v2
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::verify_artist!(file, tag, TagType::Id3v2, "Baz artist", 1);
|
2021-09-05 22:48:51 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 14:41:24 +00:00
|
|
|
#[test]
|
2021-10-01 21:59:53 +00:00
|
|
|
fn write() {
|
2021-09-27 02:36:20 +00:00
|
|
|
// We don't write an ID3v2 tag here since it's against the spec
|
2022-02-13 18:15:27 +00:00
|
|
|
let mut file = temp_file!("tests/files/assets/minimal/full_test.ape");
|
2021-09-05 22:48:51 +00:00
|
|
|
|
2022-09-24 06:34:22 +00:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 22:48:51 +00:00
|
|
|
|
2023-04-21 02:22:07 +00:00
|
|
|
assert_eq!(tagged_file.file_type(), FileType::Ape);
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// APEv2
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Foo artist", 1 => file, "Bar artist");
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// ID3v1
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::Id3v1, "Bar artist", 1 => file, "Baz artist");
|
2021-09-05 22:48:51 +00:00
|
|
|
|
|
|
|
// Now reread the file
|
2022-04-13 17:28:48 +00:00
|
|
|
file.rewind().unwrap();
|
2022-09-24 06:34:22 +00:00
|
|
|
let mut tagged_file = Probe::new(&mut file)
|
|
|
|
.options(ParseOptions::new().read_properties(false))
|
|
|
|
.guess_file_type()
|
|
|
|
.unwrap()
|
|
|
|
.read()
|
|
|
|
.unwrap();
|
2021-09-05 22:48:51 +00:00
|
|
|
|
2021-09-06 14:41:24 +00:00
|
|
|
crate::set_artist!(tagged_file, primary_tag_mut, "Bar artist", 1 => file, "Foo artist");
|
|
|
|
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::set_artist!(tagged_file, tag_mut, TagType::Id3v1, "Baz artist", 1 => file, "Bar artist");
|
2021-09-05 22:48:51 +00:00
|
|
|
}
|
2021-10-01 21:59:53 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_ape() {
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/minimal/full_test.ape", TagType::Ape);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v1() {
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/minimal/full_test.ape", TagType::Id3v1);
|
2021-10-01 21:59:53 +00:00
|
|
|
}
|
2022-03-27 18:12:32 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn remove_id3v2() {
|
2023-04-21 02:29:11 +00:00
|
|
|
crate::remove_tag!("tests/files/assets/minimal/full_test.ape", TagType::Id3v2);
|
2022-03-27 18:12:32 +00:00
|
|
|
}
|