2022-06-30 01:46:41 +02:00
|
|
|
|
using System.Security.Claims;
|
2021-11-15 10:46:13 +01:00
|
|
|
|
using AutoFixture.Xunit2;
|
|
|
|
|
using Bit.Api.Controllers;
|
|
|
|
|
using Bit.Core.Context;
|
2022-01-11 10:40:51 +01:00
|
|
|
|
using Bit.Core.Entities;
|
2021-11-15 10:46:13 +01:00
|
|
|
|
using Bit.Core.Exceptions;
|
2021-11-17 11:46:35 +01:00
|
|
|
|
using Bit.Core.Models.Data;
|
2022-05-10 23:12:09 +02:00
|
|
|
|
using Bit.Core.OrganizationFeatures.OrganizationApiKeys.Interfaces;
|
2021-11-15 10:46:13 +01:00
|
|
|
|
using Bit.Core.Repositories;
|
|
|
|
|
using Bit.Core.Services;
|
|
|
|
|
using Bit.Core.Settings;
|
|
|
|
|
using NSubstitute;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
namespace Bit.Api.Test.Controllers
|
2021-11-15 10:46:13 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
public class OrganizationsControllerTests : IDisposable
|
2021-11-15 10:46:13 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
private readonly GlobalSettings _globalSettings;
|
|
|
|
|
private readonly ICurrentContext _currentContext;
|
|
|
|
|
private readonly IOrganizationRepository _organizationRepository;
|
|
|
|
|
private readonly IOrganizationService _organizationService;
|
|
|
|
|
private readonly IOrganizationUserRepository _organizationUserRepository;
|
|
|
|
|
private readonly IPaymentService _paymentService;
|
|
|
|
|
private readonly IPolicyRepository _policyRepository;
|
|
|
|
|
private readonly ISsoConfigRepository _ssoConfigRepository;
|
|
|
|
|
private readonly ISsoConfigService _ssoConfigService;
|
|
|
|
|
private readonly IUserService _userService;
|
|
|
|
|
private readonly IGetOrganizationApiKeyCommand _getOrganizationApiKeyCommand;
|
|
|
|
|
private readonly IRotateOrganizationApiKeyCommand _rotateOrganizationApiKeyCommand;
|
|
|
|
|
private readonly IOrganizationApiKeyRepository _organizationApiKeyRepository;
|
|
|
|
|
|
|
|
|
|
private readonly OrganizationsController _sut;
|
|
|
|
|
|
|
|
|
|
public OrganizationsControllerTests()
|
|
|
|
|
{
|
|
|
|
|
_currentContext = Substitute.For<ICurrentContext>();
|
|
|
|
|
_globalSettings = Substitute.For<GlobalSettings>();
|
|
|
|
|
_organizationRepository = Substitute.For<IOrganizationRepository>();
|
|
|
|
|
_organizationService = Substitute.For<IOrganizationService>();
|
|
|
|
|
_organizationUserRepository = Substitute.For<IOrganizationUserRepository>();
|
|
|
|
|
_paymentService = Substitute.For<IPaymentService>();
|
|
|
|
|
_policyRepository = Substitute.For<IPolicyRepository>();
|
|
|
|
|
_ssoConfigRepository = Substitute.For<ISsoConfigRepository>();
|
|
|
|
|
_ssoConfigService = Substitute.For<ISsoConfigService>();
|
|
|
|
|
_getOrganizationApiKeyCommand = Substitute.For<IGetOrganizationApiKeyCommand>();
|
|
|
|
|
_rotateOrganizationApiKeyCommand = Substitute.For<IRotateOrganizationApiKeyCommand>();
|
|
|
|
|
_organizationApiKeyRepository = Substitute.For<IOrganizationApiKeyRepository>();
|
|
|
|
|
_userService = Substitute.For<IUserService>();
|
|
|
|
|
|
|
|
|
|
_sut = new OrganizationsController(_organizationRepository, _organizationUserRepository,
|
|
|
|
|
_policyRepository, _organizationService, _userService, _paymentService, _currentContext,
|
|
|
|
|
_ssoConfigRepository, _ssoConfigService, _getOrganizationApiKeyCommand, _rotateOrganizationApiKeyCommand,
|
|
|
|
|
_organizationApiKeyRepository, _globalSettings);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
_sut?.Dispose();
|
|
|
|
|
}
|
2022-08-29 20:53:16 +02:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
[Theory, AutoData]
|
|
|
|
|
public async Task OrganizationsController_UserCannotLeaveOrganizationThatProvidesKeyConnector(
|
|
|
|
|
Guid orgId, User user)
|
2021-11-15 10:46:13 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
var ssoConfig = new SsoConfig
|
2021-11-15 10:46:13 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
Id = default,
|
|
|
|
|
Data = new SsoConfigurationData
|
|
|
|
|
{
|
|
|
|
|
KeyConnectorEnabled = true,
|
|
|
|
|
}.Serialize(),
|
|
|
|
|
Enabled = true,
|
|
|
|
|
OrganizationId = orgId,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
user.UsesKeyConnector = true;
|
|
|
|
|
|
|
|
|
|
_currentContext.OrganizationUser(orgId).Returns(true);
|
|
|
|
|
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
|
|
|
|
_userService.GetUserByPrincipalAsync(Arg.Any<ClaimsPrincipal>()).Returns(user);
|
|
|
|
|
|
|
|
|
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
|
|
|
|
() => _sut.Leave(orgId.ToString()));
|
|
|
|
|
|
|
|
|
|
Assert.Contains("Your organization's Single Sign-On settings prevent you from leaving.",
|
|
|
|
|
exception.Message);
|
|
|
|
|
|
|
|
|
|
await _organizationService.DidNotReceiveWithAnyArgs().DeleteUserAsync(default, default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[InlineAutoData(true, false)]
|
|
|
|
|
[InlineAutoData(false, true)]
|
|
|
|
|
[InlineAutoData(false, false)]
|
|
|
|
|
public async Task OrganizationsController_UserCanLeaveOrganizationThatDoesntProvideKeyConnector(
|
|
|
|
|
bool keyConnectorEnabled, bool userUsesKeyConnector, Guid orgId, User user)
|
2021-11-18 12:15:22 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
var ssoConfig = new SsoConfig
|
2021-11-18 12:15:22 +01:00
|
|
|
|
{
|
2022-08-29 21:53:48 +02:00
|
|
|
|
Id = default,
|
|
|
|
|
Data = new SsoConfigurationData
|
|
|
|
|
{
|
|
|
|
|
KeyConnectorEnabled = keyConnectorEnabled,
|
|
|
|
|
}.Serialize(),
|
|
|
|
|
Enabled = true,
|
|
|
|
|
OrganizationId = orgId,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
user.UsesKeyConnector = userUsesKeyConnector;
|
|
|
|
|
|
|
|
|
|
_currentContext.OrganizationUser(orgId).Returns(true);
|
|
|
|
|
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
|
|
|
|
_userService.GetUserByPrincipalAsync(Arg.Any<ClaimsPrincipal>()).Returns(user);
|
|
|
|
|
|
|
|
|
|
await _organizationService.DeleteUserAsync(orgId, user.Id);
|
|
|
|
|
await _organizationService.Received(1).DeleteUserAsync(orgId, user.Id);
|
|
|
|
|
}
|
2021-11-15 10:46:13 +01:00
|
|
|
|
}
|
|
|
|
|
}
|