2020-02-20 20:36:31 +01:00
|
|
|
|
using System;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Bit.Core.Models.Table;
|
|
|
|
|
using Bit.Core.Repositories;
|
|
|
|
|
using Bit.Core.Services;
|
2021-02-22 22:35:16 +01:00
|
|
|
|
using Bit.Core.Settings;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
using Microsoft.AspNetCore.DataProtection;
|
|
|
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using NSubstitute;
|
|
|
|
|
using Xunit;
|
2021-03-22 23:21:43 +01:00
|
|
|
|
using Fido2NetLib;
|
2021-02-04 19:54:21 +01:00
|
|
|
|
using Bit.Core.Context;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Test.Services
|
|
|
|
|
{
|
|
|
|
|
public class UserServiceTests
|
|
|
|
|
{
|
|
|
|
|
private readonly UserService _sut;
|
|
|
|
|
|
|
|
|
|
private readonly IUserRepository _userRepository;
|
|
|
|
|
private readonly ICipherRepository _cipherRepository;
|
|
|
|
|
private readonly IOrganizationUserRepository _organizationUserRepository;
|
|
|
|
|
private readonly IOrganizationRepository _organizationRepository;
|
2021-05-05 16:14:49 +02:00
|
|
|
|
private readonly IU2fRepository _u2fRepository;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
private readonly IMailService _mailService;
|
|
|
|
|
private readonly IPushNotificationService _pushService;
|
|
|
|
|
private readonly IUserStore<User> _userStore;
|
|
|
|
|
private readonly IOptions<IdentityOptions> _optionsAccessor;
|
|
|
|
|
private readonly IPasswordHasher<User> _passwordHasher;
|
|
|
|
|
private readonly IEnumerable<IUserValidator<User>> _userValidators;
|
|
|
|
|
private readonly IEnumerable<IPasswordValidator<User>> _passwordValidators;
|
|
|
|
|
private readonly ILookupNormalizer _keyNormalizer;
|
|
|
|
|
private readonly IdentityErrorDescriber _errors;
|
|
|
|
|
private readonly IServiceProvider _services;
|
|
|
|
|
private readonly ILogger<UserManager<User>> _logger;
|
|
|
|
|
private readonly ILicensingService _licenseService;
|
|
|
|
|
private readonly IEventService _eventService;
|
|
|
|
|
private readonly IApplicationCacheService _applicationCacheService;
|
|
|
|
|
private readonly IDataProtectionProvider _dataProtectionProvider;
|
|
|
|
|
private readonly IPaymentService _paymentService;
|
2020-02-20 20:36:31 +01:00
|
|
|
|
private readonly IPolicyRepository _policyRepository;
|
2020-07-08 21:05:24 +02:00
|
|
|
|
private readonly IReferenceEventService _referenceEventService;
|
2021-03-22 23:21:43 +01:00
|
|
|
|
private readonly IFido2 _fido2;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
private readonly CurrentContext _currentContext;
|
|
|
|
|
private readonly GlobalSettings _globalSettings;
|
2020-10-13 22:00:33 +02:00
|
|
|
|
private readonly IOrganizationService _organizationService;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
|
|
|
|
public UserServiceTests()
|
|
|
|
|
{
|
|
|
|
|
_userRepository = Substitute.For<IUserRepository>();
|
|
|
|
|
_cipherRepository = Substitute.For<ICipherRepository>();
|
|
|
|
|
_organizationUserRepository = Substitute.For<IOrganizationUserRepository>();
|
|
|
|
|
_organizationRepository = Substitute.For<IOrganizationRepository>();
|
2021-05-05 16:14:49 +02:00
|
|
|
|
_u2fRepository = Substitute.For<IU2fRepository>();
|
2019-07-06 05:35:54 +02:00
|
|
|
|
_mailService = Substitute.For<IMailService>();
|
|
|
|
|
_pushService = Substitute.For<IPushNotificationService>();
|
|
|
|
|
_userStore = Substitute.For<IUserStore<User>>();
|
|
|
|
|
_optionsAccessor = Substitute.For<IOptions<IdentityOptions>>();
|
|
|
|
|
_passwordHasher = Substitute.For<IPasswordHasher<User>>();
|
|
|
|
|
_userValidators = new List<IUserValidator<User>>();
|
|
|
|
|
_passwordValidators = new List<IPasswordValidator<User>>();
|
|
|
|
|
_keyNormalizer = Substitute.For<ILookupNormalizer>();
|
|
|
|
|
_errors = new IdentityErrorDescriber();
|
|
|
|
|
_services = Substitute.For<IServiceProvider>();
|
|
|
|
|
_logger = Substitute.For<ILogger<UserManager<User>>>();
|
|
|
|
|
_licenseService = Substitute.For<ILicensingService>();
|
|
|
|
|
_eventService = Substitute.For<IEventService>();
|
|
|
|
|
_applicationCacheService = Substitute.For<IApplicationCacheService>();
|
|
|
|
|
_dataProtectionProvider = Substitute.For<IDataProtectionProvider>();
|
|
|
|
|
_paymentService = Substitute.For<IPaymentService>();
|
2020-02-20 20:36:31 +01:00
|
|
|
|
_policyRepository = Substitute.For<IPolicyRepository>();
|
2020-07-08 21:05:24 +02:00
|
|
|
|
_referenceEventService = Substitute.For<IReferenceEventService>();
|
2021-03-22 23:21:43 +01:00
|
|
|
|
_fido2 = Substitute.For<IFido2>();
|
2019-07-06 05:35:54 +02:00
|
|
|
|
_currentContext = new CurrentContext();
|
|
|
|
|
_globalSettings = new GlobalSettings();
|
2020-10-13 22:00:33 +02:00
|
|
|
|
_organizationService = Substitute.For<IOrganizationService>();
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
|
|
|
|
_sut = new UserService(
|
|
|
|
|
_userRepository,
|
|
|
|
|
_cipherRepository,
|
|
|
|
|
_organizationUserRepository,
|
|
|
|
|
_organizationRepository,
|
2021-05-05 16:14:49 +02:00
|
|
|
|
_u2fRepository,
|
2019-07-06 05:35:54 +02:00
|
|
|
|
_mailService,
|
|
|
|
|
_pushService,
|
|
|
|
|
_userStore,
|
|
|
|
|
_optionsAccessor,
|
|
|
|
|
_passwordHasher,
|
|
|
|
|
_userValidators,
|
|
|
|
|
_passwordValidators,
|
|
|
|
|
_keyNormalizer,
|
|
|
|
|
_errors,
|
|
|
|
|
_services,
|
|
|
|
|
_logger,
|
|
|
|
|
_licenseService,
|
|
|
|
|
_eventService,
|
|
|
|
|
_applicationCacheService,
|
|
|
|
|
_dataProtectionProvider,
|
|
|
|
|
_paymentService,
|
2020-02-20 20:36:31 +01:00
|
|
|
|
_policyRepository,
|
2020-07-08 21:05:24 +02:00
|
|
|
|
_referenceEventService,
|
2021-03-22 23:21:43 +01:00
|
|
|
|
_fido2,
|
2019-07-06 05:35:54 +02:00
|
|
|
|
_currentContext,
|
2020-10-13 22:00:33 +02:00
|
|
|
|
_globalSettings,
|
|
|
|
|
_organizationService
|
2019-07-06 05:35:54 +02:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Remove this test when we add actual tests. It only proves that
|
|
|
|
|
// we've properly constructed the system under test.
|
|
|
|
|
[Fact]
|
|
|
|
|
public void ServiceExists()
|
|
|
|
|
{
|
|
|
|
|
Assert.NotNull(_sut);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|