Merge pull request #2920 from Bond-009/tests2

Add some simple tests
pull/3038/head
Vasily 4 years ago committed by GitHub
commit 5922c35d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -82,6 +82,10 @@ namespace Emby.Server.Implementations.HttpServer
{ {
return null; return null;
} }
else if (inString.Length == 0)
{
return inString;
}
var newString = new StringBuilder(inString.Length); var newString = new StringBuilder(inString.Length);

@ -35,7 +35,8 @@ namespace Emby.Server.Implementations.Library
return null; return null;
} }
public static int? GetDefaultSubtitleStreamIndex(List<MediaStream> streams, public static int? GetDefaultSubtitleStreamIndex(
List<MediaStream> streams,
string[] preferredLanguages, string[] preferredLanguages,
SubtitlePlaybackMode mode, SubtitlePlaybackMode mode,
string audioTrackLanguage) string audioTrackLanguage)
@ -115,7 +116,8 @@ namespace Emby.Server.Implementations.Library
.ThenBy(i => i.Index); .ThenBy(i => i.Index);
} }
public static void SetSubtitleStreamScores(List<MediaStream> streams, public static void SetSubtitleStreamScores(
List<MediaStream> streams,
string[] preferredLanguages, string[] preferredLanguages,
SubtitlePlaybackMode mode, SubtitlePlaybackMode mode,
string audioTrackLanguage) string audioTrackLanguage)

