Files
mongodb-generic-repository/CoreUnitTests/DataAccessTests/MongoDbIndexHandlerTests/CreateCombinedTextIndexAsyncTests.cs
T
2023-06-22 22:06:27 +01:00

191 lines
6.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using AutoFixture;
using CoreUnitTests.Infrastructure;
using CoreUnitTests.Infrastructure.Model;
using FluentAssertions;
using MongoDB.Driver;
using MongoDbGenericRepository;
using MongoDbGenericRepository.Models;
using Moq;
using Xunit;
using Xunit.Abstractions;
namespace CoreUnitTests.DataAccessTests.MongoDbIndexHandlerTests;
public class CreateCombinedTextIndexAsyncTests : BaseIndexTests
{
private readonly ITestOutputHelper testOutputHelper;
private readonly List<Expression<Func<TestDocument, object>>> fieldExpressions = new()
{
t => t.SomeContent2,
t => t.GroupingKey
};
public CreateCombinedTextIndexAsyncTests(ITestOutputHelper testOutputHelper)
=> this.testOutputHelper = testOutputHelper;
[Fact]
public async Task WhenFieldExpression_ThenCreatesIndex()
{
// Arrange
var expectedIndexName = Fixture.Create<string>();
var collection = MockOf<IMongoCollection<TestDocument>>();
SetupContext(collection);
var indexManger = SetupIndexManager(collection, expectedIndexName);
// Act
var result = await Sut.CreateCombinedTextIndexAsync<TestDocument, Guid>(fieldExpressions);
// Assert
result.Should().Be(expectedIndexName);
indexManger.Verify(
x => x.CreateOneAsync(
It.Is<CreateIndexModel<TestDocument>>(t => t.Keys.EqualToJson("{\"SomeContent2\":\"text\",\"GroupingKey\":\"text\"}", testOutputHelper)),
null,
CancellationToken.None),
Times.Once);
}
[Fact]
public async Task WhenFieldExpressionAndOptions_ThenCreatesIndex()
{
// Arrange
var expectedIndexName = Fixture.Create<string>();
var collection = MockOf<IMongoCollection<TestDocument>>();
var options = Fixture.Create<IndexCreationOptions>();
SetupContext(collection);
var indexManger = SetupIndexManager(collection, expectedIndexName);
// Act
var result = await Sut.CreateCombinedTextIndexAsync<TestDocument, Guid>(fieldExpressions, options);
// Assert
result.Should().Be(expectedIndexName);
indexManger.Verify(
x => x.CreateOneAsync(
It.Is<CreateIndexModel<TestDocument>>(
t => t.Keys.EqualToJson("{\"SomeContent2\":\"text\",\"GroupingKey\":\"text\"}") &&
t.Options.EqualTo(options)),
null,
CancellationToken.None),
Times.Once);
}
[Fact]
public async Task WhenFieldExpressionAndPartitionKey_ThenCreatesIndex()
{
// Arrange
var expectedIndexName = Fixture.Create<string>();
var collection = MockOf<IMongoCollection<TestDocument>>();
var partitionKey = Fixture.Create<string>();
var context = SetupContext(collection);
var indexManger = SetupIndexManager(collection, expectedIndexName);
// Act
var result = await Sut.CreateCombinedTextIndexAsync<TestDocument, Guid>(fieldExpressions, partitionKey: partitionKey);
// Assert
result.Should().Be(expectedIndexName);
indexManger.Verify(
x => x.CreateOneAsync(
It.Is<CreateIndexModel<TestDocument>>(
t => t.Keys.EqualToJson("{\"SomeContent2\":\"text\",\"GroupingKey\":\"text\"}") ),
null,
CancellationToken.None),
Times.Once);
context.Verify(x => x.GetCollection<TestDocument>(partitionKey), Times.Once);
}
[Fact]
public async Task WhenFieldExpressionAndCancellationToken_ThenCreatesIndex()
{
// Arrange
var expectedIndexName = Fixture.Create<string>();
var collection = MockOf<IMongoCollection<TestDocument>>();
var token = new CancellationToken(true);
SetupContext(collection);
var indexManger = SetupIndexManager(collection, expectedIndexName);
// Act
var result = await Sut.CreateCombinedTextIndexAsync<TestDocument, Guid>(fieldExpressions, cancellationToken: token);
// Assert
result.Should().Be(expectedIndexName);
indexManger.Verify(
x => x.CreateOneAsync(
It.Is<CreateIndexModel<TestDocument>>(
t => t.Keys.EqualToJson("{\"SomeContent2\":\"text\",\"GroupingKey\":\"text\"}") ),
null,
token),
Times.Once);
}
[Fact]
public async Task WhenFieldExpressionAndOptionsAndPartitionKeyAndCancellationToken_ThenCreatesIndex()
{
// Arrange
var expectedIndexName = Fixture.Create<string>();
var collection = MockOf<IMongoCollection<TestDocument>>();
var token = new CancellationToken(true);
var partitionKey = Fixture.Create<string>();
var options = Fixture.Create<IndexCreationOptions>();
var context = SetupContext(collection);
var indexManger = SetupIndexManager(collection, expectedIndexName);
// Act
var result = await Sut.CreateCombinedTextIndexAsync<TestDocument, Guid>(fieldExpressions, options, partitionKey, token);
// Assert
result.Should().Be(expectedIndexName);
indexManger.Verify(
x => x.CreateOneAsync(
It.Is<CreateIndexModel<TestDocument>>(
t => t.Keys.EqualToJson("{\"SomeContent2\":\"text\",\"GroupingKey\":\"text\"}") &&
t.Options.EqualTo(options)),
null,
token),
Times.Once);
context.Verify(x => x.GetCollection<TestDocument>(partitionKey), Times.Once);
}
private Mock<IMongoDbContext> SetupContext<TDocument>(IMock<IMongoCollection<TDocument>> collection)
{
var context = MockOf<IMongoDbContext>();
context
.Setup(x => x.GetCollection<TDocument>(It.IsAny<string>()))
.Returns(collection.Object);
return context;
}
private Mock<IMongoIndexManager<TDocument>> SetupIndexManager<TDocument>(Mock<IMongoCollection<TDocument>> collection, string indexName)
{
var indexManager = MockOf<IMongoIndexManager<TDocument>>();
indexManager
.Setup(
x => x.CreateOneAsync(
It.IsAny<CreateIndexModel<TDocument>>(),
It.IsAny<CreateOneIndexOptions>(),
It.IsAny<CancellationToken>()))
.ReturnsAsync(indexName);
collection
.SetupGet(x => x.Indexes)
.Returns(indexManager.Object);
return indexManager;
}
}