2021-01-30 11:59:39 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using MapTo.Sources;
|
|
|
|
using MapTo.Tests.Extensions;
|
|
|
|
using MapTo.Tests.Infrastructure;
|
|
|
|
using Shouldly;
|
|
|
|
using Xunit;
|
|
|
|
using static MapTo.Extensions.GeneratorExecutionContextExtensions;
|
|
|
|
using static MapTo.Tests.Common;
|
|
|
|
|
|
|
|
namespace MapTo.Tests
|
|
|
|
{
|
|
|
|
public class MapToTests
|
|
|
|
{
|
|
|
|
private static readonly string ExpectedAttribute = $@"{Constants.GeneratedFilesHeader}
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace MapTo
|
|
|
|
{{
|
|
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
|
|
public sealed class MapFromAttribute : Attribute
|
|
|
|
{{
|
|
|
|
public MapFromAttribute(Type sourceType)
|
|
|
|
{{
|
|
|
|
SourceType = sourceType;
|
|
|
|
}}
|
|
|
|
|
|
|
|
public Type SourceType {{ get; }}
|
|
|
|
}}
|
|
|
|
}}";
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void VerifyMapToAttribute()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
const string source = "";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.ShouldContainSource(MapFromAttributeSource.AttributeName, ExpectedAttribute);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_FoundMatchingPropertyNameWithDifferentTypes_Should_ReportError()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText(new SourceGeneratorOptions(
|
|
|
|
true,
|
2021-01-30 12:09:58 +03:00
|
|
|
PropertyBuilder: builder => { builder.WriteLine("public string Prop4 { get; set; }"); },
|
|
|
|
SourcePropertyBuilder: builder => builder.WriteLine("public int Prop4 { get; set; }")));
|
2021-01-30 11:59:39 +03:00
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
var expectedError = DiagnosticProvider.NoMatchingPropertyTypeFoundError(GetSourcePropertySymbol("Prop4", compilation));
|
|
|
|
|
|
|
|
diagnostics.ShouldBeUnsuccessful(expectedError);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_MappingsModifierOptionIsSetToInternal_Should_GenerateThoseMethodsWithInternalAccessModifier()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText();
|
|
|
|
var configOptions = new Dictionary<string, string>
|
|
|
|
{
|
|
|
|
[GetBuildPropertyName(nameof(SourceGenerationOptions.GeneratedMethodsAccessModifier))] = "Internal",
|
|
|
|
[GetBuildPropertyName(nameof(SourceGenerationOptions.GenerateXmlDocument))] = "false"
|
|
|
|
};
|
|
|
|
|
|
|
|
var expectedExtension = @"
|
|
|
|
internal static partial class BazToFooExtensions
|
|
|
|
{
|
|
|
|
internal static Foo ToFoo(this Test.Models.Baz baz)
|
|
|
|
{
|
|
|
|
return baz == null ? null : new Foo(baz);
|
|
|
|
}
|
|
|
|
}".Trim();
|
|
|
|
|
|
|
|
var expectedFactory = @"
|
|
|
|
internal static Foo From(Test.Models.Baz baz)
|
|
|
|
{
|
|
|
|
return baz == null ? null : new Foo(baz);
|
|
|
|
}".Trim();
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: configOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
|
|
|
|
var syntaxTree = compilation.SyntaxTrees.Last().ToString();
|
|
|
|
syntaxTree.ShouldContain(expectedFactory);
|
|
|
|
syntaxTree.ShouldContain(expectedExtension);
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_MapToAttributeFound_Should_GenerateTheClass()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
const string source = @"
|
|
|
|
using MapTo;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
[MapFrom(typeof(Baz))]
|
|
|
|
public partial class Foo
|
|
|
|
{
|
|
|
|
public int Prop1 { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class Baz
|
|
|
|
{
|
|
|
|
public int Prop1 { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
// <auto-generated />
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
partial class Foo
|
|
|
|
{
|
|
|
|
public Foo(Test.Baz baz)
|
|
|
|
{
|
|
|
|
if (baz == null) throw new ArgumentNullException(nameof(baz));
|
|
|
|
|
|
|
|
Prop1 = baz.Prop1;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldStartWith(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_MapToAttributeFoundWithoutMatchingProperties_Should_ReportError()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
const string source = @"
|
|
|
|
using MapTo;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
[MapFrom(typeof(Baz))]
|
|
|
|
public partial class Foo { }
|
|
|
|
|
|
|
|
public class Baz { public int Prop1 { get; set; } }
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
var fooType = compilation.GetTypeByMetadataName("Test.Foo");
|
|
|
|
fooType.ShouldNotBeNull();
|
|
|
|
|
|
|
|
var bazType = compilation.GetTypeByMetadataName("Test.Baz");
|
|
|
|
bazType.ShouldNotBeNull();
|
|
|
|
|
|
|
|
var expectedDiagnostic = DiagnosticProvider.NoMatchingPropertyFoundError(fooType.Locations.Single(), fooType, bazType);
|
|
|
|
var error = diagnostics.FirstOrDefault(d => d.Id == expectedDiagnostic.Id);
|
|
|
|
error.ShouldNotBeNull();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_MapToAttributeWithNamespaceFound_Should_GenerateTheClass()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
const string source = @"
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
[MapTo.MapFrom(typeof(Baz))]
|
|
|
|
public partial class Foo { public int Prop1 { get; set; } }
|
|
|
|
|
|
|
|
public class Baz { public int Prop1 { get; set; } }
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
// <auto-generated />
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
partial class Foo
|
|
|
|
{
|
|
|
|
public Foo(Test.Baz baz)
|
|
|
|
{
|
|
|
|
if (baz == null) throw new ArgumentNullException(nameof(baz));
|
|
|
|
|
|
|
|
Prop1 = baz.Prop1;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldStartWith(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_NoMapToAttributeFound_Should_GenerateOnlyTheAttribute()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
const string source = "";
|
|
|
|
var expectedTypes = new[]
|
|
|
|
{
|
|
|
|
IgnorePropertyAttributeSource.AttributeName,
|
|
|
|
MapFromAttributeSource.AttributeName,
|
|
|
|
ITypeConverterSource.InterfaceName,
|
|
|
|
MapPropertyAttributeSource.AttributeName
|
|
|
|
};
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees
|
|
|
|
.Select(s => s.ToString())
|
|
|
|
.Where(s => !string.IsNullOrWhiteSpace(s.ToString()))
|
|
|
|
.All(s => expectedTypes.Any(s.Contains))
|
|
|
|
.ShouldBeTrue();
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_SourceTypeHasDifferentNamespace_Should_NotAddToUsings()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText(new SourceGeneratorOptions(SourceClassNamespace: "Bazaar"));
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
// <auto-generated />
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Test
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldStartWith(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_SourceTypeHasMatchingProperties_Should_CreateConstructorAndAssignSrcToDest()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText();
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
partial class Foo
|
|
|
|
{
|
|
|
|
public Foo(Test.Models.Baz baz)
|
|
|
|
{
|
|
|
|
if (baz == null) throw new ArgumentNullException(nameof(baz));
|
|
|
|
|
|
|
|
Prop1 = baz.Prop1;
|
|
|
|
Prop2 = baz.Prop2;
|
|
|
|
Prop3 = baz.Prop3;
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldContain(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_SourceTypeHasMatchingProperties_Should_CreateFromStaticMethod()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText();
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
public static Foo From(Test.Models.Baz baz)
|
|
|
|
{
|
|
|
|
return baz == null ? null : new Foo(baz);
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldContain(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
public void When_SourceTypeHasMatchingProperties_Should_GenerateToExtensionMethodOnSourceType()
|
|
|
|
{
|
|
|
|
// Arrange
|
|
|
|
var source = GetSourceText();
|
|
|
|
|
|
|
|
const string expectedResult = @"
|
|
|
|
public static partial class BazToFooExtensions
|
|
|
|
{
|
|
|
|
public static Foo ToFoo(this Test.Models.Baz baz)
|
|
|
|
{
|
|
|
|
return baz == null ? null : new Foo(baz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
|
|
|
// Act
|
|
|
|
var (compilation, diagnostics) = CSharpGenerator.GetOutputCompilation(source, analyzerConfigOptions: DefaultAnalyzerOptions);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
diagnostics.ShouldBeSuccessful();
|
|
|
|
compilation.SyntaxTrees.Last().ToString().ShouldContain(expectedResult.Trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|