Add SqliteItemRepository.ItemImageInfoFromValueString as a fuzzing
target and add test cases
This commit is contained in:
parent
620dd94970
commit
286dabdc4b
|
@ -1135,15 +1135,25 @@ namespace Emby.Server.Implementations.Data
|
||||||
Path = RestorePath(path.ToString())
|
Path = RestorePath(path.ToString())
|
||||||
};
|
};
|
||||||
|
|
||||||
if (long.TryParse(dateModified, NumberStyles.Any, CultureInfo.InvariantCulture, out var ticks))
|
if (long.TryParse(dateModified, NumberStyles.Any, CultureInfo.InvariantCulture, out var ticks)
|
||||||
|
&& ticks >= DateTime.MinValue.Ticks
|
||||||
|
&& ticks <= DateTime.MaxValue.Ticks)
|
||||||
{
|
{
|
||||||
image.DateModified = new DateTime(ticks, DateTimeKind.Utc);
|
image.DateModified = new DateTime(ticks, DateTimeKind.Utc);
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (Enum.TryParse(imageType.ToString(), true, out ImageType type))
|
if (Enum.TryParse(imageType.ToString(), true, out ImageType type))
|
||||||
{
|
{
|
||||||
image.Type = type;
|
image.Type = type;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
// Optional parameters: width*height*blurhash
|
// Optional parameters: width*height*blurhash
|
||||||
if (nextSegment + 1 < value.Length - 1)
|
if (nextSegment + 1 < value.Length - 1)
|
||||||
|
|
|
@ -16,6 +16,7 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
[assembly: NeutralResourcesLanguage("en")]
|
[assembly: NeutralResourcesLanguage("en")]
|
||||||
[assembly: InternalsVisibleTo("Jellyfin.Server.Implementations.Tests")]
|
[assembly: InternalsVisibleTo("Jellyfin.Server.Implementations.Tests")]
|
||||||
|
[assembly: InternalsVisibleTo("Emby.Server.Implementations.Fuzz")]
|
||||||
|
|
||||||
// Setting ComVisible to false makes the types in this assembly not visible
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
// to COM components. If you need to access a type in this assembly from
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
|
|
@ -12,6 +12,13 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="../../MediaBrowser.Controller/MediaBrowser.Controller.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="AutoFixture" Version="4.17.0" />
|
||||||
|
<PackageReference Include="AutoFixture.AutoMoq" Version="4.17.0" />
|
||||||
|
<PackageReference Include="Moq" Version="4.16.1" />
|
||||||
<PackageReference Include="SharpFuzz" Version="1.6.2" />
|
<PackageReference Include="SharpFuzz" Version="1.6.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
using System;
|
using System;
|
||||||
|
using AutoFixture;
|
||||||
|
using AutoFixture.AutoMoq;
|
||||||
|
using Emby.Server.Implementations.Data;
|
||||||
using Emby.Server.Implementations.Library;
|
using Emby.Server.Implementations.Library;
|
||||||
|
using MediaBrowser.Controller;
|
||||||
|
using MediaBrowser.Controller.Entities;
|
||||||
|
using MediaBrowser.Model.Entities;
|
||||||
|
using Moq;
|
||||||
using SharpFuzz;
|
using SharpFuzz;
|
||||||
|
|
||||||
namespace Emby.Server.Implementations.Fuzz
|
namespace Emby.Server.Implementations.Fuzz
|
||||||
|
@ -11,6 +18,7 @@ namespace Emby.Server.Implementations.Fuzz
|
||||||
switch (args[0])
|
switch (args[0])
|
||||||
{
|
{
|
||||||
case "PathExtensions.TryReplaceSubPath": Run(PathExtensions_TryReplaceSubPath); return;
|
case "PathExtensions.TryReplaceSubPath": Run(PathExtensions_TryReplaceSubPath); return;
|
||||||
|
case "SqliteItemRepository.ItemImageInfoFromValueString": Run(SqliteItemRepository_ItemImageInfoFromValueString); return;
|
||||||
default: throw new ArgumentException($"Unknown fuzzing function: {args[0]}");
|
default: throw new ArgumentException($"Unknown fuzzing function: {args[0]}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,5 +36,27 @@ namespace Emby.Server.Implementations.Fuzz
|
||||||
|
|
||||||
_ = PathExtensions.TryReplaceSubPath(parts[0], parts[1], parts[2], out _);
|
_ = PathExtensions.TryReplaceSubPath(parts[0], parts[1], parts[2], out _);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void SqliteItemRepository_ItemImageInfoFromValueString(string data)
|
||||||
|
{
|
||||||
|
var sqliteItemRepository = MockSqliteItemRepository();
|
||||||
|
sqliteItemRepository.ItemImageInfoFromValueString(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static SqliteItemRepository MockSqliteItemRepository()
|
||||||
|
{
|
||||||
|
const string VirtualMetaDataPath = "%MetadataPath%";
|
||||||
|
const string MetaDataPath = "/meta/data/path";
|
||||||
|
|
||||||
|
var appHost = new Mock<IServerApplicationHost>();
|
||||||
|
appHost.Setup(x => x.ExpandVirtualPath(It.IsAny<string>()))
|
||||||
|
.Returns((string x) => x.Replace(VirtualMetaDataPath, MetaDataPath, StringComparison.Ordinal));
|
||||||
|
appHost.Setup(x => x.ReverseVirtualPath(It.IsAny<string>()))
|
||||||
|
.Returns((string x) => x.Replace(MetaDataPath, VirtualMetaDataPath, StringComparison.Ordinal));
|
||||||
|
|
||||||
|
IFixture fixture = new Fixture().Customize(new AutoMoqCustomization { ConfigureMembers = true });
|
||||||
|
fixture.Inject(appHost);
|
||||||
|
return fixture.Create<SqliteItemRepository>();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
/mnt/series/Family Guy/Season 1/Family Guy - S01E01-thumb.jpg*637452096478512963*Primary*1920*1080*WjQbtJtSO8nhNZ%L_Io#R/oaS6o}-;adXAoIn7j[%hW9s:WGw[nN
|
|
@ -109,6 +109,9 @@ namespace Jellyfin.Server.Implementations.Tests.Data
|
||||||
[InlineData("")]
|
[InlineData("")]
|
||||||
[InlineData("*")]
|
[InlineData("*")]
|
||||||
[InlineData("https://image.tmdb.org/t/p/original/zhB5CHEgqqh4wnEqDNJLfWXJlcL.jpg*0")]
|
[InlineData("https://image.tmdb.org/t/p/original/zhB5CHEgqqh4wnEqDNJLfWXJlcL.jpg*0")]
|
||||||
|
[InlineData("/mnt/series/Family Guy/Season 1/Family Guy - S01E01-thumb.jpg*6374520964785129080*WjQbtJtSO8nhNZ%L_Io#R/oaS<o}-;adXAoIn7j[%hW9s:WGw[nN")] // Invalid modified date
|
||||||
|
[InlineData("/mnt/series/Family Guy/Season 1/Family Guy - S01E01-thumb.jpg*-637452096478512963*WjQbtJtSO8nhNZ%L_Io#R/oaS<o}-;adXAoIn7j[%hW9s:WGw[nN")] // Negative modified date
|
||||||
|
[InlineData("/mnt/series/Family Guy/Season 1/Family Guy - S01E01-thumb.jpg*637452096478512963*Invalid*1920*1080*WjQbtJtSO8nhNZ%L_Io#R/oaS6o}-;adXAoIn7j[%hW9s:WGw[nN")] // Invalid type
|
||||||
public void ItemImageInfoFromValueString_Invalid_Null(string value)
|
public void ItemImageInfoFromValueString_Invalid_Null(string value)
|
||||||
{
|
{
|
||||||
Assert.Null(_sqliteItemRepository.ItemImageInfoFromValueString(value));
|
Assert.Null(_sqliteItemRepository.ItemImageInfoFromValueString(value));
|
||||||
|
|
Loading…
Reference in New Issue
Block a user