add mapping interface
This commit is contained in:
parent
beb7102e83
commit
8df1f60e30
8
AutobusApi.Application/Common/Mappings/IMapFrom.cs
Normal file
8
AutobusApi.Application/Common/Mappings/IMapFrom.cs
Normal 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());
|
||||
}
|
35
AutobusApi.Application/Common/Mappings/MappingProfile.cs
Normal file
35
AutobusApi.Application/Common/Mappings/MappingProfile.cs
Normal 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 });
|
||||
}
|
||||
}
|
||||
}
|
@ -12,6 +12,8 @@ public static class DependencyInjection
|
||||
{
|
||||
services.AddValidatorsFromAssembly(Assembly.GetExecutingAssembly());
|
||||
|
||||
services.AddAutoMapper(Assembly.GetExecutingAssembly());
|
||||
|
||||
services.AddMediatR(configuration =>
|
||||
{
|
||||
configuration.RegisterServicesFromAssembly(Assembly.GetExecutingAssembly());
|
||||
|
31
AutobusApi.UnitTests/Common/Mappings/MappingTests.cs
Normal file
31
AutobusApi.UnitTests/Common/Mappings/MappingTests.cs
Normal 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);
|
||||
}
|
||||
}
|
18
AutobusApi.UnitTests/Common/Mappings/MappingTestsFixture.cs
Normal file
18
AutobusApi.UnitTests/Common/Mappings/MappingTestsFixture.cs
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user