#nullable enable using System.Security.Claims; using Bit.Core.Context; using Bit.Core.Exceptions; using Bit.Core.NotificationCenter.Authorization; using Bit.Core.NotificationCenter.Commands; using Bit.Core.NotificationCenter.Entities; using Bit.Core.NotificationCenter.Repositories; using Bit.Core.Platform.Push; using Bit.Core.Test.NotificationCenter.AutoFixture; using Bit.Test.Common.AutoFixture; using Bit.Test.Common.AutoFixture.Attributes; using Microsoft.AspNetCore.Authorization; using NSubstitute; using Xunit; namespace Bit.Core.Test.NotificationCenter.Commands; [SutProviderCustomize] [NotificationCustomize] [NotificationStatusCustomize] public class MarkNotificationReadCommandTest { private static void Setup(SutProvider sutProvider, Guid notificationId, Guid? userId, Notification? notification, NotificationStatus? notificationStatus, bool authorizedNotification = false, bool authorizedCreate = false, bool authorizedUpdate = false) { sutProvider.GetDependency().UserId.Returns(userId); sutProvider.GetDependency() .GetByIdAsync(notificationId) .Returns(notification); sutProvider.GetDependency() .GetByNotificationIdAndUserIdAsync(notificationId, userId ?? Arg.Any()) .Returns(notificationStatus); sutProvider.GetDependency() .CreateAsync(Arg.Any()); sutProvider.GetDependency() .UpdateAsync(notificationStatus ?? Arg.Any()); sutProvider.GetDependency() .AuthorizeAsync(Arg.Any(), notification ?? Arg.Any(), Arg.Is>(reqs => reqs.Contains(NotificationOperations.Read))) .Returns(authorizedNotification ? AuthorizationResult.Success() : AuthorizationResult.Failed()); sutProvider.GetDependency() .AuthorizeAsync(Arg.Any(), notificationStatus ?? Arg.Any(), Arg.Is>(reqs => reqs.Contains(NotificationStatusOperations.Create))) .Returns(authorizedCreate ? AuthorizationResult.Success() : AuthorizationResult.Failed()); sutProvider.GetDependency() .AuthorizeAsync(Arg.Any(), notificationStatus ?? Arg.Any(), Arg.Is>(reqs => reqs.Contains(NotificationStatusOperations.Update))) .Returns(authorizedUpdate ? AuthorizationResult.Success() : AuthorizationResult.Failed()); sutProvider.GetDependency().ClearReceivedCalls(); } [Theory] [BitAutoData] public async Task MarkReadAsync_NotLoggedIn_NotFoundException( SutProvider sutProvider, Guid notificationId, Notification notification, NotificationStatus notificationStatus) { Setup(sutProvider, notificationId, userId: null, notification, notificationStatus, true, true, true); await Assert.ThrowsAsync(() => sutProvider.Sut.MarkReadAsync(notificationId)); await sutProvider.GetDependency() .Received(0) .PushNotificationStatusAsync(Arg.Any(), Arg.Any()); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_NotificationNotFound_NotFoundException( SutProvider sutProvider, Guid notificationId, Guid userId, NotificationStatus notificationStatus) { Setup(sutProvider, notificationId, userId, notification: null, notificationStatus, true, true, true); await Assert.ThrowsAsync(() => sutProvider.Sut.MarkReadAsync(notificationId)); await sutProvider.GetDependency() .Received(0) .PushNotificationStatusAsync(Arg.Any(), Arg.Any()); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_ReadRequirementNotificationNotAuthorized_NotFoundException( SutProvider sutProvider, Guid notificationId, Guid userId, Notification notification, NotificationStatus notificationStatus) { Setup(sutProvider, notificationId, userId, notification, notificationStatus, authorizedNotification: false, true, true); await Assert.ThrowsAsync(() => sutProvider.Sut.MarkReadAsync(notificationId)); await sutProvider.GetDependency() .Received(0) .PushNotificationStatusAsync(Arg.Any(), Arg.Any()); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_CreateRequirementNotAuthorized_NotFoundException( SutProvider sutProvider, Guid notificationId, Guid userId, Notification notification) { Setup(sutProvider, notificationId, userId, notification, notificationStatus: null, true, authorizedCreate: false, true); await Assert.ThrowsAsync(() => sutProvider.Sut.MarkReadAsync(notificationId)); await sutProvider.GetDependency() .Received(0) .PushNotificationStatusAsync(Arg.Any(), Arg.Any()); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_UpdateRequirementNotAuthorized_NotFoundException( SutProvider sutProvider, Guid notificationId, Guid userId, Notification notification, NotificationStatus notificationStatus) { Setup(sutProvider, notificationId, userId, notification, notificationStatus, true, true, authorizedUpdate: false); await Assert.ThrowsAsync(() => sutProvider.Sut.MarkReadAsync(notificationId)); await sutProvider.GetDependency() .Received(0) .PushNotificationStatusAsync(Arg.Any(), Arg.Any()); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_NotificationStatusNotFoundCreateAuthorized_NotificationStatusCreated( SutProvider sutProvider, Guid notificationId, Guid userId, Notification notification) { Setup(sutProvider, notificationId, userId, notification, notificationStatus: null, true, true, true); var expectedNotificationStatus = new NotificationStatus { NotificationId = notificationId, UserId = userId, ReadDate = DateTime.UtcNow, DeletedDate = null }; await sutProvider.Sut.MarkReadAsync(notificationId); await sutProvider.GetDependency().Received(1) .CreateAsync(Arg.Do(ns => AssertNotificationStatus(expectedNotificationStatus, ns))); await sutProvider.GetDependency() .Received(1) .PushNotificationStatusAsync(notification, Arg.Do(ns => AssertNotificationStatus(expectedNotificationStatus, ns))); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } [Theory] [BitAutoData] public async Task MarkReadAsync_NotificationStatusFoundCreateAuthorized_NotificationStatusUpdated( SutProvider sutProvider, Guid notificationId, Guid userId, Notification notification, NotificationStatus notificationStatus) { Setup(sutProvider, notificationId, userId, notification, notificationStatus, true, true, true); await sutProvider.Sut.MarkReadAsync(notificationId); await sutProvider.GetDependency().Received(1) .UpdateAsync(Arg.Do(ns => AssertNotificationStatus(notificationStatus, ns))); await sutProvider.GetDependency() .Received(1) .PushNotificationStatusAsync(notification, Arg.Do(ns => AssertNotificationStatus(notificationStatus, ns))); await sutProvider.GetDependency() .Received(0) .PushNotificationAsync(Arg.Any()); } private static void AssertNotificationStatus(NotificationStatus expectedNotificationStatus, NotificationStatus? actualNotificationStatus) { Assert.NotNull(actualNotificationStatus); Assert.Equal(expectedNotificationStatus.NotificationId, actualNotificationStatus.NotificationId); Assert.Equal(expectedNotificationStatus.UserId, actualNotificationStatus.UserId); Assert.NotEqual(expectedNotificationStatus.ReadDate, actualNotificationStatus.ReadDate); Assert.NotNull(actualNotificationStatus.ReadDate); Assert.Equal(DateTime.UtcNow, actualNotificationStatus.ReadDate.Value, TimeSpan.FromMinutes(1)); Assert.Equal(expectedNotificationStatus.DeletedDate, actualNotificationStatus.DeletedDate); } }