Refactor message service and move tests to Application.Tests

Renamed IMessageService to IMessageCommandService and updated all usages accordingly. Moved and renamed test files from Govor.API.Tests to the new Govor.Application.Tests project, updating namespaces to match. Refactored message-related services and controllers to use the new naming and structure. Added Govor.Application.Tests project to the solution.
This commit is contained in:
Artemy
2025-07-10 18:05:10 +07:00
parent a43a26b307
commit 65a43c09d3
33 changed files with 157 additions and 45 deletions
@@ -0,0 +1,26 @@
using Govor.API.Services.AdminsStuff.Interfaces;
using Govor.Core.Models;
using Govor.Core.Repositories.Invaites;
namespace Govor.Application.Infrastructure.AdminsStuff;
public class InvitationGenerator(IInvitesRepository repository) : IInvitationGenerator
{
public async Task<string> GenerateInvitationCode(DateTime time, int maxUsers, bool isAdmin, string description = "")
{
Invitation newInvitation = new Invitation()
{
Id = Guid.NewGuid(),
Description = description,
MaxParticipants = maxUsers,
DateCreated = DateTime.UtcNow,
EndDate = time.ToUniversalTime(),
Code = Guid.NewGuid().ToString("N"),
IsAdmin = isAdmin
};
await repository.AddAsync(newInvitation);
return newInvitation.Code;
}
}
@@ -0,0 +1,36 @@
using Govor.API.Services.AdminsStuff.Interfaces;
using Govor.Core.Models;
using Govor.Core.Repositories.Users;
using Govor.Data.Repositories.Exceptions;
namespace Govor.Application.Interfaces.AdminsStuff;
public class UsersService : IUsersAdministration
{
private readonly IUsersRepository _usersRepository;
public UsersService(IUsersRepository usersRepository)
{
_usersRepository = usersRepository;
}
public async Task<List<User>> GetAllUsersAsync()
{
try
{
var results = await _usersRepository.GetAllAsync();
return results;
}
catch (NotFoundException ex)
{
return new List<User>();
}
}
public async Task<User> GetUserById(Guid userId)
{
var result = await _usersRepository.FindByIdAsync(userId);
return result;
}
}