mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00

fix(auth): [PM-2996] Add Pending Auth Request Data to Devices Response - New stored procedure to fetch the appropriate data. - Updated devices controller to respond with the new data. - Tests written at the controller and repository level. Resolves PM-2996
89 lines
3.0 KiB
C#
89 lines
3.0 KiB
C#
using Bit.Api.Controllers;
|
|
using Bit.Api.Models.Response;
|
|
using Bit.Core.Auth.Models.Api.Response;
|
|
using Bit.Core.Auth.Models.Data;
|
|
using Bit.Core.Context;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Repositories;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Settings;
|
|
using Microsoft.Extensions.Logging;
|
|
using NSubstitute;
|
|
using Xunit;
|
|
|
|
namespace Bit.Api.Test.Auth.Controllers;
|
|
|
|
public class DevicesControllerTest
|
|
{
|
|
private readonly IDeviceRepository _deviceRepositoryMock;
|
|
private readonly IDeviceService _deviceServiceMock;
|
|
private readonly IUserService _userServiceMock;
|
|
private readonly IUserRepository _userRepositoryMock;
|
|
private readonly ICurrentContext _currentContextMock;
|
|
private readonly IGlobalSettings _globalSettingsMock;
|
|
private readonly ILogger<DevicesController> _loggerMock;
|
|
private readonly DevicesController _sut;
|
|
|
|
public DevicesControllerTest()
|
|
{
|
|
_deviceRepositoryMock = Substitute.For<IDeviceRepository>();
|
|
_deviceServiceMock = Substitute.For<IDeviceService>();
|
|
_userServiceMock = Substitute.For<IUserService>();
|
|
_userRepositoryMock = Substitute.For<IUserRepository>();
|
|
_currentContextMock = Substitute.For<ICurrentContext>();
|
|
_loggerMock = Substitute.For<ILogger<DevicesController>>();
|
|
|
|
_sut = new DevicesController(
|
|
_deviceRepositoryMock,
|
|
_deviceServiceMock,
|
|
_userServiceMock,
|
|
_userRepositoryMock,
|
|
_currentContextMock,
|
|
_loggerMock);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Get_ReturnsExpectedResult()
|
|
{
|
|
// Arrange
|
|
var userId = Guid.Parse("AD89E6F8-4E84-4CFE-A978-256CC0DBF974");
|
|
|
|
var authDateTimeResponse = new DateTime(2024, 12, 9, 12, 0, 0);
|
|
var devicesWithPendingAuthData = new List<DeviceAuthDetails>
|
|
{
|
|
new (
|
|
new Device
|
|
{
|
|
Id = Guid.Parse("B3136B10-7818-444F-B05B-4D7A9B8C48BF"),
|
|
UserId = userId,
|
|
Name = "chrome",
|
|
Type = DeviceType.ChromeBrowser,
|
|
Identifier = Guid.Parse("811E9254-F77C-48C8-AF0A-A181943F5708").ToString()
|
|
},
|
|
Guid.Parse("E09D6943-D574-49E5-AC85-C3F12B4E019E"),
|
|
authDateTimeResponse)
|
|
};
|
|
|
|
_userServiceMock.GetProperUserId(Arg.Any<System.Security.Claims.ClaimsPrincipal>()).Returns(userId);
|
|
_deviceRepositoryMock.GetManyByUserIdWithDeviceAuth(userId).Returns(devicesWithPendingAuthData);
|
|
|
|
// Act
|
|
var result = await _sut.Get();
|
|
|
|
// Assert
|
|
Assert.NotNull(result);
|
|
Assert.IsType<ListResponseModel<DeviceAuthRequestResponseModel>>(result);
|
|
}
|
|
|
|
[Fact]
|
|
public async Task Get_ThrowsException_WhenUserIdIsInvalid()
|
|
{
|
|
// Arrange
|
|
_userServiceMock.GetProperUserId(Arg.Any<System.Security.Claims.ClaimsPrincipal>()).Returns((Guid?)null);
|
|
|
|
// Act & Assert
|
|
await Assert.ThrowsAsync<InvalidOperationException>(() => _sut.Get());
|
|
}
|
|
}
|