mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
Send invites for both all collection and limited collection users (#1765)
* Send invites for both all collection and limited collection users * Test all access and limited access invites * Remove comment
This commit is contained in:
parent
d694ac6052
commit
e999f66a28
@ -1191,7 +1191,7 @@ namespace Bit.Core.Services
|
|||||||
}
|
}
|
||||||
|
|
||||||
await AutoAddSeatsAsync(organization, newSeatsRequired, prorationDate);
|
await AutoAddSeatsAsync(organization, newSeatsRequired, prorationDate);
|
||||||
await SendInvitesAsync(orgUsers, organization);
|
await SendInvitesAsync(orgUsers.Concat(limitedCollectionOrgUsers.Select(u => u.Item1)), organization);
|
||||||
await _eventService.LogOrganizationUserEventsAsync(events);
|
await _eventService.LogOrganizationUserEventsAsync(events);
|
||||||
|
|
||||||
await _referenceEventService.RaiseEventAsync(
|
await _referenceEventService.RaiseEventAsync(
|
||||||
|
@ -334,11 +334,16 @@ namespace Bit.Core.Test.Services
|
|||||||
inviteeUserType: (int)OrganizationUserType.User,
|
inviteeUserType: (int)OrganizationUserType.User,
|
||||||
invitorUserType: (int)OrganizationUserType.Custom
|
invitorUserType: (int)OrganizationUserType.Custom
|
||||||
)]
|
)]
|
||||||
public async Task InviteUser_Passes(Organization organization, OrganizationUserInvite invite,
|
public async Task InviteUser_Passes(Organization organization, IEnumerable<(OrganizationUserInvite invite, string externalId)> invites,
|
||||||
OrganizationUser invitor,
|
OrganizationUser invitor,
|
||||||
[OrganizationUser(OrganizationUserStatusType.Confirmed, OrganizationUserType.Owner)]OrganizationUser owner,
|
[OrganizationUser(OrganizationUserStatusType.Confirmed, OrganizationUserType.Owner)]OrganizationUser owner,
|
||||||
SutProvider<OrganizationService> sutProvider)
|
SutProvider<OrganizationService> sutProvider)
|
||||||
{
|
{
|
||||||
|
// Autofixture will add collections for all of the invites, remove the first and for all the rest set all access false
|
||||||
|
invites.First().invite.AccessAll = true;
|
||||||
|
invites.First().invite.Collections = null;
|
||||||
|
invites.Skip(1).ToList().ForEach(i => i.invite.AccessAll = false);
|
||||||
|
|
||||||
invitor.Permissions = JsonSerializer.Serialize(new Permissions() { ManageUsers = true },
|
invitor.Permissions = JsonSerializer.Serialize(new Permissions() { ManageUsers = true },
|
||||||
new JsonSerializerOptions
|
new JsonSerializerOptions
|
||||||
{
|
{
|
||||||
@ -354,7 +359,11 @@ namespace Bit.Core.Test.Services
|
|||||||
.Returns(new [] {owner});
|
.Returns(new [] {owner});
|
||||||
currentContext.ManageUsers(organization.Id).Returns(true);
|
currentContext.ManageUsers(organization.Id).Returns(true);
|
||||||
|
|
||||||
await sutProvider.Sut.InviteUsersAsync(organization.Id, invitor.UserId, new (OrganizationUserInvite, string)[] { (invite, null) });
|
await sutProvider.Sut.InviteUsersAsync(organization.Id, invitor.UserId, invites);
|
||||||
|
|
||||||
|
await sutProvider.GetDependency<IMailService>().Received(1)
|
||||||
|
.BulkSendOrganizationInviteEmailAsync(organization.Name, Arg.Any<bool>(),
|
||||||
|
Arg.Is<IEnumerable<(OrganizationUser, ExpiringToken)>>(v => v.Count() == invites.SelectMany(i => i.invite.Emails).Count()));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Theory, CustomAutoData(typeof(SutProviderCustomization))]
|
[Theory, CustomAutoData(typeof(SutProviderCustomization))]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user