Working version of database/collection split
This commit is contained in:
parent
87de8d2b4e
commit
f766031d99
@ -1,21 +1,19 @@
|
||||
use std::mem;
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::core::collection::{
|
||||
merge::{Merge, MergeSorted},
|
||||
track::Track,
|
||||
};
|
||||
|
||||
/// An album is a collection of tracks that were released together.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct Album {
|
||||
pub id: AlbumId,
|
||||
pub tracks: Vec<Track>,
|
||||
}
|
||||
|
||||
/// The album identifier.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, PartialOrd, Ord, Eq, Hash)]
|
||||
#[derive(Clone, Debug, PartialEq, PartialOrd, Ord, Eq, Hash)]
|
||||
pub struct AlbumId {
|
||||
pub year: u32,
|
||||
pub title: String,
|
||||
|
@ -4,7 +4,6 @@ use std::{
|
||||
mem,
|
||||
};
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
use url::Url;
|
||||
use uuid::Uuid;
|
||||
|
||||
@ -15,7 +14,7 @@ use crate::core::collection::{
|
||||
};
|
||||
|
||||
/// An artist.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct Artist {
|
||||
pub id: ArtistId,
|
||||
pub sort: Option<ArtistId>,
|
||||
@ -25,7 +24,7 @@ pub struct Artist {
|
||||
}
|
||||
|
||||
/// The artist identifier.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct ArtistId {
|
||||
pub name: String,
|
||||
}
|
||||
@ -185,7 +184,7 @@ pub trait IMbid {
|
||||
}
|
||||
|
||||
/// MusicBrainz reference.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, PartialOrd, Ord)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub struct MusicBrainz(Url);
|
||||
|
||||
impl MusicBrainz {
|
||||
|
@ -1,9 +1,7 @@
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::core::collection::merge::Merge;
|
||||
|
||||
/// A single track on an album.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct Track {
|
||||
pub id: TrackId,
|
||||
pub artist: Vec<String>,
|
||||
@ -11,14 +9,14 @@ pub struct Track {
|
||||
}
|
||||
|
||||
/// The track identifier.
|
||||
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct TrackId {
|
||||
pub number: u32,
|
||||
pub title: String,
|
||||
}
|
||||
|
||||
/// The track quality. Combines format and bitrate information.
|
||||
#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, Eq)]
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub struct Quality {
|
||||
pub format: Format,
|
||||
pub bitrate: u32,
|
||||
@ -31,7 +29,7 @@ impl Track {
|
||||
}
|
||||
|
||||
/// The track file format.
|
||||
#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq, Eq, Hash)]
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)]
|
||||
pub enum Format {
|
||||
Flac,
|
||||
Mp3,
|
||||
|
@ -10,6 +10,8 @@ use crate::core::{
|
||||
database::{IDatabase, LoadError, SaveError},
|
||||
};
|
||||
|
||||
use super::serde::Database;
|
||||
|
||||
impl From<serde_json::Error> for LoadError {
|
||||
fn from(err: serde_json::Error) -> LoadError {
|
||||
LoadError::SerDeError(err.to_string())
|
||||
@ -48,11 +50,13 @@ impl<JDB: IJsonDatabaseBackend> JsonDatabase<JDB> {
|
||||
impl<JDB: IJsonDatabaseBackend> IDatabase for JsonDatabase<JDB> {
|
||||
fn load(&self) -> Result<Collection, LoadError> {
|
||||
let serialized = self.backend.read()?;
|
||||
Ok(serde_json::from_str(&serialized)?)
|
||||
let database: Database = serde_json::from_str(&serialized)?;
|
||||
database.try_into()
|
||||
}
|
||||
|
||||
fn save(&mut self, collection: &Collection) -> Result<(), SaveError> {
|
||||
let serialized = serde_json::to_string(&collection)?;
|
||||
let database: Database = collection.into();
|
||||
let serialized = serde_json::to_string(&database)?;
|
||||
self.backend.write(&serialized)?;
|
||||
Ok(())
|
||||
}
|
||||
@ -66,19 +70,26 @@ mod tests {
|
||||
use std::collections::HashMap;
|
||||
|
||||
use crate::core::{
|
||||
collection::{
|
||||
artist::{Artist, ArtistId},
|
||||
Collection,
|
||||
},
|
||||
collection::{artist::Artist, Collection},
|
||||
testmod::FULL_COLLECTION,
|
||||
};
|
||||
|
||||
use super::*;
|
||||
use testmod::DATABASE_JSON;
|
||||
|
||||
fn expected() -> Collection {
|
||||
let mut expected = FULL_COLLECTION.to_owned();
|
||||
for artist in expected.iter_mut() {
|
||||
artist.albums.clear();
|
||||
}
|
||||
expected
|
||||
}
|
||||
|
||||
// FIXME: Re-add save() test.
|
||||
|
||||
#[test]
|
||||
fn load() {
|
||||
let expected = FULL_COLLECTION.to_owned();
|
||||
let expected = expected();
|
||||
let result = Ok(DATABASE_JSON.to_owned());
|
||||
|
||||
let mut backend = MockIJsonDatabaseBackend::new();
|
||||
@ -93,6 +104,7 @@ mod tests {
|
||||
fn reverse() {
|
||||
// Saving is non-deterministic due to HashMap, but regardless of how the data ends up being
|
||||
// saved, loading it again should always yield the exact same data as was input.
|
||||
// FIXME: remove and replace with mocks now that indeterminism is not a problem.
|
||||
struct MockIJsonDatabaseBackend {
|
||||
data: Option<String>,
|
||||
}
|
||||
@ -115,13 +127,15 @@ mod tests {
|
||||
database.save(&write_data).unwrap();
|
||||
let read_data: Vec<Artist> = database.load().unwrap();
|
||||
|
||||
assert_eq!(write_data, read_data);
|
||||
// Album information is not saved to disk.
|
||||
let expected = expected();
|
||||
assert_eq!(read_data, expected);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn load_errors() {
|
||||
let json = String::from("");
|
||||
let serde_err = serde_json::from_str::<Collection>(&json);
|
||||
let serde_err = serde_json::from_str::<Database>(&json);
|
||||
assert!(serde_err.is_err());
|
||||
|
||||
let serde_err: LoadError = serde_err.unwrap_err().into();
|
||||
@ -131,11 +145,9 @@ mod tests {
|
||||
|
||||
#[test]
|
||||
fn save_errors() {
|
||||
let mut object = HashMap::<ArtistId, String>::new();
|
||||
object.insert(
|
||||
ArtistId::new(String::from("artist")),
|
||||
String::from("string"),
|
||||
);
|
||||
// serde_json will raise an error as it requires keys to be a string.
|
||||
let mut object = HashMap::<Option<String>, String>::new();
|
||||
object.insert(Some(String::from("artist")), String::from("string"));
|
||||
let serde_err = serde_json::to_string(&object);
|
||||
assert!(serde_err.is_err());
|
||||
|
||||
|
@ -1,57 +1,17 @@
|
||||
pub static DATABASE_JSON: &str = "[\
|
||||
pub static DATABASE_JSON: &str = "{\
|
||||
\"V1\":
|
||||
[\
|
||||
{\
|
||||
\"id\":{\"name\":\"album_artist a\"},\
|
||||
\"name\":\"album_artist a\",\
|
||||
\"sort\":null,\
|
||||
\"musicbrainz\":\"https://musicbrainz.org/artist/00000000-0000-0000-0000-000000000000\",\
|
||||
\"properties\":{\
|
||||
\"MusicButler\":[\"https://www.musicbutler.io/artist-page/000000000\"],\
|
||||
\"Qobuz\":[\"https://www.qobuz.com/nl-nl/interpreter/artist-a/download-streaming-albums\"]\
|
||||
},\
|
||||
\"albums\":[\
|
||||
{\
|
||||
\"id\":{\"year\":1998,\"title\":\"album_title a.a\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track a.a.1\"},\
|
||||
\"artist\":[\"artist a.a.1\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":992}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track a.a.2\"},\
|
||||
\"artist\":[\"artist a.a.2.1\",\"artist a.a.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":320}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":3,\"title\":\"track a.a.3\"},\
|
||||
\"artist\":[\"artist a.a.3\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1061}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":4,\"title\":\"track a.a.4\"},\
|
||||
\"artist\":[\"artist a.a.4\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1042}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2015,\"title\":\"album_title a.b\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track a.b.1\"},\
|
||||
\"artist\":[\"artist a.b.1\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1004}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track a.b.2\"},\
|
||||
\"artist\":[\"artist a.b.2\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1077}\
|
||||
}\
|
||||
]\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"name\":\"album_artist b\"},\
|
||||
\"name\":\"album_artist b\",\
|
||||
\"sort\":null,\
|
||||
\"musicbrainz\":\"https://musicbrainz.org/artist/11111111-1111-1111-1111-111111111111\",\
|
||||
\"properties\":{\
|
||||
@ -61,144 +21,19 @@ pub static DATABASE_JSON: &str = "[\
|
||||
\"https://www.musicbutler.io/artist-page/111111112\"\
|
||||
],\
|
||||
\"Qobuz\":[\"https://www.qobuz.com/nl-nl/interpreter/artist-b/download-streaming-albums\"]\
|
||||
},\
|
||||
\"albums\":[\
|
||||
{\
|
||||
\"id\":{\"year\":2003,\"title\":\"album_title b.a\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track b.a.1\"},\
|
||||
\"artist\":[\"artist b.a.1\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":190}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track b.a.2\"},\
|
||||
\"artist\":[\"artist b.a.2.1\",\"artist b.a.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2008,\"title\":\"album_title b.b\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track b.b.1\"},\
|
||||
\"artist\":[\"artist b.b.1\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1077}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track b.b.2\"},\
|
||||
\"artist\":[\"artist b.b.2.1\",\"artist b.b.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":320}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2009,\"title\":\"album_title b.c\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track b.c.1\"},\
|
||||
\"artist\":[\"artist b.c.1\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":190}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track b.c.2\"},\
|
||||
\"artist\":[\"artist b.c.2.1\",\"artist b.c.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2015,\"title\":\"album_title b.d\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track b.d.1\"},\
|
||||
\"artist\":[\"artist b.d.1\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":190}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track b.d.2\"},\
|
||||
\"artist\":[\"artist b.d.2.1\",\"artist b.d.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
}\
|
||||
]\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"name\":\"album_artist c\"},\
|
||||
\"name\":\"album_artist c\",\
|
||||
\"sort\":null,\
|
||||
\"musicbrainz\":\"https://musicbrainz.org/artist/11111111-1111-1111-1111-111111111111\",\
|
||||
\"properties\":{},\
|
||||
\"albums\":[\
|
||||
{\
|
||||
\"id\":{\"year\":1985,\"title\":\"album_title c.a\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track c.a.1\"},\
|
||||
\"artist\":[\"artist c.a.1\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":320}\
|
||||
\"properties\":{}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track c.a.2\"},\
|
||||
\"artist\":[\"artist c.a.2.1\",\"artist c.a.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2018,\"title\":\"album_title c.b\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track c.b.1\"},\
|
||||
\"artist\":[\"artist c.b.1\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":1041}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track c.b.2\"},\
|
||||
\"artist\":[\"artist c.b.2.1\",\"artist c.b.2.2\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":756}\
|
||||
}\
|
||||
]\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"name\":\"album_artist d\"},\
|
||||
\"name\":\"album_artist d\",\
|
||||
\"sort\":null,\
|
||||
\"musicbrainz\":null,\
|
||||
\"properties\":{},\
|
||||
\"albums\":[\
|
||||
{\
|
||||
\"id\":{\"year\":1995,\"title\":\"album_title d.a\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track d.a.1\"},\
|
||||
\"artist\":[\"artist d.a.1\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track d.a.2\"},\
|
||||
\"artist\":[\"artist d.a.2.1\",\"artist d.a.2.2\"],\
|
||||
\"quality\":{\"format\":\"Mp3\",\"bitrate\":120}\
|
||||
\"properties\":{}\
|
||||
}\
|
||||
]\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"year\":2028,\"title\":\"album_title d.b\"},\
|
||||
\"tracks\":[\
|
||||
{\
|
||||
\"id\":{\"number\":1,\"title\":\"track d.b.1\"},\
|
||||
\"artist\":[\"artist d.b.1\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":841}\
|
||||
},\
|
||||
{\
|
||||
\"id\":{\"number\":2,\"title\":\"track d.b.2\"},\
|
||||
\"artist\":[\"artist d.b.2.1\",\"artist d.b.2.2\"],\
|
||||
\"quality\":{\"format\":\"Flac\",\"bitrate\":756}\
|
||||
}\
|
||||
]\
|
||||
}\
|
||||
]\
|
||||
}\
|
||||
]";
|
||||
}";
|
||||
|
@ -2,6 +2,8 @@
|
||||
|
||||
#[cfg(feature = "database-json")]
|
||||
pub mod json;
|
||||
#[cfg(feature = "database-json")]
|
||||
mod serde;
|
||||
|
||||
use std::fmt;
|
||||
|
||||
|
82
src/core/database/serde.rs
Normal file
82
src/core/database/serde.rs
Normal file
@ -0,0 +1,82 @@
|
||||
//! Helper module for backends that can use serde for (de)serialisation.
|
||||
|
||||
use std::collections::BTreeMap;
|
||||
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
use crate::{
|
||||
collection::{
|
||||
self,
|
||||
artist::{ArtistId, MusicBrainz},
|
||||
},
|
||||
core::{
|
||||
collection::{artist::Artist, Collection},
|
||||
database::LoadError,
|
||||
},
|
||||
};
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub enum Database {
|
||||
V1(Vec<DbArtist>),
|
||||
}
|
||||
|
||||
impl From<&Collection> for Database {
|
||||
fn from(collection: &Collection) -> Self {
|
||||
Database::V1(collection.iter().map(|artist| artist.into()).collect())
|
||||
}
|
||||
}
|
||||
|
||||
impl TryFrom<Database> for Collection {
|
||||
type Error = LoadError;
|
||||
|
||||
fn try_from(database: Database) -> Result<Self, Self::Error> {
|
||||
match database {
|
||||
Database::V1(collection) => collection
|
||||
.into_iter()
|
||||
.map(|artist| artist.try_into())
|
||||
.collect(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// FIXME: try with references to original values.
|
||||
#[derive(Debug, Serialize, Deserialize)]
|
||||
pub struct DbArtist {
|
||||
pub name: String,
|
||||
pub sort: Option<String>,
|
||||
pub musicbrainz: Option<String>,
|
||||
pub properties: BTreeMap<String, Vec<String>>,
|
||||
}
|
||||
|
||||
impl From<&Artist> for DbArtist {
|
||||
fn from(artist: &Artist) -> Self {
|
||||
DbArtist {
|
||||
name: artist.id.name.clone(),
|
||||
sort: artist.sort.clone().map(|id| id.name),
|
||||
musicbrainz: artist.musicbrainz.clone().map(|mb| mb.as_ref().to_owned()),
|
||||
properties: artist.properties.clone().into_iter().collect(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl TryFrom<DbArtist> for Artist {
|
||||
type Error = LoadError;
|
||||
|
||||
fn try_from(artist: DbArtist) -> Result<Self, Self::Error> {
|
||||
Ok(Artist {
|
||||
id: ArtistId::new(artist.name),
|
||||
sort: artist.sort.map(ArtistId::new),
|
||||
musicbrainz: artist.musicbrainz.map(MusicBrainz::new).transpose()?,
|
||||
properties: artist.properties.into_iter().collect(),
|
||||
albums: vec![],
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
impl From<collection::Error> for LoadError {
|
||||
fn from(err: collection::Error) -> Self {
|
||||
match err {
|
||||
collection::Error::UrlError(e) => LoadError::SerDeError(e),
|
||||
}
|
||||
}
|
||||
}
|
@ -4,7 +4,7 @@ use once_cell::sync::Lazy;
|
||||
use tempfile::NamedTempFile;
|
||||
|
||||
use musichoard::{
|
||||
collection::artist::Artist,
|
||||
collection::{artist::Artist, Collection},
|
||||
database::{
|
||||
json::{backend::JsonDatabaseFileBackend, JsonDatabase},
|
||||
IDatabase,
|
||||
@ -16,6 +16,16 @@ use crate::testlib::COLLECTION;
|
||||
pub static DATABASE_TEST_FILE: Lazy<PathBuf> =
|
||||
Lazy::new(|| fs::canonicalize("./tests/files/database/database.json").unwrap());
|
||||
|
||||
fn expected() -> Collection {
|
||||
let mut expected = COLLECTION.to_owned();
|
||||
for artist in expected.iter_mut() {
|
||||
artist.albums.clear();
|
||||
}
|
||||
expected
|
||||
}
|
||||
|
||||
// FIXME: Re-add save test.
|
||||
|
||||
#[test]
|
||||
fn load() {
|
||||
let backend = JsonDatabaseFileBackend::new(&*DATABASE_TEST_FILE);
|
||||
@ -23,7 +33,7 @@ fn load() {
|
||||
|
||||
let read_data: Vec<Artist> = database.load().unwrap();
|
||||
|
||||
let expected = COLLECTION.to_owned();
|
||||
let expected = expected();
|
||||
assert_eq!(read_data, expected);
|
||||
}
|
||||
|
||||
@ -40,5 +50,7 @@ fn reverse() {
|
||||
database.save(&write_data).unwrap();
|
||||
let read_data: Vec<Artist> = database.load().unwrap();
|
||||
|
||||
assert_eq!(write_data, read_data);
|
||||
// Album data is not saved into database.
|
||||
let expected = expected();
|
||||
assert_eq!(read_data, expected);
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user