mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-04-27 12:02:51 -04:00
v1.3.0: Massive WebUI cleanup, Fixed/Stabilized scrobbling, Significant security hardening, added user login to WebUI, refactored searching/interleaving to work MUCH better, Tidal Powered recommendations for SquidWTF provider, Fixed double scrobbling, inferring stops much better, fixed playlist cron rebuilding, stale injected playlist artwork, and search cache TTL
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
using System.Reflection;
|
||||
using allstarr.Controllers;
|
||||
|
||||
namespace allstarr.Tests;
|
||||
|
||||
public class JellyfinSearchTermRecoveryTests
|
||||
{
|
||||
[Fact]
|
||||
public void RecoverSearchTermFromRawQuery_PreservesUnencodedAmpersand()
|
||||
{
|
||||
var raw = "?SearchTerm=Love%20&%20Hyperbole&Recursive=true&IncludeItemTypes=MusicAlbum";
|
||||
var recovered = InvokePrivateStatic<string?>("RecoverSearchTermFromRawQuery", raw);
|
||||
|
||||
Assert.Equal("Love & Hyperbole", recovered);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void GetEffectiveSearchTerm_PrefersRecoveredWhenBoundIsTruncated()
|
||||
{
|
||||
var bound = "Love ";
|
||||
var raw = "?SearchTerm=Love%20&%20Hyperbole&Recursive=true";
|
||||
var effective = InvokePrivateStatic<string?>("GetEffectiveSearchTerm", bound, raw);
|
||||
|
||||
Assert.Equal("Love & Hyperbole", effective);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void GetEffectiveSearchTerm_UsesBoundWhenRecoveredIsMissing()
|
||||
{
|
||||
var bound = "Love & Hyperbole";
|
||||
var raw = "?Recursive=true&IncludeItemTypes=MusicAlbum";
|
||||
var effective = InvokePrivateStatic<string?>("GetEffectiveSearchTerm", bound, raw);
|
||||
|
||||
Assert.Equal("Love & Hyperbole", effective);
|
||||
}
|
||||
|
||||
private static T InvokePrivateStatic<T>(string methodName, params object?[] args)
|
||||
{
|
||||
var method = typeof(JellyfinController).GetMethod(
|
||||
methodName,
|
||||
BindingFlags.NonPublic | BindingFlags.Static);
|
||||
|
||||
Assert.NotNull(method);
|
||||
var result = method!.Invoke(null, args);
|
||||
return (T)result!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user