mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Fix null error when leaving organization (#1730)
* Fix null error when leaving organization * Update tests
This commit is contained in:
parent
7e3e87ed39
commit
29d3e1fd2b
@ -384,15 +384,17 @@ namespace Bit.Api.Controllers
|
|||||||
throw new NotFoundException();
|
throw new NotFoundException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var user = await _userService.GetUserByPrincipalAsync(User);
|
||||||
|
|
||||||
var ssoConfig = await _ssoConfigRepository.GetByOrganizationIdAsync(orgGuidId);
|
var ssoConfig = await _ssoConfigRepository.GetByOrganizationIdAsync(orgGuidId);
|
||||||
if (ssoConfig?.GetData()?.KeyConnectorEnabled == true &&
|
if (ssoConfig?.GetData()?.KeyConnectorEnabled == true &&
|
||||||
_currentContext.User.UsesKeyConnector)
|
user.UsesKeyConnector)
|
||||||
{
|
{
|
||||||
throw new BadRequestException("Your organization's Single Sign-On settings prevent you from leaving.");
|
throw new BadRequestException("Your organization's Single Sign-On settings prevent you from leaving.");
|
||||||
}
|
}
|
||||||
|
|
||||||
var userId = _userService.GetProperUserId(User);
|
|
||||||
await _organizationService.DeleteUserAsync(orgGuidId, userId.Value);
|
await _organizationService.DeleteUserAsync(orgGuidId, user.Id);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpDelete("{id}")]
|
[HttpDelete("{id}")]
|
||||||
|
@ -72,8 +72,7 @@ namespace Bit.Api.Test.Controllers
|
|||||||
|
|
||||||
_currentContext.OrganizationUser(orgId).Returns(true);
|
_currentContext.OrganizationUser(orgId).Returns(true);
|
||||||
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
||||||
_userService.GetProperUserId(Arg.Any<ClaimsPrincipal>()).Returns(user.Id);
|
_userService.GetUserByPrincipalAsync(Arg.Any<ClaimsPrincipal>()).Returns(user);
|
||||||
_currentContext.User.Returns(user);
|
|
||||||
|
|
||||||
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
||||||
() => _sut.Leave(orgId.ToString()));
|
() => _sut.Leave(orgId.ToString()));
|
||||||
@ -106,8 +105,7 @@ namespace Bit.Api.Test.Controllers
|
|||||||
|
|
||||||
_currentContext.OrganizationUser(orgId).Returns(true);
|
_currentContext.OrganizationUser(orgId).Returns(true);
|
||||||
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
_ssoConfigRepository.GetByOrganizationIdAsync(orgId).Returns(ssoConfig);
|
||||||
_userService.GetProperUserId(Arg.Any<ClaimsPrincipal>()).Returns(user.Id);
|
_userService.GetUserByPrincipalAsync(Arg.Any<ClaimsPrincipal>()).Returns(user);
|
||||||
_currentContext.User.Returns(user);
|
|
||||||
|
|
||||||
await _organizationService.DeleteUserAsync(orgId, user.Id);
|
await _organizationService.DeleteUserAsync(orgId, user.Id);
|
||||||
await _organizationService.Received(1).DeleteUserAsync(orgId, user.Id);
|
await _organizationService.Received(1).DeleteUserAsync(orgId, user.Id);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user