mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
ArgumentNullException: Value cannot be null in POST /push/register
This commit is contained in:
parent
190dace483
commit
d6cd95bfac
@ -43,8 +43,8 @@ public class PushController : Controller
|
|||||||
{
|
{
|
||||||
CheckUsage();
|
CheckUsage();
|
||||||
await _pushRegistrationService.CreateOrUpdateRegistrationAsync(model.PushToken, Prefix(model.DeviceId),
|
await _pushRegistrationService.CreateOrUpdateRegistrationAsync(model.PushToken, Prefix(model.DeviceId),
|
||||||
Prefix(model.UserId), Prefix(model.Identifier), model.Type, model.OrganizationIds.Select(Prefix),
|
Prefix(model.UserId), Prefix(model.Identifier), model.Type,
|
||||||
model.InstallationId);
|
model.OrganizationIds?.Select(Prefix) ?? [], model.InstallationId);
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost("delete")]
|
[HttpPost("delete")]
|
||||||
|
@ -242,7 +242,7 @@ public class PushControllerTests
|
|||||||
PushToken = "test-push-token",
|
PushToken = "test-push-token",
|
||||||
UserId = userId.ToString(),
|
UserId = userId.ToString(),
|
||||||
Type = DeviceType.Android,
|
Type = DeviceType.Android,
|
||||||
Identifier = identifier.ToString()
|
Identifier = identifier.ToString(),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
Assert.Equal("Not correctly configured for push relays.", exception.Message);
|
Assert.Equal("Not correctly configured for push relays.", exception.Message);
|
||||||
@ -253,9 +253,11 @@ public class PushControllerTests
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Theory]
|
[Theory]
|
||||||
[BitAutoData]
|
[BitAutoData(false)]
|
||||||
public async Task? RegisterAsync_ValidModel_CreatedOrUpdatedRegistration(SutProvider<PushController> sutProvider,
|
[BitAutoData(true)]
|
||||||
Guid installationId, Guid userId, Guid identifier, Guid deviceId, Guid organizationId)
|
public async Task? RegisterAsync_ValidModel_CreatedOrUpdatedRegistration(bool haveOrganizationId,
|
||||||
|
SutProvider<PushController> sutProvider, Guid installationId, Guid userId, Guid identifier, Guid deviceId,
|
||||||
|
Guid organizationId)
|
||||||
{
|
{
|
||||||
sutProvider.GetDependency<IGlobalSettings>().SelfHosted = false;
|
sutProvider.GetDependency<IGlobalSettings>().SelfHosted = false;
|
||||||
sutProvider.GetDependency<ICurrentContext>().InstallationId.Returns(installationId);
|
sutProvider.GetDependency<ICurrentContext>().InstallationId.Returns(installationId);
|
||||||
@ -272,7 +274,7 @@ public class PushControllerTests
|
|||||||
UserId = userId.ToString(),
|
UserId = userId.ToString(),
|
||||||
Type = DeviceType.Android,
|
Type = DeviceType.Android,
|
||||||
Identifier = identifier.ToString(),
|
Identifier = identifier.ToString(),
|
||||||
OrganizationIds = [organizationId.ToString()],
|
OrganizationIds = haveOrganizationId ? [organizationId.ToString()] : null,
|
||||||
InstallationId = installationId
|
InstallationId = installationId
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -280,9 +282,17 @@ public class PushControllerTests
|
|||||||
.CreateOrUpdateRegistrationAsync("test-push-token", expectedDeviceId, expectedUserId,
|
.CreateOrUpdateRegistrationAsync("test-push-token", expectedDeviceId, expectedUserId,
|
||||||
expectedIdentifier, DeviceType.Android, Arg.Do<IEnumerable<string>>(organizationIds =>
|
expectedIdentifier, DeviceType.Android, Arg.Do<IEnumerable<string>>(organizationIds =>
|
||||||
{
|
{
|
||||||
|
Assert.NotNull(organizationIds);
|
||||||
var organizationIdsList = organizationIds.ToList();
|
var organizationIdsList = organizationIds.ToList();
|
||||||
Assert.Contains(expectedOrganizationId, organizationIdsList);
|
if (haveOrganizationId)
|
||||||
Assert.Single(organizationIdsList);
|
{
|
||||||
|
Assert.Contains(expectedOrganizationId, organizationIdsList);
|
||||||
|
Assert.Single(organizationIdsList);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Assert.Empty(organizationIdsList);
|
||||||
|
}
|
||||||
}), installationId);
|
}), installationId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user