@ -1,3 +1,5 @@
#nullable enable
using System; using System;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
@ -12,24 +14,24 @@ namespace Emby.Server.Implementations.Library
/// Gets the attribute value. /// Gets the attribute value.
/// </summary> /// </summary>
/// <param name="str">The STR.</param> /// <param name="str">The STR.</param>
/// <param name="attrib">The attrib.</param> /// <param name="attribute">The attrib.</param>
/// <returns>System.String.</returns> /// <returns>System.String.</returns>
/// <exception cref="ArgumentNullException">attrib</exception> /// <exception cref="ArgumentException"><paramref name="str" /> or <paramref name="attribute" /> is empty.</exception>
public static string GetAttributeValue(this string str, string attrib) public static string? GetAttributeValue(this string str, string attribute)
{ {
if (string.IsNullOrEmpty(str)) if (str.Length == 0)
{ {
throw new ArgumentNullException(nameof(str)); throw new ArgumentException("String can't be empty.", nameof(str));
} }
if (string.IsNullOrEmpty(attrib)) if (attribute.Length == 0)
{ {
throw new ArgumentNullException(nameof(attrib)); throw new ArgumentException("String can't be empty.", nameof(attribute));
} }
string srch = "[" + attrib + "="; string srch = "[" + attribute + "=";
int start = str.IndexOf(srch, StringComparison.OrdinalIgnoreCase); int start = str.IndexOf(srch, StringComparison.OrdinalIgnoreCase);
if (start > -1) if (start != -1)
{ {
start += srch.Length; start += srch.Length;
int end = str.IndexOf(']', start); int end = str.IndexOf(']', start);
@ -37,7 +39,7 @@ namespace Emby.Server.Implementations.Library
} }
// for imdbid we also accept pattern matching // for imdbid we also accept pattern matching
if (string.Equals(attrib, "imdbid", StringComparison.OrdinalIgnoreCase)) if (string.Equals(attribute, "imdbid", StringComparison.OrdinalIgnoreCase))
{ {
var m = Regex.Match(str, "tt([0-9]{7,8})", RegexOptions.IgnoreCase); var m = Regex.Match(str, "tt([0-9]{7,8})", RegexOptions.IgnoreCase);
return m.Success ? m.Value : null; return m.Success ? m.Value : null;

@ -118,10 +118,12 @@ namespace Emby.Server.Implementations.Library
{ {
throw new ArgumentNullException(nameof(fileSystem)); throw new ArgumentNullException(nameof(fileSystem));
} }
if (item == null) if (item == null)
{ {
throw new ArgumentNullException(nameof(item)); throw new ArgumentNullException(nameof(item));
} }
if (args == null) if (args == null)
{ {
throw new ArgumentNullException(nameof(args)); throw new ArgumentNullException(nameof(args));

@ -1,6 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Reflection; using System.Reflection;
using MediaBrowser.Common.Extensions;
namespace Emby.Server.Implementations.Services namespace Emby.Server.Implementations.Services
{ {
@ -81,7 +82,7 @@ namespace Emby.Server.Implementations.Services
if (propertySerializerEntry.PropertyType == typeof(bool)) if (propertySerializerEntry.PropertyType == typeof(bool))
{ {
//InputExtensions.cs#530 MVC Checkbox helper emits extra hidden input field, generating 2 values, first is the real value //InputExtensions.cs#530 MVC Checkbox helper emits extra hidden input field, generating 2 values, first is the real value
propertyTextValue = LeftPart(propertyTextValue, ','); propertyTextValue = StringExtensions.LeftPart(propertyTextValue, ',').ToString();
} }
var value = propertySerializerEntry.PropertyParseStringFn(propertyTextValue); var value = propertySerializerEntry.PropertyParseStringFn(propertyTextValue);
@ -95,19 +96,6 @@ namespace Emby.Server.Implementations.Services
return instance; return instance;
} }
public static string LeftPart(string strVal, char needle)
{
if (strVal == null)
{
return null;
}
var pos = strVal.IndexOf(needle);
return pos == -1
? strVal
: strVal.Substring(0, pos);
}
} }
internal static class TypeAccessor internal static class TypeAccessor

@ -1,4 +1,5 @@
using System; using System;
using MediaBrowser.Common.Extensions;
namespace Emby.Server.Implementations.Services namespace Emby.Server.Implementations.Services
{ {
@ -13,25 +14,12 @@ namespace Emby.Server.Implementations.Services
public static string GetMethodName(this Type type) public static string GetMethodName(this Type type)
{ {
var typeName = type.FullName != null // can be null, e.g. generic types var typeName = type.FullName != null // can be null, e.g. generic types
? LeftPart(type.FullName, "[[") // Generic Fullname ? StringExtensions.LeftPart(type.FullName, "[[", StringComparison.Ordinal).ToString() // Generic Fullname
.Replace(type.Namespace + ".", string.Empty) // Trim Namespaces .Replace(type.Namespace + ".", string.Empty, StringComparison.Ordinal) // Trim Namespaces
.Replace("+", ".") // Convert nested into normal type .Replace("+", ".", StringComparison.Ordinal) // Convert nested into normal type
: type.Name; : type.Name;
return type.IsGenericParameter ? "'" + typeName : typeName; return type.IsGenericParameter ? "'" + typeName : typeName;
} }
private static string LeftPart(string strVal, string needle)
{
if (strVal == null)
{
return null;
}
var pos = strVal.IndexOf(needle, StringComparison.OrdinalIgnoreCase);
return pos == -1
? strVal
: strVal.Substring(0, pos);
}
} }
} }

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Net; using System.Net;
using System.Net.Mime; using System.Net.Mime;
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.Net; using MediaBrowser.Common.Net;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Extensions; using Microsoft.AspNetCore.Http.Extensions;
@ -216,14 +217,14 @@ namespace Emby.Server.Implementations.SocketSharp
pi = pi.Slice(1); pi = pi.Slice(1);
} }
format = LeftPart(pi, '/'); format = pi.LeftPart('/');
if (format.Length > FormatMaxLength) if (format.Length > FormatMaxLength)
{ {
return null; return null;
} }
} }
format = LeftPart(format, '.'); format = format.LeftPart('.');
if (format.Contains("json", StringComparison.OrdinalIgnoreCase)) if (format.Contains("json", StringComparison.OrdinalIgnoreCase))
{ {
return "application/json"; return "application/json";
@ -235,16 +236,5 @@ namespace Emby.Server.Implementations.SocketSharp
return null; return null;
} }
public static ReadOnlySpan<char> LeftPart(ReadOnlySpan<char> strVal, char needle)
{
if (strVal == null)
{
return null;
}
var pos = strVal.IndexOf(needle);
return pos == -1 ? strVal : strVal.Slice(0, pos);
}
} }
} }

