The MusicBrainz API search call should use the MBID if available #171
@ -103,7 +103,7 @@ fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let matches = api
|
let matches = api
|
||||||
.search_release_group(&arid, album)
|
.search_release_group(&arid, &album)
|
||||||
.expect("failed to make API call");
|
.expect("failed to make API call");
|
||||||
|
|
||||||
println!("{matches:#?}");
|
println!("{matches:#?}");
|
||||||
|
@ -16,7 +16,7 @@ pub trait IMusicBrainz {
|
|||||||
fn search_release_group(
|
fn search_release_group(
|
||||||
&mut self,
|
&mut self,
|
||||||
arid: &Mbid,
|
arid: &Mbid,
|
||||||
album: Album,
|
album: &Album,
|
||||||
) -> Result<Vec<Match<Album>>, Error>;
|
) -> Result<Vec<Match<Album>>, Error>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ impl IMusicBrainz for NullMusicBrainz {
|
|||||||
fn search_release_group(
|
fn search_release_group(
|
||||||
&mut self,
|
&mut self,
|
||||||
_arid: &Mbid,
|
_arid: &Mbid,
|
||||||
_album: Album,
|
_album: &Album,
|
||||||
) -> Result<Vec<Match<Album>>, Error> {
|
) -> Result<Vec<Match<Album>>, Error> {
|
||||||
Ok(vec![])
|
Ok(vec![])
|
||||||
}
|
}
|
||||||
@ -143,7 +143,7 @@ mod tests {
|
|||||||
let mbid: Mbid = "d368baa8-21ca-4759-9731-0b2753071ad8".try_into().unwrap();
|
let mbid: Mbid = "d368baa8-21ca-4759-9731-0b2753071ad8".try_into().unwrap();
|
||||||
let album = Album::new(AlbumId::new("an album"), AlbumDate::default(), None, vec![]);
|
let album = Album::new(AlbumId::new("an album"), AlbumDate::default(), None, vec![]);
|
||||||
assert!(musicbrainz
|
assert!(musicbrainz
|
||||||
.search_release_group(&mbid, album)
|
.search_release_group(&mbid, &album)
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.is_empty());
|
.is_empty());
|
||||||
}
|
}
|
||||||
|
53
src/external/musicbrainz/api/mod.rs
vendored
53
src/external/musicbrainz/api/mod.rs
vendored
@ -70,14 +70,14 @@ impl<Mbc: IMusicBrainzApiClient> IMusicBrainz for MusicBrainzApi<Mbc> {
|
|||||||
fn search_release_group(
|
fn search_release_group(
|
||||||
&mut self,
|
&mut self,
|
||||||
arid: &Mbid,
|
arid: &Mbid,
|
||||||
album: Album,
|
album: &Album,
|
||||||
) -> Result<Vec<Match<Album>>, Error> {
|
) -> Result<Vec<Match<Album>>, Error> {
|
||||||
let title = &album.id.title;
|
let title = &album.id.title;
|
||||||
let arid = arid.uuid().as_hyphenated().to_string();
|
let arid = arid.uuid().as_hyphenated().to_string();
|
||||||
let mut query = format!("arid:{arid}");
|
let mut query = format!("arid:{arid}");
|
||||||
|
|
||||||
match album.musicbrainz {
|
match album.musicbrainz {
|
||||||
Some(mbref) => {
|
Some(ref mbref) => {
|
||||||
let rgid = mbref.mbid().uuid().as_hyphenated().to_string();
|
let rgid = mbref.mbid().uuid().as_hyphenated().to_string();
|
||||||
query.push_str(&format!(" AND rgid:{rgid}"));
|
query.push_str(&format!(" AND rgid:{rgid}"));
|
||||||
}
|
}
|
||||||
@ -136,13 +136,13 @@ impl TryFrom<LookupReleaseGroup> for Album {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Clone, Debug, Deserialize)]
|
||||||
#[serde(rename_all(deserialize = "kebab-case"))]
|
#[serde(rename_all(deserialize = "kebab-case"))]
|
||||||
struct ResponseSearchReleaseGroup {
|
struct ResponseSearchReleaseGroup {
|
||||||
release_groups: Vec<SearchReleaseGroup>,
|
release_groups: Vec<SearchReleaseGroup>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Clone, Debug, Deserialize)]
|
||||||
#[serde(rename_all(deserialize = "kebab-case"))]
|
#[serde(rename_all(deserialize = "kebab-case"))]
|
||||||
struct SearchReleaseGroup {
|
struct SearchReleaseGroup {
|
||||||
score: u8,
|
score: u8,
|
||||||
@ -199,7 +199,7 @@ pub enum SerdeAlbumPrimaryTypeDef {
|
|||||||
Other,
|
Other,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Clone, Debug, Deserialize)]
|
||||||
pub struct SerdeAlbumPrimaryType(#[serde(with = "SerdeAlbumPrimaryTypeDef")] AlbumPrimaryType);
|
pub struct SerdeAlbumPrimaryType(#[serde(with = "SerdeAlbumPrimaryTypeDef")] AlbumPrimaryType);
|
||||||
|
|
||||||
impl From<SerdeAlbumPrimaryType> for AlbumPrimaryType {
|
impl From<SerdeAlbumPrimaryType> for AlbumPrimaryType {
|
||||||
@ -242,7 +242,7 @@ impl From<SerdeAlbumSecondaryType> for AlbumSecondaryType {
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use mockall::predicate;
|
use mockall::{predicate, Sequence};
|
||||||
|
|
||||||
use crate::collection::album::AlbumId;
|
use crate::collection::album::AlbumId;
|
||||||
|
|
||||||
@ -298,14 +298,21 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn search_release_group() {
|
fn search_release_group() {
|
||||||
let mut client = MockIMusicBrainzApiClient::new();
|
let mut client = MockIMusicBrainzApiClient::new();
|
||||||
let url = format!(
|
let url_title = format!(
|
||||||
"https://musicbrainz.org/ws/2\
|
"https://musicbrainz.org/ws/2\
|
||||||
/release-group\
|
/release-group\
|
||||||
?query=arid%3A{arid}+AND+releasegroup%3A%22{title}%22+AND+firstreleasedate%3A{year}",
|
?query=arid%3A{arid}+AND+releasegroup%3A%22{title}%22+AND+firstreleasedate%3A{year}",
|
||||||
title = "an+album",
|
|
||||||
arid = "00000000-0000-0000-0000-000000000000",
|
arid = "00000000-0000-0000-0000-000000000000",
|
||||||
|
title = "an+album",
|
||||||
year = "1986"
|
year = "1986"
|
||||||
);
|
);
|
||||||
|
let url_rgid = format!(
|
||||||
|
"https://musicbrainz.org/ws/2\
|
||||||
|
/release-group\
|
||||||
|
?query=arid%3A{arid}+AND+rgid%3A{rgid}",
|
||||||
|
arid = "00000000-0000-0000-0000-000000000000",
|
||||||
|
rgid = "11111111-1111-1111-1111-111111111111",
|
||||||
|
);
|
||||||
|
|
||||||
let release_group = SearchReleaseGroup {
|
let release_group = SearchReleaseGroup {
|
||||||
score: 67,
|
score: 67,
|
||||||
@ -321,17 +328,23 @@ mod tests {
|
|||||||
// For code coverage of derive(Debug).
|
// For code coverage of derive(Debug).
|
||||||
assert!(!format!("{response:?}").is_empty());
|
assert!(!format!("{response:?}").is_empty());
|
||||||
|
|
||||||
|
let mut seq = Sequence::new();
|
||||||
|
|
||||||
|
let title_response = response.clone();
|
||||||
client
|
client
|
||||||
.expect_get()
|
.expect_get()
|
||||||
.times(1)
|
.times(1)
|
||||||
.with(predicate::eq(url))
|
.with(predicate::eq(url_title))
|
||||||
.return_once(|_| Ok(response));
|
.return_once(|_| Ok(title_response))
|
||||||
|
.in_sequence(&mut seq);
|
||||||
|
|
||||||
let mut api = MusicBrainzApi::new(client);
|
let rgid_response = response;
|
||||||
|
client
|
||||||
let arid: Mbid = "00000000-0000-0000-0000-000000000000".try_into().unwrap();
|
.expect_get()
|
||||||
let album = Album::new(AlbumId::new("an album"), (1986, 4), None, vec![]);
|
.times(1)
|
||||||
let matches = api.search_release_group(&arid, album).unwrap();
|
.with(predicate::eq(url_rgid))
|
||||||
|
.return_once(|_| Ok(rgid_response))
|
||||||
|
.in_sequence(&mut seq);
|
||||||
|
|
||||||
let mut album = Album::new(
|
let mut album = Album::new(
|
||||||
AlbumId::new("an album"),
|
AlbumId::new("an album"),
|
||||||
@ -344,6 +357,16 @@ mod tests {
|
|||||||
);
|
);
|
||||||
let expected = vec![Match::new(67, album)];
|
let expected = vec![Match::new(67, album)];
|
||||||
|
|
||||||
|
let mut api = MusicBrainzApi::new(client);
|
||||||
|
|
||||||
|
let arid: Mbid = "00000000-0000-0000-0000-000000000000".try_into().unwrap();
|
||||||
|
let mut album = Album::new(AlbumId::new("an album"), (1986, 4), None, vec![]);
|
||||||
|
let matches = api.search_release_group(&arid, &album).unwrap();
|
||||||
|
assert_eq!(matches, expected);
|
||||||
|
|
||||||
|
let rgid = MbAlbumRef::from_uuid_str("11111111-1111-1111-1111-111111111111").unwrap();
|
||||||
|
album.set_musicbrainz_ref(rgid);
|
||||||
|
let matches = api.search_release_group(&arid, &album).unwrap();
|
||||||
assert_eq!(matches, expected);
|
assert_eq!(matches, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user