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 _loggerMock; private readonly DevicesController _sut; public DevicesControllerTest() { _deviceRepositoryMock = Substitute.For(); _deviceServiceMock = Substitute.For(); _userServiceMock = Substitute.For(); _userRepositoryMock = Substitute.For(); _currentContextMock = Substitute.For(); _loggerMock = Substitute.For>(); _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 { 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()).Returns(userId); _deviceRepositoryMock.GetManyByUserIdWithDeviceAuth(userId).Returns(devicesWithPendingAuthData); // Act var result = await _sut.Get(); // Assert Assert.NotNull(result); Assert.IsType>(result); } [Fact] public async Task Get_ThrowsException_WhenUserIdIsInvalid() { // Arrange _userServiceMock.GetProperUserId(Arg.Any()).Returns((Guid?)null); // Act & Assert await Assert.ThrowsAsync(() => _sut.Get()); } }