mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-22 06:50:32 -04:00
* Recreated Kavita Logging with Serilog instead of Default. This needs to be move out of the appsettings now, to allow auto updater to patch. * Refactored the code to be completely configured via Code rather than appsettings.json. This is a required step for Auto Updating. * Added in the ability to send logs directly to the UI only for users on the log route. Stopping implementation as Alerts page will handle the rest of the implementation. * Fixed up the backup service to not rely on Config from appsettings.json * Tweaked the Logging levels available * Moved everything over to File-scoped namespaces * Moved everything over to File-scoped namespaces * Code cleanup, removed an old migration and changed so debug logging doesn't print sensitive db data * Removed dead code
53 lines
2.1 KiB
C#
53 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using System.IO.Abstractions.TestingHelpers;
|
|
using System.Linq;
|
|
using API.Entities.Enums;
|
|
using API.Extensions;
|
|
using API.Parser;
|
|
using API.Services;
|
|
using API.Tests.Helpers;
|
|
using Microsoft.Extensions.Logging;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace API.Tests.Extensions;
|
|
|
|
public class ParserInfoListExtensions
|
|
{
|
|
private readonly IDefaultParser _defaultParser;
|
|
public ParserInfoListExtensions()
|
|
{
|
|
_defaultParser =
|
|
new DefaultParser(new DirectoryService(Substitute.For<ILogger<DirectoryService>>(),
|
|
new MockFileSystem()));
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(new[] {"1", "1", "3-5", "5", "8", "0", "0"}, new[] {"1", "3-5", "5", "8", "0"})]
|
|
public void DistinctVolumesTest(string[] volumeNumbers, string[] expectedNumbers)
|
|
{
|
|
var infos = volumeNumbers.Select(n => new ParserInfo() {Volumes = n}).ToList();
|
|
Assert.Equal(expectedNumbers, infos.DistinctVolumes());
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(new[] {@"Cynthia The Mission - c000-006 (v06) [Desudesu&Brolen].zip"}, new[] {@"E:\Manga\Cynthia the Mission\Cynthia The Mission - c000-006 (v06) [Desudesu&Brolen].zip"}, true)]
|
|
[InlineData(new[] {@"Cynthia The Mission - c000-006 (v06-07) [Desudesu&Brolen].zip"}, new[] {@"E:\Manga\Cynthia the Mission\Cynthia The Mission - c000-006 (v06) [Desudesu&Brolen].zip"}, true)]
|
|
[InlineData(new[] {@"Cynthia The Mission v20 c12-20 [Desudesu&Brolen].zip"}, new[] {@"E:\Manga\Cynthia the Mission\Cynthia The Mission - c000-006 (v06) [Desudesu&Brolen].zip"}, false)]
|
|
public void HasInfoTest(string[] inputInfos, string[] inputChapters, bool expectedHasInfo)
|
|
{
|
|
var infos = new List<ParserInfo>();
|
|
foreach (var filename in inputInfos)
|
|
{
|
|
infos.Add(_defaultParser.Parse(
|
|
filename,
|
|
string.Empty));
|
|
}
|
|
|
|
var files = inputChapters.Select(s => EntityFactory.CreateMangaFile(s, MangaFormat.Archive, 199)).ToList();
|
|
var chapter = EntityFactory.CreateChapter("0-6", false, files);
|
|
|
|
Assert.Equal(expectedHasInfo, infos.HasInfo(chapter));
|
|
}
|
|
}
|