You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/MediaFiles/TrackImport/Identification/IdentificationTestCase.cs

38 lines
1.1 KiB

using System.Collections.Generic;
using NzbDrone.Core.Parser.Model;
using NzbDrone.Core.Profiles.Metadata;
namespace NzbDrone.Core.MediaFiles.TrackImport.Identification
{
public class BasicLocalTrack
{
public string Path { get; set; }
public ParsedTrackInfo FileTrackInfo { get; set; }
}
public class ArtistTestCase
{
public string Artist { get; set; }
public MetadataProfile MetadataProfile { get; set; }
}
public class AcoustIdTestCase
{
public string Path { get; set; }
public List<string> AcoustIdResults { get; set; }
}
public class IdTestCase
{
public List<string> ExpectedMusicBrainzReleaseIds { get; set; }
public List<ArtistTestCase> LibraryArtists { get; set; }
public string Artist { get; set; }
public string Album { get; set; }
public string Release { get; set; }
public bool NewDownload { get; set; }
public bool SingleRelease { get; set; }
public List<BasicLocalTrack> Tracks { get; set; }
public List<AcoustIdTestCase> Fingerprints { get; set; }
}
}