mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
f3f81deb98
* PM-11123: Service layer * PM-11123: Service layer for Notification Center * PM-11123: Throw error on unsupported requirement * PM-11123: Missing await * PM-11123: Cleanup * PM-11123: Unit Test coverage * PM-11123: Flipping the authorization logic to be exact match of fail, formatting * PM-11123: Async warning * PM-11123: Using AuthorizeOrThrowAsync, removal of redundant set new id * PM-11123: UT typo * PM-11123: UT fix
32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using AutoFixture;
|
|
using Bit.Core.NotificationCenter.Entities;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
namespace Bit.Core.Test.NotificationCenter.AutoFixture;
|
|
|
|
public class NotificationCustomization(bool global) : ICustomization
|
|
{
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<Notification>(composer =>
|
|
{
|
|
var postprocessComposer = composer.With(n => n.Id, Guid.NewGuid())
|
|
.With(n => n.Global, global);
|
|
|
|
postprocessComposer = global
|
|
? postprocessComposer.Without(n => n.UserId)
|
|
: postprocessComposer.With(n => n.UserId, Guid.NewGuid());
|
|
|
|
return global
|
|
? postprocessComposer.Without(n => n.OrganizationId)
|
|
: postprocessComposer.With(n => n.OrganizationId, Guid.NewGuid());
|
|
});
|
|
}
|
|
}
|
|
|
|
public class NotificationCustomizeAttribute(bool global = true)
|
|
: BitCustomizeAttribute
|
|
{
|
|
public override ICustomization GetCustomization() => new NotificationCustomization(global);
|
|
}
|