diff --git a/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs b/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs index 15c7573aca..a09a53e5b7 100644 --- a/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs +++ b/test/Api.Test/Auth/Controllers/AccountsControllerTests.cs @@ -13,6 +13,7 @@ using Bit.Core.AdminConsole.Services; using Bit.Core.Auth.Entities; using Bit.Core.Auth.Models.Api.Request.Accounts; using Bit.Core.Auth.Models.Data; +using Bit.Core.Auth.Services; using Bit.Core.Auth.UserFeatures.TdeOffboardingPassword.Interfaces; using Bit.Core.Auth.UserFeatures.UserMasterPassword.Interfaces; using Bit.Core.Entities; @@ -53,6 +54,7 @@ public class AccountsControllerTests : IDisposable _resetPasswordValidator; private readonly IRotationValidator, IEnumerable> _webauthnKeyRotationValidator; + private readonly IOpaqueKeyExchangeService _opaqueKeyExchangeService; public AccountsControllerTests() @@ -77,6 +79,7 @@ public class AccountsControllerTests : IDisposable _resetPasswordValidator = Substitute .For, IReadOnlyList>>(); + _opaqueKeyExchangeService = Substitute.For(); _sut = new AccountsController( _organizationService, @@ -93,7 +96,8 @@ public class AccountsControllerTests : IDisposable _sendValidator, _emergencyAccessValidator, _resetPasswordValidator, - _webauthnKeyRotationValidator + _webauthnKeyRotationValidator, + _opaqueKeyExchangeService ); } @@ -291,12 +295,12 @@ public class AccountsControllerTests : IDisposable { var user = GenerateExampleUser(); ConfigureUserServiceToReturnValidPrincipalFor(user); - _userService.ChangePasswordAsync(user, default, default, default, default) + _userService.ChangePasswordAsync(user, default, default, default, default, null) .Returns(Task.FromResult(IdentityResult.Success)); await _sut.PostPassword(new PasswordRequestModel()); - await _userService.Received(1).ChangePasswordAsync(user, default, default, default, default); + await _userService.Received(1).ChangePasswordAsync(user, default, default, default, default, null); } [Fact] @@ -314,7 +318,7 @@ public class AccountsControllerTests : IDisposable { var user = GenerateExampleUser(); ConfigureUserServiceToReturnValidPrincipalFor(user); - _userService.ChangePasswordAsync(user, default, default, default, default) + _userService.ChangePasswordAsync(user, default, default, default, default, null) .Returns(Task.FromResult(IdentityResult.Failed())); await Assert.ThrowsAsync(