mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-21 11:44:56 +00:00
6d1c53beeb
Large refactor that renames/moves core types into a new Govor.Domain surface and reorganizes the Application layer. Models, configurations, migrations and many files moved from Govor.Core/Govor.Data to Govor.Domain; numerous Application services, interfaces and implementations were relocated or added (authentication, friends, messages, medias, push notifications, user sessions, storage, synching, private chats, etc.). Tests updated to use Govor.Domain namespaces and adjusted project references (removed Govor.Data reference from API tests). Also updated API, Hub and mapping code and project files to reflect the new structure and naming. This is primarily a codebase-wide namespace and module reorganization to establish a Domain project and restructure application services.
267 lines
9.3 KiB
C#
267 lines
9.3 KiB
C#
using AutoFixture;
|
|
using AutoMapper;
|
|
using Govor.API.Controllers;
|
|
using Govor.Application.Interfaces;
|
|
using Govor.Application.Interfaces.Infrastructure.Extensions;
|
|
using Govor.Application.Messages;
|
|
using Govor.Contracts.Requests;
|
|
using Govor.Contracts.Responses;
|
|
using Govor.Domain.Models.Messages;
|
|
using Govor.Data.Repositories.Exceptions;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Logging;
|
|
using Moq;
|
|
|
|
namespace Govor.API.Tests.IntegrationTests.Controllers;
|
|
|
|
[TestFixture]
|
|
public class ChatLoadControllerTests
|
|
{
|
|
private Mock<ICurrentUserService> _currentUserServiceMock;
|
|
private Mock<ILogger<ChatLoadController>> _loggerMock;
|
|
private Mock<IMessagesLoader> _messagesLoaderMock;
|
|
private Mock<IMapper> _mapperMock;
|
|
private Fixture _fixture;
|
|
private ChatLoadController _controller;
|
|
|
|
private Guid _userId = Guid.NewGuid();
|
|
private Guid _chatId = Guid.NewGuid();
|
|
private Guid _currentId = Guid.NewGuid();
|
|
|
|
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
_fixture = new Fixture();
|
|
_fixture.Behaviors.OfType<ThrowingRecursionBehavior>().ToList().ForEach(b => _fixture.Behaviors.Remove(b));
|
|
_fixture.Behaviors.Add(new OmitOnRecursionBehavior());
|
|
|
|
_currentUserServiceMock = new Mock<ICurrentUserService>();
|
|
_loggerMock = new Mock<ILogger<ChatLoadController>>();
|
|
_messagesLoaderMock = new Mock<IMessagesLoader>();
|
|
_mapperMock = new Mock<IMapper>();
|
|
|
|
_currentUserServiceMock.Setup(u => u.GetCurrentUserId()).Returns(_currentId);
|
|
|
|
_controller = new ChatLoadController(
|
|
_loggerMock.Object,
|
|
_messagesLoaderMock.Object,
|
|
_currentUserServiceMock.Object,
|
|
_mapperMock.Object);
|
|
}
|
|
|
|
// Tests for GetChatMessages action
|
|
[Test]
|
|
public async Task GetChatMessages_ValidRequest_ReturnsOkResult()
|
|
{
|
|
// Arrange
|
|
var random = new Random();
|
|
var messages = _fixture.CreateMany<Message>(random.Next(3, 10)).ToList();
|
|
var before = random.Next(1, 10);
|
|
var after = random.Next(1, 10);
|
|
|
|
var query = new MessageQuery()
|
|
{
|
|
Before = before,
|
|
After = after,
|
|
StartMessageId = null
|
|
};
|
|
|
|
_messagesLoaderMock.Setup(m =>
|
|
m.LoadMessagesInChatGroup(_chatId, _currentId, null, before, after))
|
|
.ReturnsAsync(messages);
|
|
|
|
var messagesResponse = messages.Select(m => new MessageResponse()
|
|
{
|
|
Id = m.Id,
|
|
SenderId = m.SenderId,
|
|
RecipientId = m.RecipientId,
|
|
RecipientType = m.RecipientType,
|
|
}).ToList();
|
|
|
|
_mapperMock.Setup(f => f.Map<List<MessageResponse>>(messages)).
|
|
Returns(messagesResponse);
|
|
|
|
// Act
|
|
var result = await _controller.GetGroupMessages(_chatId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.Not.Null);
|
|
Assert.That(result, Is.InstanceOf<OkObjectResult>());
|
|
|
|
var okResult = (OkObjectResult)result;
|
|
var values = okResult.Value as List<MessageResponse>;
|
|
|
|
Assert.That(values, Is.Not.Null);
|
|
|
|
Assert.That(values.Select(v => v.Id),
|
|
Is.EquivalentTo(messagesResponse.Select(m => m.Id)));
|
|
|
|
Assert.That(values.Select(v => v.SenderId),
|
|
Is.EquivalentTo(messagesResponse.Select(m => m.SenderId)));
|
|
|
|
Assert.That(values.Select(v => v.RecipientId),
|
|
Is.EquivalentTo(messagesResponse.Select(m => m.RecipientId)));
|
|
|
|
Assert.That(values.Select(v => v.RecipientType),
|
|
Is.EquivalentTo(messagesResponse.Select(m => m.RecipientType)));
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetGroupMessages_InvalidQuery_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = -1, After = 10 };
|
|
|
|
// Act
|
|
var result = await _controller.GetGroupMessages(_chatId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetGroupMessages_UnauthorizedAccess_ReturnsForbid()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInChatGroup(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new UnauthorizedAccessException());
|
|
|
|
// Act
|
|
var result = await _controller.GetGroupMessages(_chatId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<ForbidResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetGroupMessages_NotFound_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInChatGroup(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new NotFoundException("Chat not found"));
|
|
|
|
// Act
|
|
var result = await _controller.GetGroupMessages(_chatId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetGroupMessages_ArgumentException_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInChatGroup(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new ArgumentException("Invalid argument"));
|
|
|
|
// Act
|
|
var result = await _controller.GetGroupMessages(_chatId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
// GetUserMessages tests
|
|
[Test]
|
|
public async Task GetUserMessages_ValidRequest_ReturnsOkResult()
|
|
{
|
|
// Arrange
|
|
var messages = _fixture.CreateMany<Message>(5).ToList();
|
|
var query = new MessageQuery { Before = 5, After = 5 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInUserChat(_userId, _currentId, null, 5, 5))
|
|
.ReturnsAsync(messages);
|
|
var messageResponses = _fixture.CreateMany<MessageResponse>(5).ToList();
|
|
_mapperMock.Setup(m => m.Map<List<MessageResponse>>(messages)).Returns(messageResponses);
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<OkObjectResult>());
|
|
var okResult = result as OkObjectResult;
|
|
Assert.That(okResult.Value, Is.EqualTo(messageResponses));
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetUserMessages_InvalidQuery_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = -1, After = 10 };
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetUserMessages_InvalidOperation_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInUserChat(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new InvalidOperationException());
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetUserMessages_UnauthorizedAccess_ReturnsForbid()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInUserChat(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new UnauthorizedAccessException());
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<ForbidResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetUserMessages_NotFound_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInUserChat(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new NotFoundException("User not found"));
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[Test]
|
|
public async Task GetUserMessages_ArgumentException_ReturnsBadRequest()
|
|
{
|
|
// Arrange
|
|
var query = new MessageQuery { Before = 10, After = 10 };
|
|
_messagesLoaderMock.Setup(m => m.LoadMessagesInUserChat(It.IsAny<Guid>(), It.IsAny<Guid>(), null, It.IsAny<int>(), It.IsAny<int>()))
|
|
.ThrowsAsync(new ArgumentException("Invalid argument"));
|
|
|
|
// Act
|
|
var result = await _controller.GetUserMessages(_userId, query);
|
|
|
|
// Assert
|
|
Assert.That(result, Is.InstanceOf<BadRequestObjectResult>());
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
_controller?.Dispose();
|
|
}
|
|
} |