@ -321,7 +321,7 @@ namespace MediaBrowser.Api.Playback
var encodingOptions = ServerConfigurationManager.GetEncodingOptions(); var encodingOptions = ServerConfigurationManager.GetEncodingOptions();
// enable throttling when NOT using hardware acceleration // enable throttling when NOT using hardware acceleration
if (encodingOptions.HardwareAccelerationType == string.Empty) if (string.IsNullOrEmpty(encodingOptions.HardwareAccelerationType))
{ {
return state.InputProtocol == MediaProtocol.File && return state.InputProtocol == MediaProtocol.File &&
state.RunTimeTicks.HasValue && state.RunTimeTicks.HasValue &&
@ -330,6 +330,7 @@ namespace MediaBrowser.Api.Playback
state.VideoType == VideoType.VideoFile && state.VideoType == VideoType.VideoFile &&
!string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase); !string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase);
} }
return false; return false;
} }

@ -1,3 +1,5 @@
#nullable enable
using System; using System;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;

@ -1,3 +1,5 @@
#nullable enable
using System.Collections.Generic; using System.Collections.Generic;
namespace MediaBrowser.Common.Extensions namespace MediaBrowser.Common.Extensions

@ -1,3 +1,5 @@
#nullable enable
using System; using System;
namespace MediaBrowser.Common.Extensions namespace MediaBrowser.Common.Extensions

@ -1,3 +1,5 @@
#nullable enable
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using System.Threading; using System.Threading;

@ -1,3 +1,4 @@
#nullable enable
#pragma warning disable CS1591 #pragma warning disable CS1591
using System; using System;

@ -1,3 +1,5 @@
#nullable enable
using System; using System;
namespace MediaBrowser.Common.Extensions namespace MediaBrowser.Common.Extensions

@ -0,0 +1,37 @@
#nullable enable
using System;
namespace MediaBrowser.Common.Extensions
{
/// <summary>
/// Extensions methods to simplify string operations.
/// </summary>
public static class StringExtensions
{
/// <summary>
/// Returns the part on the left of the <c>needle</c>.
/// </summary>
/// <param name="haystack">The string to seek.</param>
/// <param name="needle">The needle to find.</param>
/// <returns>The part left of the <paramref name="needle" />.</returns>
public static ReadOnlySpan<char> LeftPart(this ReadOnlySpan<char> haystack, char needle)
{
var pos = haystack.IndexOf(needle);
return pos == -1 ? haystack : haystack[..pos];
}
/// <summary>
/// Returns the part on the left of the <c>needle</c>.
/// </summary>
/// <param name="haystack">The string to seek.</param>
/// <param name="needle">The needle to find.</param>
/// <param name="stringComparison">One of the enumeration values that specifies the rules for the search.</param>
/// <returns>The part left of the <c>needle</c>.</returns>
public static ReadOnlySpan<char> LeftPart(this ReadOnlySpan<char> haystack, ReadOnlySpan<char> needle, StringComparison stringComparison = default)
{
var pos = haystack.IndexOf(needle, stringComparison);
return pos == -1 ? haystack : haystack[..pos];
}
}
}

@ -20,7 +20,7 @@ namespace MediaBrowser.Model.Entities
} }
/// <summary> /// <summary>
/// Gets a provider id /// Gets a provider id.
/// </summary> /// </summary>
/// <param name="instance">The instance.</param> /// <param name="instance">The instance.</param>
/// <param name="provider">The provider.</param> /// <param name="provider">The provider.</param>
@ -31,7 +31,7 @@ namespace MediaBrowser.Model.Entities
} }
/// <summary> /// <summary>
/// Gets a provider id /// Gets a provider id.
/// </summary> /// </summary>
/// <param name="instance">The instance.</param> /// <param name="instance">The instance.</param>
/// <param name="name">The name.</param> /// <param name="name">The name.</param>
@ -53,7 +53,7 @@ namespace MediaBrowser.Model.Entities
} }
/// <summary> /// <summary>
/// Sets a provider id /// Sets a provider id.
/// </summary> /// </summary>
/// <param name="instance">The instance.</param> /// <param name="instance">The instance.</param>
/// <param name="name">The name.</param> /// <param name="name">The name.</param>
@ -89,7 +89,7 @@ namespace MediaBrowser.Model.Entities
} }
/// <summary> /// <summary>
/// Sets a provider id /// Sets a provider id.
/// </summary> /// </summary>
/// <param name="instance">The instance.</param> /// <param name="instance">The instance.</param>
/// <param name="provider">The provider.</param> /// <param name="provider">The provider.</param>

