af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
// <copyright file="ImageControllerTests.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Tests.Controllers;
|
|
|
|
using Jellyfin.Api.Controllers;
|
|
using Xunit;
|
|
|
|
public static class ImageControllerTests
|
|
{
|
|
[Theory]
|
|
[InlineData("image/apng", ".apng")]
|
|
[InlineData("image/avif", ".avif")]
|
|
[InlineData("image/bmp", ".bmp")]
|
|
[InlineData("image/gif", ".gif")]
|
|
[InlineData("image/x-icon", ".ico")]
|
|
[InlineData("image/jpeg", ".jpg")]
|
|
[InlineData("image/png", ".png")]
|
|
[InlineData("image/png; charset=utf-8", ".png")]
|
|
[InlineData("image/svg+xml", ".svg")]
|
|
[InlineData("image/tiff", ".tiff")]
|
|
[InlineData("image/webp", ".webp")]
|
|
public static void TryGetImageExtensionFromContentType_Valid_True(string contentType, string extension)
|
|
{
|
|
Assert.True(ImageController.TryGetImageExtensionFromContentType(contentType, out var ex));
|
|
Assert.Equal(extension, ex);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(null)]
|
|
[InlineData("")]
|
|
[InlineData("text/html")]
|
|
public static void TryGetImageExtensionFromContentType_InValid_False(string? contentType)
|
|
{
|
|
Assert.False(ImageController.TryGetImageExtensionFromContentType(contentType, out var ex));
|
|
Assert.Null(ex);
|
|
}
|
|
}
|