1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Devices;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Events;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Session;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging.Abstractions;
using Moq;
using Xunit;
namespace Jellyfin.Server.Implementations.Tests.SessionManager;
public class PlayCommandQueueTests : IDisposable
{
private readonly ILibraryManager? _previousLibraryManager;
public PlayCommandQueueTests()
{
_previousLibraryManager = BaseItem.LibraryManager;
}
/// <summary>
/// A music genre tags its artists as well as their songs, and a by-name artist row is not a
/// folder, so the queue query cannot exclude it. Such an item has no media sources, and a
/// client that reaches it in the queue gets an error instead of the next track.
/// </summary>
/// <returns><placeholder>A <see cref="Task"/> representing the asynchronous unit test.</placeholder></returns>
[Fact]
public async Task SendPlayCommand_GenreTaggingAnArtist_QueuesOnlyPlayableItems()
{
var genre = new MusicGenre { Id = Guid.NewGuid(), Name = "Reggaeton" };
var song = new Audio { Id = Guid.NewGuid(), Name = "Me Porto Bonito" };
var artist = new MusicArtist { Id = Guid.NewGuid(), Name = "NATTI NATASHA" };
var libraryManager = new Mock<ILibraryManager>();
libraryManager.Setup(i => i.GetItemById(genre.Id)).Returns(genre);
libraryManager
.Setup(i => i.GetItemList(It.IsAny<InternalItemsQuery>()))
.Returns(new List<BaseItem> { artist, song });
BaseItem.LibraryManager = libraryManager.Object;
await using var sessionManager = new Emby.Server.Implementations.Session.SessionManager(
NullLogger<Emby.Server.Implementations.Session.SessionManager>.Instance,
Mock.Of<IEventManager>(),
Mock.Of<IUserDataManager>(),
Mock.Of<IServerConfigurationManager>(),
libraryManager.Object,
Mock.Of<IUserManager>(),
Mock.Of<IMusicManager>(),
Mock.Of<IDtoService>(),
Mock.Of<IImageProcessor>(),
Mock.Of<IServerApplicationHost>(),
Mock.Of<IDeviceManager>(),
Mock.Of<IMediaSourceManager>(),
Mock.Of<IHostApplicationLifetime>());
var session = await sessionManager.LogSessionActivity("app_name", "0.0.0", "device_id", "device_name", "127.0.0.1", null);
var command = new PlayRequest
{
ItemIds = new[] { genre.Id },
PlayCommand = PlayCommand.PlayNow
};
await sessionManager.SendPlayCommand(null, session.Id, command, CancellationToken.None);
Assert.Equal(new[] { song.Id }, command.ItemIds);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
BaseItem.LibraryManager = _previousLibraryManager!;
}
}
}
|