2019-07-06 05:35:54 +02:00
|
|
|
using System;
|
2020-11-23 15:48:05 +01:00
|
|
|
using System.Threading.Tasks;
|
2019-07-06 05:35:54 +02:00
|
|
|
using Bit.Core.Repositories;
|
|
|
|
using Bit.Core.Services;
|
|
|
|
using NSubstitute;
|
|
|
|
using Xunit;
|
2020-11-23 15:48:05 +01:00
|
|
|
using Bit.Core.Exceptions;
|
|
|
|
using Bit.Core.Models.Table;
|
|
|
|
using Core.Models.Data;
|
|
|
|
using Bit.Core.Test.AutoFixture.CipherFixtures;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Bit.Core.Test.AutoFixture;
|
|
|
|
using System.Linq;
|
|
|
|
using Castle.Core.Internal;
|
2019-07-06 05:35:54 +02:00
|
|
|
|
|
|
|
namespace Bit.Core.Test.Services
|
|
|
|
{
|
|
|
|
public class CipherServiceTests
|
|
|
|
{
|
2020-11-23 15:48:05 +01:00
|
|
|
[Theory, UserCipherAutoData]
|
|
|
|
public async Task SaveAsync_WrongRevisionDate_Throws(SutProvider<CipherService> sutProvider, Cipher cipher)
|
2019-07-06 05:35:54 +02:00
|
|
|
{
|
2020-11-23 15:48:05 +01:00
|
|
|
var lastKnownRevisionDate = cipher.RevisionDate.AddDays(-1);
|
|
|
|
|
|
|
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
|
|
|
() => sutProvider.Sut.SaveAsync(cipher, cipher.UserId.Value, lastKnownRevisionDate));
|
|
|
|
Assert.Contains("out of date", exception.Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory, UserCipherAutoData]
|
|
|
|
public async Task SaveDetailsAsync_WrongRevisionDate_Throws(SutProvider<CipherService> sutProvider,
|
|
|
|
CipherDetails cipherDetails)
|
|
|
|
{
|
|
|
|
var lastKnownRevisionDate = cipherDetails.RevisionDate.AddDays(-1);
|
|
|
|
|
|
|
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
|
|
|
() => sutProvider.Sut.SaveDetailsAsync(cipherDetails, cipherDetails.UserId.Value, lastKnownRevisionDate));
|
|
|
|
Assert.Contains("out of date", exception.Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory, UserCipherAutoData]
|
|
|
|
public async Task ShareAsync_WrongRevisionDate_Throws(SutProvider<CipherService> sutProvider, Cipher cipher,
|
|
|
|
Organization organization, List<Guid> collectionIds)
|
|
|
|
{
|
|
|
|
sutProvider.GetDependency<IOrganizationRepository>().GetByIdAsync(organization.Id).Returns(organization);
|
|
|
|
var lastKnownRevisionDate = cipher.RevisionDate.AddDays(-1);
|
|
|
|
|
|
|
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
|
|
|
() => sutProvider.Sut.ShareAsync(cipher, cipher, organization.Id, collectionIds, cipher.UserId.Value,
|
|
|
|
lastKnownRevisionDate));
|
|
|
|
Assert.Contains("out of date", exception.Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory, UserCipherAutoData("99ab4f6c-44f8-4ff5-be7a-75c37c33c69e")]
|
|
|
|
public async Task ShareManyAsync_WrongRevisionDate_Throws(SutProvider<CipherService> sutProvider,
|
|
|
|
IEnumerable<Cipher> ciphers, Guid organizationId, List<Guid> collectionIds)
|
|
|
|
{
|
|
|
|
var cipherInfos = ciphers.Select(c => (c, (DateTime?)c.RevisionDate.AddDays(-1)));
|
|
|
|
|
|
|
|
var exception = await Assert.ThrowsAsync<BadRequestException>(
|
|
|
|
() => sutProvider.Sut.ShareManyAsync(cipherInfos, organizationId, collectionIds, ciphers.First().UserId.Value));
|
|
|
|
Assert.Contains("out of date", exception.Message);
|
2019-07-06 05:35:54 +02:00
|
|
|
}
|
|
|
|
|
2020-11-23 15:48:05 +01:00
|
|
|
[Theory]
|
|
|
|
[InlineUserCipherAutoData("")]
|
|
|
|
[InlineUserCipherAutoData("Correct Time")]
|
|
|
|
public async Task SaveAsync_CorrectRevisionDate_Passes(string revisionDateString,
|
|
|
|
SutProvider<CipherService> sutProvider, Cipher cipher)
|
2019-07-06 05:35:54 +02:00
|
|
|
{
|
2020-11-23 15:48:05 +01:00
|
|
|
var lastKnownRevisionDate = string.IsNullOrEmpty(revisionDateString) ? (DateTime?)null : cipher.RevisionDate;
|
|
|
|
|
|
|
|
await sutProvider.Sut.SaveAsync(cipher, cipher.UserId.Value, lastKnownRevisionDate);
|
|
|
|
await sutProvider.GetDependency<ICipherRepository>().Received(1).ReplaceAsync(cipher);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
[InlineUserCipherAutoData("")]
|
|
|
|
[InlineUserCipherAutoData("Correct Time")]
|
|
|
|
public async Task SaveDetailsAsync_CorrectRevisionDate_Passes(string revisionDateString,
|
|
|
|
SutProvider<CipherService> sutProvider, CipherDetails cipherDetails)
|
|
|
|
{
|
|
|
|
var lastKnownRevisionDate = string.IsNullOrEmpty(revisionDateString) ? (DateTime?)null : cipherDetails.RevisionDate;
|
|
|
|
|
|
|
|
await sutProvider.Sut.SaveDetailsAsync(cipherDetails, cipherDetails.UserId.Value, lastKnownRevisionDate);
|
|
|
|
await sutProvider.GetDependency<ICipherRepository>().Received(1).ReplaceAsync(cipherDetails);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
[InlineUserCipherAutoData("")]
|
|
|
|
[InlineUserCipherAutoData("Correct Time")]
|
|
|
|
public async Task ShareAsync_CorrectRevisionDate_Passes(string revisionDateString,
|
|
|
|
SutProvider<CipherService> sutProvider, Cipher cipher, Organization organization, List<Guid> collectionIds)
|
|
|
|
{
|
|
|
|
var lastKnownRevisionDate = string.IsNullOrEmpty(revisionDateString) ? (DateTime?)null : cipher.RevisionDate;
|
|
|
|
var cipherRepository = sutProvider.GetDependency<ICipherRepository>();
|
|
|
|
cipherRepository.ReplaceAsync(cipher, collectionIds).Returns(true);
|
|
|
|
sutProvider.GetDependency<IOrganizationRepository>().GetByIdAsync(organization.Id).Returns(organization);
|
|
|
|
|
|
|
|
await sutProvider.Sut.ShareAsync(cipher, cipher, organization.Id, collectionIds, cipher.UserId.Value,
|
|
|
|
lastKnownRevisionDate);
|
|
|
|
await cipherRepository.Received(1).ReplaceAsync(cipher, collectionIds);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Theory]
|
|
|
|
[InlineKnownUserCipherAutoData(userId: "99ab4f6c-44f8-4ff5-be7a-75c37c33c69e", "")]
|
|
|
|
[InlineKnownUserCipherAutoData(userId: "99ab4f6c-44f8-4ff5-be7a-75c37c33c69e", "CorrectTime")]
|
|
|
|
public async Task ShareManyAsync_CorrectRevisionDate_Passes(string revisionDateString,
|
|
|
|
SutProvider<CipherService> sutProvider, IEnumerable<Cipher> ciphers, Organization organization, List<Guid> collectionIds)
|
|
|
|
{
|
|
|
|
var cipherInfos = ciphers.Select(c => (c,
|
|
|
|
string.IsNullOrEmpty(revisionDateString) ? null : (DateTime?)c.RevisionDate));
|
|
|
|
var sharingUserId = ciphers.First().UserId.Value;
|
|
|
|
|
|
|
|
await sutProvider.Sut.ShareManyAsync(cipherInfos, organization.Id, collectionIds, sharingUserId);
|
|
|
|
await sutProvider.GetDependency<ICipherRepository>().Received(1).UpdateCiphersAsync(sharingUserId,
|
|
|
|
Arg.Is<IEnumerable<Cipher>>(arg => arg.Except(ciphers).IsNullOrEmpty()));
|
2019-07-06 05:35:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|