@ -0,0 +1,43 @@
using System;
using MediaBrowser.Common.Extensions;
using Xunit;
namespace Jellyfin.Common.Tests.Extensions
{
public class StringExtensionsTests
{
[Theory]
[InlineData("", 'q', "")]
[InlineData("Banana split", ' ', "Banana")]
[InlineData("Banana split", 'q', "Banana split")]
public void LeftPart_ValidArgsCharNeedle_Correct(string str, char needle, string expectedResult)
{
var result = str.AsSpan().LeftPart(needle).ToString();
Assert.Equal(expectedResult, result);
}
[Theory]
[InlineData("", "", "")]
[InlineData("", "q", "")]
[InlineData("Banana split", "", "")]
[InlineData("Banana split", " ", "Banana")]
[InlineData("Banana split test", " split", "Banana")]
public void LeftPart_ValidArgsWithoutStringComparison_Correct(string str, string needle, string expectedResult)
{
var result = str.AsSpan().LeftPart(needle).ToString();
Assert.Equal(expectedResult, result);
}
[Theory]
[InlineData("", "", StringComparison.Ordinal, "")]
[InlineData("Banana split", " ", StringComparison.Ordinal, "Banana")]
[InlineData("Banana split test", " split", StringComparison.Ordinal, "Banana")]
[InlineData("Banana split test", " Split", StringComparison.Ordinal, "Banana split test")]
[InlineData("Banana split test", " Splït", StringComparison.InvariantCultureIgnoreCase, "Banana split test")]
public void LeftPart_ValidArgs_Correct(string str, string needle, StringComparison stringComparison, string expectedResult)
{
var result = str.AsSpan().LeftPart(needle, stringComparison).ToString();
Assert.Equal(expectedResult, result);
}
}
}

@ -0,0 +1,18 @@
using Emby.Server.Implementations.HttpServer;
using Xunit;
namespace Jellyfin.Server.Implementations.Tests.HttpServer
{
public class ResponseFilterTests
{
[Theory]
[InlineData(null, null)]
[InlineData("", "")]
[InlineData("This is a clean string.", "This is a clean string.")]
[InlineData("This isn't \n\ra clean string.", "This isn't a clean string.")]
public void RemoveControlCharacters_ValidArgs_Correct(string? input, string? result)
{
Assert.Equal(result, ResponseFilter.RemoveControlCharacters(input));
}
}
}

@ -0,0 +1,27 @@
using System;
using Emby.Server.Implementations.Library;
using Xunit;
namespace Jellyfin.Server.Implementations.Tests.Library
{
public class PathExtensionsTests
{
[Theory]
[InlineData("Superman: Red Son [imdbid=tt10985510]", "imdbid", "tt10985510")]
[InlineData("Superman: Red Son - tt10985510", "imdbid", "tt10985510")]
[InlineData("Superman: Red Son", "imdbid", null)]
public void GetAttributeValue_ValidArgs_Correct(string input, string attribute, string? expectedResult)
{
Assert.Equal(expectedResult, PathExtensions.GetAttributeValue(input, attribute));
}
[Theory]
[InlineData("", "")]
[InlineData("Superman: Red Son [imdbid=tt10985510]", "")]
[InlineData("", "imdbid")]
public void GetAttributeValue_EmptyString_ThrowsArgumentException(string input, string attribute)
{
Assert.Throws<ArgumentException>(() => PathExtensions.GetAttributeValue(input, attribute));
}
}
}
Loading…
Cancel
Save