Fix index out of range and add reg tests
This commit is contained in:
parent
ed2f08d05f
commit
2fc14375f8
|
@ -55,7 +55,7 @@ namespace Jellyfin.Server.Middleware
|
|||
// Unencode and re-parse querystring.
|
||||
var unencodedKey = HttpUtility.UrlDecode(key);
|
||||
|
||||
if (string.Equals(unencodedKey, key, System.StringComparison.Ordinal))
|
||||
if (string.Equals(unencodedKey, key, StringComparison.Ordinal))
|
||||
{
|
||||
// Don't do anything if it's not encoded.
|
||||
_store = value;
|
||||
|
@ -72,7 +72,7 @@ namespace Jellyfin.Server.Middleware
|
|||
if (i == -1)
|
||||
{
|
||||
// encoded is an equals.
|
||||
pairs.Add(pair[..i].ToString(), StringValues.Empty);
|
||||
pairs.Add(pair.ToString(), StringValues.Empty);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
30
tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
Normal file
30
tests/Jellyfin.Server.Tests/UrlDecodeQueryFeatureTests.cs
Normal file
|
@ -0,0 +1,30 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Jellyfin.Server.Middleware;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Http.Features;
|
||||
using Microsoft.Extensions.Primitives;
|
||||
using Xunit;
|
||||
|
||||
namespace Jellyfin.Server.Tests
|
||||
{
|
||||
public static class UrlDecodeQueryFeatureTests
|
||||
{
|
||||
[Theory]
|
||||
[InlineData("e0a72cb2a2c7", "e0a72cb2a2c7")] // isn't encoded
|
||||
[InlineData("random+test", "random test")] // encoded
|
||||
[InlineData("random%20test", "random test")] // encoded
|
||||
public static void EmptyValueTest(string query, string key)
|
||||
{
|
||||
var dict = new Dictionary<string, StringValues>
|
||||
{
|
||||
{ query, StringValues.Empty }
|
||||
};
|
||||
var test = new UrlDecodeQueryFeature(new QueryFeature(new QueryCollection(dict)));
|
||||
Assert.Single(test.Query);
|
||||
var (k, v) = test.Query.First();
|
||||
Assert.Equal(k, key);
|
||||
Assert.Empty(v);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user