unit tests for add
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.BaseMongoRepositoryTests.AddTests;
|
||||
|
||||
public class AddManyAsyncTests : TestMongoRepositoryContext
|
||||
{
|
||||
[Fact]
|
||||
public async Task WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocument>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocument, Guid>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocument>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocument, Guid>(documents, token), Times.Once);
|
||||
}
|
||||
|
||||
#region Keyed
|
||||
|
||||
[Fact]
|
||||
public async Task Keyed_WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync<TestDocumentWithKey<int>, int>(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocumentWithKey<int>, int>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task Keyed_WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync<TestDocumentWithKey<int>, int>(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocumentWithKey<int>, int>(documents, token), Times.Once);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
@@ -14,20 +14,64 @@ public class AddManyTests : TestMongoRepositoryContext
|
||||
{
|
||||
|
||||
[Fact]
|
||||
public async Task AddManyAsync_EnsureTokenPassed()
|
||||
public void WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocument>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
var token = new CancellationToken(true);
|
||||
var documents = new List<TestDocument>
|
||||
{
|
||||
new(), new(), new()
|
||||
};
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync(documents, token);
|
||||
Sut.AddMany(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocument, Guid>(documents, token));
|
||||
Creator.Verify(x => x.AddMany<TestDocument, Guid>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocument>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddMany(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddMany<TestDocument, Guid>(documents, token), Times.Once);
|
||||
}
|
||||
|
||||
#region Keyed
|
||||
|
||||
[Fact]
|
||||
public void Keyed_WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddMany<TestDocumentWithKey<int>, int>(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddMany<TestDocumentWithKey<int>, int>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Keyed_WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddMany<TestDocumentWithKey<int>, int>(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddMany<TestDocumentWithKey<int>, int>(documents, token), Times.Once);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.BaseMongoRepositoryTests.AddTests;
|
||||
|
||||
public class AddOneAsyncTests : TestMongoRepositoryContext
|
||||
{
|
||||
[Fact]
|
||||
public async Task WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocument>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocument, Guid>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocument>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocument, Guid>(document, token), Times.Once);
|
||||
}
|
||||
|
||||
#region Keyed
|
||||
|
||||
[Fact]
|
||||
public async Task Keyed_WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync<TestDocumentWithKey<int>, int>(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocumentWithKey<int>, int>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task Keyed_WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync<TestDocumentWithKey<int>, int>(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocumentWithKey<int>, int>(document, token), Times.Once);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
@@ -12,17 +12,64 @@ namespace CoreUnitTests.BaseMongoRepositoryTests.AddTests;
|
||||
public class AddOneTests : TestMongoRepositoryContext
|
||||
{
|
||||
[Fact]
|
||||
public async Task AddOneAsync_EnsureTokenPassed()
|
||||
public void WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocument>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
var token = new CancellationToken(true);
|
||||
var document = new TestDocument();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync<TestDocument>(document, token);
|
||||
Sut.AddOne(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocument, Guid>(document, token));
|
||||
Creator.Verify(x => x.AddOne<TestDocument, Guid>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocument>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddOne(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOne<TestDocument, Guid>(document, token), Times.Once);
|
||||
}
|
||||
|
||||
#region Keyed
|
||||
|
||||
[Fact]
|
||||
public void Keyed_WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddOne<TestDocumentWithKey<int>, int>(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOne<TestDocumentWithKey<int>, int>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Keyed_WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddOne<TestDocumentWithKey<int>, int>(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOne<TestDocumentWithKey<int>, int>(document, token), Times.Once);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.KeyTypedRepositoryTests.AddTests;
|
||||
|
||||
public class AddManyAsyncTests : TestKeyedMongoRepositoryContext<int>
|
||||
{
|
||||
[Fact]
|
||||
public async Task WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocumentWithKey<int>, int>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddManyAsync(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddManyAsync<TestDocumentWithKey<int>, int>(documents, token), Times.Once);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.KeyTypedRepositoryTests.AddTests;
|
||||
|
||||
public class AddManyTests : TestKeyedMongoRepositoryContext<int>
|
||||
{
|
||||
[Fact]
|
||||
public void WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddMany(documents);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddMany<TestDocumentWithKey<int>, int>(documents, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var documents = Fixture.CreateMany<TestDocumentWithKey<int>>().ToList();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddMany(documents, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddMany<TestDocumentWithKey<int>, int>(documents, token), Times.Once);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.KeyTypedRepositoryTests.AddTests;
|
||||
|
||||
public class AddOneAsyncTests : TestKeyedMongoRepositoryContext<int>
|
||||
{
|
||||
[Fact]
|
||||
public async Task WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocumentWithKey<int>, int>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
await Sut.AddOneAsync(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOneAsync<TestDocumentWithKey<int>, int>(document, token), Times.Once);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
using System.Threading;
|
||||
using AutoFixture;
|
||||
using CoreUnitTests.Infrastructure;
|
||||
using CoreUnitTests.Infrastructure.Model;
|
||||
using MongoDbGenericRepository.DataAccess.Create;
|
||||
using Moq;
|
||||
using Xunit;
|
||||
|
||||
namespace CoreUnitTests.KeyTypedRepositoryTests.AddTests;
|
||||
|
||||
public class AddOneTests : TestKeyedMongoRepositoryContext<int>
|
||||
{
|
||||
[Fact]
|
||||
public void WithDocument_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddOne(document);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOne<TestDocumentWithKey<int>, int>(document, CancellationToken.None), Times.Once);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void WithDocumentAndCancellationToken_ShouldAddOne()
|
||||
{
|
||||
// Arrange
|
||||
var document = Fixture.Create<TestDocumentWithKey<int>>();
|
||||
var token = new CancellationToken(true);
|
||||
Creator = new Mock<IMongoDbCreator>();
|
||||
|
||||
// Act
|
||||
Sut.AddOne(document, token);
|
||||
|
||||
// Assert
|
||||
Creator.Verify(x => x.AddOne<TestDocumentWithKey<int>, int>(document, token), Times.Once);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user