add mapping interface

This commit is contained in:
cuqmbr 2023-11-30 16:18:07 +02:00
parent beb7102e83
commit 8df1f60e30
Signed by: cuqmbr
GPG Key ID: 2D72ED98B6CB200F
5 changed files with 94 additions and 0 deletions

View File

@ -0,0 +1,8 @@
using AutoMapper;
namespace AutobusApi.Application.Common.Mappings;
public interface IMapFrom<T>
{
void Mapping(Profile profile) => profile.CreateMap(typeof(T), GetType());
}

View File

@ -0,0 +1,35 @@
using System.Reflection;
using AutoMapper;
namespace AutobusApi.Application.Common.Mappings;
public class MappingProfile : Profile
{
public MappingProfile()
{
ApplyMappingsFromAssembly(Assembly.GetExecutingAssembly());
}
private void ApplyMappingsFromAssembly(Assembly assembly)
{
var types = assembly.GetExportedTypes()
.Where(t => t.GetInterfaces()
.Any(i =>
i.IsGenericType &&
i.GetGenericTypeDefinition() == typeof(IMapFrom<>)
)
)
.ToList();
foreach (var type in types)
{
var instance = Activator.CreateInstance(type);
var methodInfo =
type.GetMethod("Mapping") ??
type.GetInterface("IMapFrom`1")?.GetMethod("Mapping");
methodInfo?.Invoke(instance, new object[] { this });
}
}
}

View File

@ -12,6 +12,8 @@ public static class DependencyInjection
{
services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());
services.AddAutoMapper(Assembly.GetExecutingAssembly());
services.AddMediatR(configuration =>
{
configuration.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());

View File

@ -0,0 +1,31 @@
using AutobusApi.Application.RouteSearch;
using AutoMapper;
namespace AutobusApi.UnitTests.Common.Mappings;
public class MappingTests : IClassFixture<MappingTestsFixture>
{
private readonly IConfigurationProvider _configuration;
private readonly IMapper _mapper;
public MappingTests(MappingTestsFixture fixure)
{
_configuration = fixure.ConfigurationProvider;
_mapper = fixure.Mapper;
}
[Fact]
public void ShouldHaveValidConfiguraion()
{
_configuration.AssertConfigurationIsValid();
}
[Theory]
// [InlineData(typeof(), typeof())]
public void ShouldSupportMappingFromSourceDoDestination(Type source, Type destination)
{
var instance = Activator.CreateInstance(source);
_mapper.Map(instance, source, destination);
}
}

View File

@ -0,0 +1,18 @@
using AutobusApi.Application.Common.Mappings;
using AutoMapper;
namespace AutobusApi.UnitTests.Common.Mappings;
public class MappingTestsFixture
{
public IConfigurationProvider ConfigurationProvider;
public IMapper Mapper;
public MappingTestsFixture()
{
ConfigurationProvider = new MapperConfiguration(options => options.AddProfile<MappingProfile>());
Mapper = ConfigurationProvider.CreateMapper();
}
}