//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using AutoFixture.Xunit2;
using Jellyfin.Api.Controllers;
using Jellyfin.Database.Implementations.Entities;
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Devices;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Net;
using MediaBrowser.Controller.Playlists;
using MediaBrowser.Controller.QuickConnect;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Users;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Moq;
using Nikse.SubtitleEdit.Core.Common;
using Xunit;
namespace Jellyfin.Api.Tests.Controllers;
public class UserControllerTests
{
private readonly UserController _subject;
private readonly Mock _mockUserManager;
private readonly Mock _mockSessionManager;
private readonly Mock _mockNetworkManager;
private readonly Mock _mockDeviceManager;
private readonly Mock _mockAuthorizationContext;
private readonly Mock _mockServerConfigurationManager;
private readonly Mock> _mockLogger;
private readonly Mock _mockQuickConnect;
private readonly Mock _mockPlaylistManager;
public UserControllerTests()
{
_mockUserManager = new Mock();
_mockSessionManager = new Mock();
_mockNetworkManager = new Mock();
_mockDeviceManager = new Mock();
_mockAuthorizationContext = new Mock();
_mockServerConfigurationManager = new Mock();
_mockLogger = new Mock>();
_mockQuickConnect = new Mock();
_mockPlaylistManager = new Mock();
_subject = new UserController(
_mockUserManager.Object,
_mockSessionManager.Object,
_mockNetworkManager.Object,
_mockDeviceManager.Object,
_mockAuthorizationContext.Object,
_mockServerConfigurationManager.Object,
_mockLogger.Object,
_mockQuickConnect.Object,
_mockPlaylistManager.Object);
}
[Theory]
[AutoData]
public async Task UpdateUserPolicy_WhenUserNotFound_ReturnsNotFound(Guid userId, UserPolicy userPolicy)
{
User? nullUser = null;
_mockUserManager.
Setup(m => m.GetUserById(userId))
.Returns(nullUser);
Assert.IsType(await _subject.UpdateUserPolicy(userId, userPolicy));
}
[Theory]
[InlineAutoData(null)]
[InlineAutoData("")]
[InlineAutoData(" ")]
public void UpdateUserPolicy_WhenPasswordResetProviderIdNotSupplied_ReturnsBadRequest(string? passwordResetProviderId)
{
var userPolicy = new UserPolicy
{
PasswordResetProviderId = passwordResetProviderId,
AuthenticationProviderId = "AuthenticationProviderId"
};
Assert.Contains(
Validate(userPolicy), v =>
v.MemberNames.Contains("PasswordResetProviderId") &&
v.ErrorMessage is not null &&
v.ErrorMessage.Contains("required", StringComparison.CurrentCultureIgnoreCase));
}
[Theory]
[InlineAutoData(null)]
[InlineAutoData("")]
[InlineAutoData(" ")]
public void UpdateUserPolicy_WhenAuthenticationProviderIdNotSupplied_ReturnsBadRequest(string? authenticationProviderId)
{
var userPolicy = new UserPolicy
{
AuthenticationProviderId = authenticationProviderId,
PasswordResetProviderId = "PasswordResetProviderId"
};
Assert.Contains(Validate(userPolicy), v =>
v.MemberNames.Contains("AuthenticationProviderId") &&
v.ErrorMessage is not null &&
v.ErrorMessage.Contains("required", StringComparison.CurrentCultureIgnoreCase));
}
private List Validate(object model)
{
var result = new List();
var context = new ValidationContext(model, null, null);
Validator.TryValidateObject(model, context, result, true);
return result;
}
}