
* SeriesGroup tag can now have comma separated value to allow a series to be a part of multiple collections. * Added a missing unit test * Refactored how collection tags are created to work in the scan loop reliably. * Added a unit test for RemoveTagsWithoutSeries * Fixed a bug in reading list title generation to avoid Volume 0 if the underlying file had a title set. Fixed a misconfigured unit test.
68 lines
2 KiB
C#
68 lines
2 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using API.Data;
|
|
using API.Entities;
|
|
using API.Entities.Enums;
|
|
using API.Entities.Metadata;
|
|
|
|
namespace API.Tests.Helpers;
|
|
|
|
/// <summary>
|
|
/// Used to help quickly create DB entities for Unit Testing
|
|
/// </summary>
|
|
public static class EntityFactory
|
|
{
|
|
public static Series CreateSeries(string name)
|
|
{
|
|
return new Series()
|
|
{
|
|
Name = name,
|
|
SortName = name,
|
|
LocalizedName = name,
|
|
NormalizedName = API.Services.Tasks.Scanner.Parser.Parser.Normalize(name),
|
|
Volumes = new List<Volume>(),
|
|
Metadata = new SeriesMetadata()
|
|
};
|
|
}
|
|
|
|
public static Volume CreateVolume(string volumeNumber, List<Chapter> chapters = null)
|
|
{
|
|
var chaps = chapters ?? new List<Chapter>();
|
|
var pages = chaps.Count > 0 ? chaps.Max(c => c.Pages) : 0;
|
|
return new Volume()
|
|
{
|
|
Name = volumeNumber,
|
|
Number = (int) API.Services.Tasks.Scanner.Parser.Parser.MinNumberFromRange(volumeNumber),
|
|
Pages = pages,
|
|
Chapters = chaps
|
|
};
|
|
}
|
|
|
|
public static Chapter CreateChapter(string range, bool isSpecial, List<MangaFile> files = null, int pageCount = 0)
|
|
{
|
|
return new Chapter()
|
|
{
|
|
IsSpecial = isSpecial,
|
|
Range = range,
|
|
Number = API.Services.Tasks.Scanner.Parser.Parser.MinNumberFromRange(range) + string.Empty,
|
|
Files = files ?? new List<MangaFile>(),
|
|
Pages = pageCount,
|
|
|
|
};
|
|
}
|
|
|
|
public static MangaFile CreateMangaFile(string filename, MangaFormat format, int pages)
|
|
{
|
|
return new MangaFile()
|
|
{
|
|
FilePath = filename,
|
|
Format = format,
|
|
Pages = pages
|
|
};
|
|
}
|
|
|
|
public static CollectionTag CreateCollectionTag(int id, string title, string summary, bool promoted)
|
|
{
|
|
return DbFactory.CollectionTag(id, title, summary, promoted);
|
|
}
|
|
}
|