2024-11-21 19:17:04 +01:00
|
|
|
|
using Bit.Api.KeyManagement.Validators;
|
|
|
|
|
using Bit.Api.Vault.Models.Request;
|
2023-12-06 14:46:36 +01:00
|
|
|
|
using Bit.Core.Entities;
|
|
|
|
|
using Bit.Core.Exceptions;
|
|
|
|
|
using Bit.Core.Vault.Entities;
|
|
|
|
|
using Bit.Core.Vault.Repositories;
|
|
|
|
|
using Bit.Test.Common.AutoFixture;
|
|
|
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
|
using NSubstitute;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
2024-11-21 19:17:04 +01:00
|
|
|
|
namespace Bit.Api.Test.KeyManagement.Validators;
|
2023-12-06 14:46:36 +01:00
|
|
|
|
|
|
|
|
|
[SutProviderCustomize]
|
|
|
|
|
public class FolderRotationValidatorTests
|
|
|
|
|
{
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task ValidateAsync_MissingFolder_Throws(SutProvider<FolderRotationValidator> sutProvider, User user,
|
|
|
|
|
IEnumerable<FolderWithIdRequestModel> folders)
|
|
|
|
|
{
|
|
|
|
|
var userFolders = folders.Select(f => f.ToFolder(new Folder())).ToList();
|
|
|
|
|
userFolders.Add(new Folder { Id = Guid.NewGuid(), Name = "Missing Folder" });
|
|
|
|
|
sutProvider.GetDependency<IFolderRepository>().GetManyByUserIdAsync(user.Id).Returns(userFolders);
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<BadRequestException>(async () => await sutProvider.Sut.ValidateAsync(user, folders));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
|
[BitAutoData]
|
|
|
|
|
public async Task ValidateAsync_FolderDoesNotBelongToUser_NotReturned(
|
|
|
|
|
SutProvider<FolderRotationValidator> sutProvider, User user, IEnumerable<FolderWithIdRequestModel> folders)
|
|
|
|
|
{
|
|
|
|
|
var userFolders = folders.Select(f => f.ToFolder(new Folder())).ToList();
|
|
|
|
|
userFolders.RemoveAt(0);
|
|
|
|
|
sutProvider.GetDependency<IFolderRepository>().GetManyByUserIdAsync(user.Id).Returns(userFolders);
|
|
|
|
|
|
|
|
|
|
var result = await sutProvider.Sut.ValidateAsync(user, folders);
|
|
|
|
|
|
|
|
|
|
Assert.DoesNotContain(result, c => c.Id == folders.First().Id);
|
|
|
|
|
}
|
2024-05-30 11:08:26 +02:00
|
|
|
|
|
|
|
|
|
[Theory, BitAutoData]
|
|
|
|
|
public async Task ValidateAsync_SentFoldersAreEmptyButDatabaseFoldersAreNot_Throws(
|
|
|
|
|
SutProvider<FolderRotationValidator> sutProvider, User user, IEnumerable<FolderWithIdRequestModel> folders)
|
|
|
|
|
{
|
|
|
|
|
var userFolders = folders.Select(f => f.ToFolder(new Folder())).ToList();
|
|
|
|
|
sutProvider.GetDependency<IFolderRepository>().GetManyByUserIdAsync(user.Id).Returns(userFolders);
|
|
|
|
|
|
|
|
|
|
await Assert.ThrowsAsync<BadRequestException>(async () => await sutProvider.Sut.ValidateAsync(user, Enumerable.Empty<FolderWithIdRequestModel>()));
|
|
|
|
|
}
|
2023-12-06 14:46:36 +01:00
|
|
|
|
}
|