diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 9ada7af..b95fc1b 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -29,7 +29,7 @@ jobs: - name: Publish MapTo uses: brandedoutcast/publish-nuget@v2.5.5 with: - PROJECT_FILE_PATH: src/MapTo/MapTo.csproj + PROJECT_FILE_PATH: src/BlueWest.MapTo/BlueWest.MapTo.csproj NUGET_KEY: ${{secrets.NUGET_API_KEY}} NUGET_SOURCE: https://api.nuget.org TAG_COMMIT: false diff --git a/MapTo.sln b/MapTo.sln index 881aa75..35ef225 100644 --- a/MapTo.sln +++ b/MapTo.sln @@ -1,6 +1,6 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapTo", "src\MapTo\MapTo.csproj", "{4DB371AC-48D0-4F01-8EF3-7707D06EF0A7}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapTo", "src\BlueWest.MapTo\BlueWest.MapTo.csproj", "{4DB371AC-48D0-4F01-8EF3-7707D06EF0A7}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MapToTests", "test\MapTo.Tests\MapTo.Tests.csproj", "{797DA57B-AC7E-468B-8799-44C5A574C0E3}" EndProject diff --git a/src/BlueWest.MapTo/BlueWest.MapTo.csproj b/src/BlueWest.MapTo/BlueWest.MapTo.csproj index 6061e68..01debfe 100644 --- a/src/BlueWest.MapTo/BlueWest.MapTo.csproj +++ b/src/BlueWest.MapTo/BlueWest.MapTo.csproj @@ -18,6 +18,7 @@ bin\Release\MapTo.xml + false diff --git a/src/BlueWest.MapTo/Extensions/CommonExtensions.cs b/src/BlueWest.MapTo/Extensions/CommonExtensions.cs index edc2e23..3c89df6 100644 --- a/src/BlueWest.MapTo/Extensions/CommonExtensions.cs +++ b/src/BlueWest.MapTo/Extensions/CommonExtensions.cs @@ -30,17 +30,22 @@ namespace MapTo.Extensions internal static SourceBuilder WriteModelInfo(this SourceBuilder builder, MappingModel model) { - return builder - .WriteLine() - .WriteComment($" IsTypeUpdatable {model.IsTypeUpdatable}") - .WriteComment($" HasMappedBaseClass {model.HasMappedBaseClass.ToString()}") - .WriteComment($" Namespace {model.Namespace}") - .WriteComment($" Options {model.Options.ToString()}") - .WriteComment($" Type {model.Type}") - .WriteComment($" TypeIdentifierName {model.TypeIdentifierName}") - .WriteComment($" SourceNamespace {model.SourceNamespace}") - .WriteComment($" SourceTypeFullName {model.SourceTypeFullName}") - .WriteComment($" SourceTypeIdentifierName {model.SourceTypeIdentifierName}"); + foreach (var targetSourceType in model.MappedSourceTypes) + { + builder + .WriteLine() + .WriteComment($" IsTypeUpdatable {model.IsTypeUpdatable}") + .WriteComment($" HasMappedBaseClass {model.HasMappedBaseClass.ToString()}") + .WriteComment($" Namespace {model.Namespace}") + .WriteComment($" Options {model.Options.ToString()}") + .WriteComment($" Type {model.Type}") + .WriteComment($" TypeIdentifierName {model.TypeIdentifierName}") + .WriteComment($" SourceNamespace {targetSourceType.SourceNamespace}") + .WriteComment($" SourceTypeFullName {targetSourceType.SourceTypeFullName}") + .WriteComment($" SourceTypeIdentifierName {targetSourceType.SourceTypeIdentifierName}"); + } + + return builder; } diff --git a/src/BlueWest.MapTo/Extensions/CommonSource.cs b/src/BlueWest.MapTo/Extensions/CommonSource.cs index 07f0413..0b58acd 100644 --- a/src/BlueWest.MapTo/Extensions/CommonSource.cs +++ b/src/BlueWest.MapTo/Extensions/CommonSource.cs @@ -15,6 +15,7 @@ namespace MapTo.Extensions { const bool writeDebugInfo = true; + using var builder = new SourceBuilder() .WriteLine(GeneratedFilesHeader) .WriteNullableContextOptionIf(model.Options.SupportNullableReferenceTypes) @@ -24,24 +25,31 @@ namespace MapTo.Extensions // Namespace declaration .WriteLine($"namespace {model.Namespace}") .WriteOpeningBracket(); + + + + foreach (var targetSourceType in model.MappedSourceTypes) + { + if (writeDebugInfo) + builder + .WriteModelInfo(model) + .WriteLine() + .WriteComment("Type properties") + .WriteComment() + .WriteMappedProperties(targetSourceType.TypeProperties) + .WriteLine() + .WriteComment("Source properties") + .WriteLine() + .WriteComment("Type fields") + .WriteComment() + .WriteMappedProperties(targetSourceType.TypeFields) + .WriteLine() + .WriteComment("Source fields") + .WriteMappedProperties(targetSourceType.SourceFields) + .WriteLine(); + + } - if (writeDebugInfo) - builder - .WriteModelInfo(model) - .WriteLine() - .WriteComment("Type properties") - .WriteComment() - .WriteMappedProperties(model.TypeProperties) - .WriteLine() - .WriteComment("Source properties") - .WriteLine() - .WriteComment("Type fields") - .WriteComment() - .WriteMappedProperties(model.TypeFields) - .WriteLine() - .WriteComment("Source fields") - .WriteMappedProperties(model.SourceFields) - .WriteLine(); builder // Class declaration @@ -50,10 +58,14 @@ namespace MapTo.Extensions .WriteLine() // Class body .GeneratePublicConstructor(model); - + foreach (var targetSourceType in model.MappedSourceTypes) + { + if (model.IsTypeUpdatable && targetSourceType.TypeProperties.GetWritableMappedProperties().Length > 0) builder.GenerateUpdateMethod(model); + if (model.IsTypeUpdatable && targetSourceType.TypeFields.GetWritableMappedProperties().Length > 0) builder.GenerateUpdateMethod(model); + } + if (model.IsJsonExtension) builder.WriteToJsonMethod(model); - if (model.IsTypeUpdatable && model.TypeProperties.GetWritableMappedProperties().Length > 0) builder.GenerateUpdateMethod(model); - if (model.IsTypeUpdatable && model.TypeFields.GetWritableMappedProperties().Length > 0) builder.GenerateUpdateMethod(model); + builder .WriteLine() @@ -68,45 +80,47 @@ namespace MapTo.Extensions private static SourceBuilder GeneratePublicConstructor(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); const string mappingContextParameterName = "context"; - var baseConstructor = /*model.HasMappedBaseClass ? $" : base({mappingContextParameterName}, {sourceClassParameterName})" :*/ string.Empty; - - var stringBuilder = new StringBuilder(); - - var otherProperties = new List(); - - foreach (var property in model.TypeProperties) + foreach (var targetSourceType in model.MappedSourceTypes) { - if (!model.SourceProperties.IsMappedProperty(property)) + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + var baseConstructor = /*model.HasMappedBaseClass ? $" : base({mappingContextParameterName}, {sourceClassParameterName})" :*/ string.Empty; + var stringBuilder = new StringBuilder(); + var otherProperties = new List(); + + foreach (var property in targetSourceType.TypeProperties) { - stringBuilder.Append(", "); - stringBuilder.Append($"{property.FullyQualifiedType} {property.SourcePropertyName.ToCamelCase()}"); - otherProperties.Add(property); + if (!targetSourceType.SourceProperties.IsMappedProperty(property)) + { + stringBuilder.Append(", "); + stringBuilder.Append($"{property.FullyQualifiedType} {property.SourcePropertyName.ToCamelCase()}"); + otherProperties.Add(property); + } + } - } - - foreach (var property in model.TypeFields) - { - if (!model.SourceFields.IsMappedProperty(property)) + foreach (var property in targetSourceType.TypeFields) { - stringBuilder.Append(", "); - stringBuilder.Append($"{property.FullyQualifiedType} {property.SourcePropertyName.ToCamelCase()}"); - otherProperties.Add(property); + if (!targetSourceType.SourceFields.IsMappedProperty(property)) + { + stringBuilder.Append(", "); + stringBuilder.Append($"{property.FullyQualifiedType} {property.SourcePropertyName.ToCamelCase()}"); + otherProperties.Add(property); + } } + + var readOnlyPropertiesArguments = stringBuilder.ToString(); + + builder + .WriteLine($"public {model.TypeIdentifierName}({targetSourceType.SourceType} {sourceClassParameterName}{readOnlyPropertiesArguments}){baseConstructor}") + .WriteOpeningBracket() + .WriteAssignmentMethod(model, otherProperties.ToArray().ToImmutableArray(), sourceClassParameterName, mappingContextParameterName, false); + + builder.WriteClosingBracket(); } - - var readOnlyPropertiesArguments = stringBuilder.ToString(); - - builder - .WriteLine($"public {model.TypeIdentifierName}({model.SourceType} {sourceClassParameterName}{readOnlyPropertiesArguments}){baseConstructor}") - .WriteOpeningBracket() - .WriteAssignmentMethod(model, otherProperties.ToArray().ToImmutableArray(), sourceClassParameterName, mappingContextParameterName, false); - // End constructor declaration - return builder.WriteClosingBracket(); + return builder; } private static bool IsMappedProperty(this System.Collections.Immutable.ImmutableArray properties, MappedMember property) @@ -128,28 +142,33 @@ namespace MapTo.Extensions .WriteLine("var stringBuilder = new System.Text.StringBuilder();") .WriteLine(GetStringBuilderAppendNoInterpolation("{")); - foreach (var property in model.TypeProperties) + foreach (var targetSourceType in model.MappedSourceTypes) { - if (!property.isEnumerable) - HandlePropertyEnumerable(builder, property); - else + foreach (var property in targetSourceType.TypeProperties) { - builder = WriteJsonField(builder, property); + if (!property.isEnumerable) + HandlePropertyEnumerable(builder, property); + else + { + builder = WriteJsonField(builder, property); + } } - } - foreach (var property in model.TypeFields) - { - if (!property.isEnumerable) - HandleFieldEnumerable(builder, property); - else + foreach (var property in targetSourceType.TypeFields) { - builder.WriteLine(GetStringBuilderAppend($"\\\"{property.Name.ToCamelCase()}\\\" : [{GetJsonArrayValue(property, ref builder)}],")); + if (!property.isEnumerable) + HandleFieldEnumerable(builder, property); + else + { + builder.WriteLine(GetStringBuilderAppend($"\\\"{property.Name.ToCamelCase()}\\\" : [{GetJsonArrayValue(property, ref builder)}],")); + } } + + builder.WriteLine(GetStringBuilderAppendNoInterpolation("}")); + builder.WriteLine("return stringBuilder.ToString();"); + builder.WriteClosingBracket(); } + - builder.WriteLine(GetStringBuilderAppendNoInterpolation("}")); - builder.WriteLine("return stringBuilder.ToString();"); - builder.WriteClosingBracket(); return builder; } @@ -228,31 +247,47 @@ namespace MapTo.Extensions string? sourceClassParameterName, string mappingContextParameterName, bool fromUpdate) { - foreach (var property in model.SourceProperties) + List _addedMembers = new List(); + + foreach (var targetSourceType in model.MappedSourceTypes) { - if (property.isReadOnly && fromUpdate) continue; + foreach (var property in targetSourceType.SourceProperties) + { + if (property.isReadOnly && fromUpdate) continue; + if(_addedMembers.Contains(property)) continue; + - builder.WriteLine($"{property.Name} = {sourceClassParameterName}.{property.SourcePropertyName};"); + builder.WriteLine($"{property.Name} = {sourceClassParameterName}.{property.SourcePropertyName};"); + _addedMembers.Add(property); + } + + foreach (var property in targetSourceType.SourceFields) + { + if (property.isReadOnly && fromUpdate) continue; + if(_addedMembers.Contains(property)) continue; + + builder.WriteLine($"{property.Name} = {sourceClassParameterName}.{property.SourcePropertyName};"); + _addedMembers.Add(property); + + } + + if (otherProperties == null) return builder; + + foreach (var property in otherProperties) + { + if(_addedMembers.Contains(property)) continue; + + builder.WriteLine(property.MappedSourcePropertyTypeName is null + ? $"{property.Name} = {property.SourcePropertyName.ToCamelCase()};" + : ""); + _addedMembers.Add(property); + + + } } - foreach (var property in model.SourceFields) - { - if (property.isReadOnly && fromUpdate) continue; - - builder.WriteLine($"{property.Name} = {sourceClassParameterName}.{property.SourcePropertyName};"); - - } - - if (otherProperties == null) return builder; - - foreach (var property in otherProperties) - { - builder.WriteLine(property.MappedSourcePropertyTypeName is null - ? $"{property.Name} = {property.SourcePropertyName.ToCamelCase()};" - : ""); - - } + return builder; @@ -261,14 +296,19 @@ namespace MapTo.Extensions private static SourceBuilder GenerateUpdateMethod(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); - builder - .GenerateUpdaterMethodsXmlDocs(model, sourceClassParameterName) - .WriteLine($"public void Update({model.SourceType} {sourceClassParameterName})") - .WriteOpeningBracket() - .WriteAssignmentMethod(model, null, sourceClassParameterName, "context", true) - .WriteClosingBracket(); + foreach (var targetSourceType in model.MappedSourceTypes) + { + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + + builder + .GenerateUpdaterMethodsXmlDocs(model, sourceClassParameterName) + .WriteLine($"public void Update({targetSourceType.SourceType} {sourceClassParameterName})") + .WriteOpeningBracket() + .WriteAssignmentMethod(model, null, sourceClassParameterName, "context", true) + .WriteClosingBracket(); + } + return builder; } @@ -280,24 +320,37 @@ namespace MapTo.Extensions return builder; } - return builder - .WriteLine("/// ") - .WriteLine($"/// Updates and sets its participating properties") - .WriteLine($"/// using the property values from .") - .WriteLine("/// ") - .WriteLine($"/// The instance of to use as source."); + foreach (var targetSourceType in model.MappedSourceTypes) + { + builder + .WriteLine("/// ") + .WriteLine($"/// Updates and sets its participating properties") + .WriteLine($"/// using the property values from .") + .WriteLine("/// ") + .WriteLine($"/// The instance of to use as source."); + + } + + return builder; } private static SourceBuilder GenerateEnumerableJsonSourceTypeExtensionMethod(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); - return builder - .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") - .WriteLine($"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static string ToJson(this IEnumerable<{model.SourceType}{model.Options.NullableReferenceSyntax}> {sourceClassParameterName}List)") - .WriteOpeningBracket() - .WriteLine($"return {sourceClassParameterName} == null ? null : new {model.TypeIdentifierName}({sourceClassParameterName});") - .WriteClosingBracket(); + foreach (var targetSourceType in model.MappedSourceTypes) + { + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + + builder + .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") + .WriteLine($"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static string ToJson(this IEnumerable<{targetSourceType.SourceType}{model.Options.NullableReferenceSyntax}> {sourceClassParameterName}List)") + .WriteOpeningBracket() + .WriteLine($"return {sourceClassParameterName} == null ? null : new {model.TypeIdentifierName}({sourceClassParameterName});") + .WriteClosingBracket(); + } + + + return builder; } } } diff --git a/src/BlueWest.MapTo/Extensions/RoslynExtensions.cs b/src/BlueWest.MapTo/Extensions/RoslynExtensions.cs index 402996e..b38c6ff 100644 --- a/src/BlueWest.MapTo/Extensions/RoslynExtensions.cs +++ b/src/BlueWest.MapTo/Extensions/RoslynExtensions.cs @@ -33,11 +33,13 @@ namespace MapTo.Extensions public static AttributeSyntax? GetAttribute(this TypeDeclarationSyntax typeDeclarationSyntax, string attributeName) { - return typeDeclarationSyntax.AttributeLists - .SelectMany(al => al.Attributes) - .SingleOrDefault(a => - (a.Name as IdentifierNameSyntax)?.Identifier.ValueText == attributeName || - ((a.Name as QualifiedNameSyntax)?.Right as IdentifierNameSyntax)?.Identifier.ValueText == attributeName); + var attributeLists = typeDeclarationSyntax.AttributeLists; + var selection = attributeLists + .SelectMany(al => al.Attributes); + var result = selection + .FirstOrDefault(); + + return result; } public static bool HasAttribute(this ISymbol symbol, ITypeSymbol attributeSymbol) => @@ -86,7 +88,7 @@ namespace MapTo.Extensions public static IPropertySymbol? FindProperty(this IEnumerable properties, IPropertySymbol targetProperty) { - return properties.SingleOrDefault(p => + return properties.FirstOrDefault(p => p.Name == targetProperty.Name && (p.NullableAnnotation != NullableAnnotation.Annotated || p.NullableAnnotation == NullableAnnotation.Annotated && diff --git a/src/BlueWest.MapTo/MapToSyntaxReceiver.cs b/src/BlueWest.MapTo/MapToSyntaxReceiver.cs index 03c35ac..786f9ad 100644 --- a/src/BlueWest.MapTo/MapToSyntaxReceiver.cs +++ b/src/BlueWest.MapTo/MapToSyntaxReceiver.cs @@ -20,7 +20,7 @@ namespace MapTo var attributeSyntax = attributes .SelectMany(a => a.Attributes) - .SingleOrDefault(a => a.Name is + .FirstOrDefault(a => a.Name is IdentifierNameSyntax { Identifier: { ValueText: MapFromAttributeSource.AttributeName } } // For: [MapFrom] or QualifiedNameSyntax // For: [MapTo.MapFrom] diff --git a/src/BlueWest.MapTo/MappingContext.cs b/src/BlueWest.MapTo/MappingContext.cs index 74fe87d..e7b7fdd 100644 --- a/src/BlueWest.MapTo/MappingContext.cs +++ b/src/BlueWest.MapTo/MappingContext.cs @@ -1,7 +1,9 @@ using System; using System.Collections.Generic; using System.Collections.Immutable; +using System.Diagnostics; using System.Linq; +using System.Threading; using MapTo.Extensions; using MapTo.Sources; using Microsoft.CodeAnalysis; @@ -70,6 +72,8 @@ namespace MapTo public static MappingContext Create(Compilation compilation, SourceGenerationOptions sourceGenerationOptions, TypeDeclarationSyntax typeSyntax) { + //SpinWait.SpinUntil(() => Debugger.IsAttached); + MappingContext context = typeSyntax switch { StructDeclarationSyntax => new StructMappingContext(compilation, sourceGenerationOptions, typeSyntax), @@ -107,20 +111,20 @@ namespace MapTo var propertyName = property .GetAttribute(MapPropertyAttributeTypeSymbol) ?.NamedArguments - .SingleOrDefault(a => a.Key == MapPropertyAttributeSource.SourcePropertyNamePropertyName) + .FirstOrDefault(a => a.Key == MapPropertyAttributeSource.SourcePropertyNamePropertyName) .Value.Value as string ?? property.Name; - return sourceProperties.SingleOrDefault(p => p.Name == propertyName); + return sourceProperties.FirstOrDefault(p => p.Name == propertyName); } protected IFieldSymbol? FindSourceField(IEnumerable sourceProperties, ISymbol property) { var propertyName = property .GetAttribute(MapPropertyAttributeTypeSymbol) ?.NamedArguments - .SingleOrDefault(a => a.Key == MapPropertyAttributeSource.SourcePropertyNamePropertyName) + .FirstOrDefault(a => a.Key == MapPropertyAttributeSource.SourcePropertyNamePropertyName) .Value.Value as string ?? property.Name; - return sourceProperties.SingleOrDefault(p => p.Name == propertyName); + return sourceProperties.FirstOrDefault(p => p.Name == propertyName); } protected abstract ImmutableArray GetSourceMappedProperties(ITypeSymbol typeSymbol, ITypeSymbol sourceTypeSymbol, bool isInheritFromMappedBaseClass); @@ -131,23 +135,41 @@ namespace MapTo protected abstract ImmutableArray GetTypeMappedFields(ITypeSymbol typeSymbol, ITypeSymbol sourceTypeSymbol, bool isInheritFromMappedBaseClass); - protected INamedTypeSymbol? GetSourceTypeSymbol(TypeDeclarationSyntax typeDeclarationSyntax, SemanticModel? semanticModel = null) => - GetSourceTypeSymbol(typeDeclarationSyntax.GetAttribute(MapFromAttributeSource.AttributeName), semanticModel); + protected ImmutableArray GetSourceTypeSymbol(TypeDeclarationSyntax typeDeclarationSyntax, SemanticModel? semanticModel = null) + { + var attributeData = typeDeclarationSyntax.GetAttribute(MapFromAttributeSource.AttributeName); + var sourceSymbol = GetSourceTypeSymbol(attributeData, semanticModel); + return sourceSymbol; + } - protected INamedTypeSymbol? GetSourceTypeSymbol(SyntaxNode? attributeSyntax, SemanticModel? semanticModel = null) + // we need two possible InamedTypeSymbol + protected ImmutableArray GetSourceTypeSymbol(SyntaxNode? attributeSyntax, SemanticModel? semanticModel = null) { if (attributeSyntax is null) { - return null; + return new ImmutableArray(){}; } semanticModel ??= Compilation.GetSemanticModel(attributeSyntax.SyntaxTree); - var sourceTypeExpressionSyntax = attributeSyntax - .DescendantNodes() - .OfType() - .SingleOrDefault(); + var descendentNodes = attributeSyntax + .DescendantNodes(); - return sourceTypeExpressionSyntax is not null ? semanticModel.GetTypeInfo(sourceTypeExpressionSyntax.Type).Type as INamedTypeSymbol : null; + var sourceTypeExpressionSyntax = descendentNodes + .OfType() + .ToImmutableArray(); + + // cast + var resultList = new List(); + for (int i = 0; i < sourceTypeExpressionSyntax.Length; i++) + { + var sourceTypeExpression = sourceTypeExpressionSyntax[i]; + if (semanticModel.GetTypeInfo(sourceTypeExpression.Type).Type is INamedTypeSymbol namedTypeSymbol) + { + resultList.Add(namedTypeSymbol); + } + } + + return resultList.ToImmutableArray(); } protected bool IsTypeInheritFromMappedBaseClass(SemanticModel semanticModel) @@ -470,54 +492,68 @@ namespace MapTo return null; } - var sourceTypeSymbol = GetSourceTypeSymbol(TypeSyntax, semanticModel); - if (sourceTypeSymbol is null) + // We can have 2 sources... + + var sourceTypeSymbols = GetSourceTypeSymbol(TypeSyntax, semanticModel); + + + // lets pick one for now, and then think what to do with the second one + if (sourceTypeSymbols.IsDefaultOrEmpty) { AddDiagnostic(DiagnosticsFactory.MapFromAttributeNotFoundError(TypeSyntax.GetLocation())); return null; } - - _ignoredNamespaces.Add(sourceTypeSymbol.ContainingNamespace.ToDisplayParts().First()); - + + var typeIdentifierName = TypeSyntax.GetIdentifierName(); - var sourceTypeIdentifierName = sourceTypeSymbol.Name; var isTypeInheritFromMappedBaseClass = IsTypeInheritFromMappedBaseClass(semanticModel); - var isTypeUpdatable = IsTypeUpdatable(); - var hasJsonExtension = HasJsonExtension(); - var shouldGenerateSecondaryConstructor = ShouldGenerateSecondaryConstructor(semanticModel, sourceTypeSymbol); + var isTypeUpdatable = false; //IsTypeUpdatable(); + var hasJsonExtension = false; // HasJsonExtension(); + + List mappedSourceTypes = new List(); + + foreach (var sourceTypeSymbol in sourceTypeSymbols) + { + _ignoredNamespaces.Add(sourceTypeSymbol.ContainingNamespace.ToDisplayParts().First()); + var sourceTypeIdentifierName = sourceTypeSymbol.Name; + var shouldGenerateSecondaryConstructor = ShouldGenerateSecondaryConstructor(semanticModel, sourceTypeSymbol); + var mappedProperties = GetSourceMappedProperties(typeSymbol, sourceTypeSymbol, isTypeInheritFromMappedBaseClass); + var mappedFields = GetSourceMappedFields(typeSymbol, sourceTypeSymbol, isTypeInheritFromMappedBaseClass); + AddUsingIfRequired(mappedProperties.Any(p => p.IsEnumerable), "System.Linq"); + var allProperties = GetTypeMappedProperties(sourceTypeSymbol, typeSymbol , isTypeInheritFromMappedBaseClass); + var allFields = GetTypeMappedFields(sourceTypeSymbol, typeSymbol, isTypeInheritFromMappedBaseClass); + + mappedSourceTypes.Add(new MappedSourceType( + sourceTypeSymbol.ContainingNamespace.ToDisplayString(), + sourceTypeIdentifierName, + sourceTypeSymbol.ToDisplayString(), + mappedProperties, mappedFields, allProperties, allFields, shouldGenerateSecondaryConstructor)); + } + + //var sourceTypeSymbol = sourceTypeSymbols[0]; + + // Pick first one to avoid errors. TODO: Make possible to use different source types + + - var mappedProperties = GetSourceMappedProperties(typeSymbol, sourceTypeSymbol, isTypeInheritFromMappedBaseClass); - var mappedFields = GetSourceMappedFields(typeSymbol, sourceTypeSymbol, isTypeInheritFromMappedBaseClass); /*if (!mappedProperties.Any()) { AddDiagnostic(DiagnosticsFactory.NoMatchingPropertyFoundError(TypeSyntax.GetLocation(), typeSymbol, sourceTypeSymbol)); return null; }*/ - - AddUsingIfRequired(mappedProperties.Any(p => p.IsEnumerable), "System.Linq"); - - var allProperties = GetTypeMappedProperties(sourceTypeSymbol, typeSymbol , isTypeInheritFromMappedBaseClass); - var allFields = GetTypeMappedFields(sourceTypeSymbol, typeSymbol, isTypeInheritFromMappedBaseClass); - + return new MappingModel( SourceGenerationOptions, TypeSyntax.GetNamespace(), TypeSyntax.Modifiers, TypeSyntax.Keyword.Text, typeIdentifierName, - sourceTypeSymbol.ContainingNamespace.ToDisplayString(), - sourceTypeIdentifierName, - sourceTypeSymbol.ToDisplayString(), isTypeUpdatable, hasJsonExtension, - mappedProperties, - allProperties, - mappedFields, - allFields, + mappedSourceTypes.ToImmutableArray(), isTypeInheritFromMappedBaseClass, - Usings, - shouldGenerateSecondaryConstructor); + Usings); } @@ -530,7 +566,7 @@ namespace MapTo } return converterTypeSymbol.AllInterfaces - .SingleOrDefault(i => + .FirstOrDefault(i => i.TypeArguments.Length == 2 && SymbolEqualityComparer.Default.Equals(i.ConstructedFrom, TypeConverterInterfaceTypeSymbol) && SymbolEqualityComparer.Default.Equals(sourceProperty.Type, i.TypeArguments[0]) && @@ -544,7 +580,7 @@ namespace MapTo } return converterTypeSymbol.AllInterfaces - .SingleOrDefault(i => + .FirstOrDefault(i => i.TypeArguments.Length == 2 && SymbolEqualityComparer.Default.Equals(i.ConstructedFrom, TypeConverterInterfaceTypeSymbol) && SymbolEqualityComparer.Default.Equals(sourceProperty.Type, i.TypeArguments[0]) && @@ -555,7 +591,7 @@ namespace MapTo { var constructorSyntax = TypeSyntax.DescendantNodes() .OfType() - .SingleOrDefault(c => + .FirstOrDefault(c => c.ParameterList.Parameters.Count == 1 && SymbolEqualityComparer.Default.Equals(semanticModel.GetTypeInfo(c.ParameterList.Parameters.Single().Type!).ConvertedType, sourceTypeSymbol)); diff --git a/src/BlueWest.MapTo/Models.cs b/src/BlueWest.MapTo/Models.cs index e10dcbf..8c8869b 100644 --- a/src/BlueWest.MapTo/Models.cs +++ b/src/BlueWest.MapTo/Models.cs @@ -39,29 +39,35 @@ namespace MapTo public bool IsEnumerable => EnumerableTypeArgument is not null; } - internal record MappingModel ( - SourceGenerationOptions Options, - string? Namespace, - SyntaxTokenList Modifiers, - string Type, - string TypeIdentifierName, + internal record MappedSourceType + ( string SourceNamespace, string SourceTypeIdentifierName, string SourceTypeFullName, - bool IsTypeUpdatable, - bool IsJsonExtension, ImmutableArray SourceProperties, - ImmutableArray TypeProperties, ImmutableArray SourceFields, + ImmutableArray TypeProperties, ImmutableArray TypeFields, - bool HasMappedBaseClass, - ImmutableArray Usings, bool GenerateSecondaryConstructor ) { public string SourceType => SourceTypeFullName; } + + internal record MappingModel( + SourceGenerationOptions Options, + string? Namespace, + SyntaxTokenList Modifiers, + string Type, + string TypeIdentifierName, + bool IsTypeUpdatable, + bool IsJsonExtension, + ImmutableArray MappedSourceTypes, + bool HasMappedBaseClass, + ImmutableArray Usings + ); + internal record SourceGenerationOptions( AccessModifier ConstructorAccessModifier, AccessModifier GeneratedMethodsAccessModifier, diff --git a/src/BlueWest.MapTo/Sources/MapFromAttributeSource.cs b/src/BlueWest.MapTo/Sources/MapFromAttributeSource.cs index 70c48ef..e944025 100644 --- a/src/BlueWest.MapTo/Sources/MapFromAttributeSource.cs +++ b/src/BlueWest.MapTo/Sources/MapFromAttributeSource.cs @@ -42,6 +42,13 @@ namespace MapTo.Sources builder .WriteLine($"public {AttributeName}Attribute(Type sourceType)") .WriteOpeningBracket() + .WriteLine("SourceType = new [] { sourceType };") + .WriteClosingBracket() + .WriteLine(); + + builder + .WriteLine($"public {AttributeName}Attribute(Type[] sourceType)") + .WriteOpeningBracket() .WriteLine("SourceType = sourceType;") .WriteClosingBracket() .WriteLine(); @@ -55,7 +62,7 @@ namespace MapTo.Sources } builder - .WriteLine("public Type SourceType { get; }") + .WriteLine("public Type[] SourceType { get; }") .WriteClosingBracket() // class .WriteClosingBracket(); // namespace diff --git a/src/BlueWest.MapTo/Sources/MapRecordSource.cs b/src/BlueWest.MapTo/Sources/MapRecordSource.cs index baa48b5..8699d19 100644 --- a/src/BlueWest.MapTo/Sources/MapRecordSource.cs +++ b/src/BlueWest.MapTo/Sources/MapRecordSource.cs @@ -22,14 +22,19 @@ namespace MapTo.Sources .WriteLine($"partial record {model.TypeIdentifierName}") .WriteOpeningBracket(); - // Class body - if (model.GenerateSecondaryConstructor) + foreach (var targetSourceType in model.MappedSourceTypes) { - builder - .GenerateSecondaryConstructor(model) - .WriteLine(); + if (targetSourceType.GenerateSecondaryConstructor) + { + builder + .GenerateSecondaryConstructor(model) + .WriteLine(); + } } + // Class body + + builder .GeneratePrivateConstructor(model) @@ -52,99 +57,119 @@ namespace MapTo.Sources private static SourceBuilder GenerateSecondaryConstructor(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); + // grab first data from array - if (model.Options.GenerateXmlDocument) + foreach (var targetSourceType in model.MappedSourceTypes) { - builder - .WriteLine("/// ") - .WriteLine($"/// Initializes a new instance of the class") - .WriteLine($"/// using the property values from the specified .") - .WriteLine("/// ") - .WriteLine($"/// {sourceClassParameterName} is null"); + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + if (model.Options.GenerateXmlDocument) + { + builder + .WriteLine("/// ") + .WriteLine($"/// Initializes a new instance of the class") + .WriteLine($"/// using the property values from the specified .") + .WriteLine("/// ") + .WriteLine($"/// {sourceClassParameterName} is null"); + } + builder .WriteLine($"{model.Options.ConstructorAccessModifier.ToLowercaseString()} {model.TypeIdentifierName}({targetSourceType.SourceType} {sourceClassParameterName})") + .WriteLine($" : this(new {MappingContextSource.ClassName}(), {sourceClassParameterName}) {{ }}"); } - return builder - .WriteLine($"{model.Options.ConstructorAccessModifier.ToLowercaseString()} {model.TypeIdentifierName}({model.SourceType} {sourceClassParameterName})") - .WriteLine($" : this(new {MappingContextSource.ClassName}(), {sourceClassParameterName}) {{ }}"); + + + return builder; + } private static SourceBuilder GeneratePrivateConstructor(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); const string mappingContextParameterName = "context"; - builder - .WriteLine($"private protected {model.TypeIdentifierName}({MappingContextSource.ClassName} {mappingContextParameterName}, {model.SourceType} {sourceClassParameterName})") - .Indent() - .Write(": this("). - - WriteProperties(model, sourceClassParameterName, mappingContextParameterName) - - .WriteLine(")") - .Unindent() - .WriteOpeningBracket() - .WriteLine($"if ({mappingContextParameterName} == null) throw new ArgumentNullException(nameof({mappingContextParameterName}));") - .WriteLine($"if ({sourceClassParameterName} == null) throw new ArgumentNullException(nameof({sourceClassParameterName}));") - .WriteLine() - .WriteLine($"{mappingContextParameterName}.{MappingContextSource.RegisterMethodName}({sourceClassParameterName}, this);"); - + foreach (var targetSourceType in model.MappedSourceTypes) + { + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + builder + .WriteLine( + $"private protected {model.TypeIdentifierName}({MappingContextSource.ClassName} {mappingContextParameterName}, {targetSourceType.SourceType} {sourceClassParameterName})") + .Indent() + .Write(": this(").WriteProperties(model, sourceClassParameterName, mappingContextParameterName) + .WriteLine(")") + .Unindent() + .WriteOpeningBracket() + .WriteLine($"if ({mappingContextParameterName} == null) throw new ArgumentNullException(nameof({mappingContextParameterName}));") + .WriteLine($"if ({sourceClassParameterName} == null) throw new ArgumentNullException(nameof({sourceClassParameterName}));") + .WriteLine() + .WriteLine($"{mappingContextParameterName}.{MappingContextSource.RegisterMethodName}({sourceClassParameterName}, this);") + .WriteClosingBracket(); + } // End constructor declaration - return builder.WriteClosingBracket(); + return builder; } private static SourceBuilder WriteProperties(this SourceBuilder builder, MappingModel model, string sourceClassParameterName, string mappingContextParameterName) { - for (var i = 0; i < model.SourceProperties.Length; i++) + + foreach (var targetSourceType in model.MappedSourceTypes) { - var property = model.SourceProperties[i]; - if (property.TypeConverter is null) + for (var i = 0; i < targetSourceType.SourceProperties.Length; i++) { - if (property.IsEnumerable) + var property = targetSourceType.SourceProperties[i]; + if (property.TypeConverter is null) { - builder.Write( - $"{property.Name}: {sourceClassParameterName}.{property.SourcePropertyName}.Select({mappingContextParameterName}.{MappingContextSource.MapMethodName}<{property.MappedSourcePropertyTypeName}, {property.EnumerableTypeArgument}>).ToList()"); + if (property.IsEnumerable) + { + builder.Write( + $"{property.Name}: {sourceClassParameterName}.{property.SourcePropertyName}.Select({mappingContextParameterName}.{MappingContextSource.MapMethodName}<{property.MappedSourcePropertyTypeName}, {property.EnumerableTypeArgument}>).ToList()"); + } + else + { + builder.Write(property.MappedSourcePropertyTypeName is null + ? $"{property.Name}: {sourceClassParameterName}.{property.SourcePropertyName}" + : $"{property.Name}: {mappingContextParameterName}.{MappingContextSource.MapMethodName}<{property.MappedSourcePropertyTypeName}, {property.Type}>({sourceClassParameterName}.{property.SourcePropertyName})"); + } } else { - builder.Write(property.MappedSourcePropertyTypeName is null - ? $"{property.Name}: {sourceClassParameterName}.{property.SourcePropertyName}" - : $"{property.Name}: {mappingContextParameterName}.{MappingContextSource.MapMethodName}<{property.MappedSourcePropertyTypeName}, {property.Type}>({sourceClassParameterName}.{property.SourcePropertyName})"); + var parameters = property.TypeConverterParameters.IsEmpty + ? "null" + : $"new object[] {{ {string.Join(", ", property.TypeConverterParameters)} }}"; + + builder.Write( + $"{property.Name}: new {property.TypeConverter}().Convert({sourceClassParameterName}.{property.SourcePropertyName}, {parameters})"); + } + + if (i < targetSourceType.SourceProperties.Length - 1) + { + builder.Write(", "); } } - else - { - var parameters = property.TypeConverterParameters.IsEmpty - ? "null" - : $"new object[] {{ {string.Join(", ", property.TypeConverterParameters)} }}"; - - builder.Write( - $"{property.Name}: new {property.TypeConverter}().Convert({sourceClassParameterName}.{property.SourcePropertyName}, {parameters})"); - } - - if (i < model.SourceProperties.Length - 1) - { - builder.Write(", "); - } } + + return builder; } private static SourceBuilder GenerateFactoryMethod(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); + foreach (var targetSourceType in model.MappedSourceTypes) + { + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); - return builder - .GenerateConvertorMethodsXmlDocs(model, sourceClassParameterName) - .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") - .WriteLine( - $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static {model.TypeIdentifierName}{model.Options.NullableReferenceSyntax} From({model.SourceType}{model.Options.NullableReferenceSyntax} {sourceClassParameterName})") - .WriteOpeningBracket() - .WriteLine( - $"return {sourceClassParameterName} == null ? null : {MappingContextSource.ClassName}.{MappingContextSource.FactoryMethodName}<{model.SourceType}, {model.TypeIdentifierName}>({sourceClassParameterName});") - .WriteClosingBracket(); + builder + .GenerateConvertorMethodsXmlDocs(model, sourceClassParameterName) + .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") + .WriteLine( + $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static {model.TypeIdentifierName}{model.Options.NullableReferenceSyntax} From({targetSourceType.SourceType}{model.Options.NullableReferenceSyntax} {sourceClassParameterName})") + .WriteOpeningBracket() + .WriteLine( + $"return {sourceClassParameterName} == null ? null : {MappingContextSource.ClassName}.{MappingContextSource.FactoryMethodName}<{targetSourceType.SourceType}, {model.TypeIdentifierName}>({sourceClassParameterName});") + .WriteClosingBracket(); + } + + + return builder; } private static SourceBuilder GenerateConvertorMethodsXmlDocs(this SourceBuilder builder, MappingModel model, string sourceClassParameterName) @@ -154,38 +179,57 @@ namespace MapTo.Sources return builder; } - return builder - .WriteLine("/// ") - .WriteLine($"/// Creates a new instance of and sets its participating properties") - .WriteLine($"/// using the property values from .") - .WriteLine("/// ") - .WriteLine($"/// The instance of to use as source.") - .WriteLine( - $"/// A new instance of -or- null if is null."); + foreach (var targetSourceType in model.MappedSourceTypes) + { + builder + .WriteLine("/// ") + .WriteLine($"/// Creates a new instance of and sets its participating properties") + .WriteLine($"/// using the property values from .") + .WriteLine("/// ") + .WriteLine($"/// The instance of to use as source.") + .WriteLine( + $"/// A new instance of -or- null if is null."); + } + + return builder; + } private static SourceBuilder GenerateSourceTypeExtensionClass(this SourceBuilder builder, MappingModel model) { - return builder - .WriteLine( - $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static partial class {model.SourceTypeIdentifierName}To{model.TypeIdentifierName}Extensions") - .WriteOpeningBracket() - .GenerateSourceTypeExtensionMethod(model) - .WriteClosingBracket(); + foreach (var targetSourceType in model.MappedSourceTypes) + { + builder + .WriteLine( + $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static partial class {targetSourceType.SourceTypeIdentifierName}To{model.TypeIdentifierName}Extensions") + .WriteOpeningBracket() + .GenerateSourceTypeExtensionMethod(model) + .WriteClosingBracket(); + } + + return builder; } private static SourceBuilder GenerateSourceTypeExtensionMethod(this SourceBuilder builder, MappingModel model) { - var sourceClassParameterName = model.SourceTypeIdentifierName.ToCamelCase(); - return builder - .GenerateConvertorMethodsXmlDocs(model, sourceClassParameterName) - .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") - .WriteLine( - $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static {model.TypeIdentifierName}{model.Options.NullableReferenceSyntax} To{model.TypeIdentifierName}(this {model.SourceType}{model.Options.NullableReferenceSyntax} {sourceClassParameterName})") - .WriteOpeningBracket() - .WriteLine($"return {sourceClassParameterName} == null ? null : new {model.TypeIdentifierName}({sourceClassParameterName});") - .WriteClosingBracket(); + foreach (var targetSourceType in model.MappedSourceTypes) + { + var sourceClassParameterName = targetSourceType.SourceTypeIdentifierName.ToCamelCase(); + + builder + .GenerateConvertorMethodsXmlDocs(model, sourceClassParameterName) + .WriteLineIf(model.Options.SupportNullableStaticAnalysis, $"[return: NotNullIfNotNull(\"{sourceClassParameterName}\")]") + .WriteLine( + $"{model.Options.GeneratedMethodsAccessModifier.ToLowercaseString()} static {model.TypeIdentifierName}{model.Options.NullableReferenceSyntax} To{model.TypeIdentifierName}(this {targetSourceType.SourceType}{model.Options.NullableReferenceSyntax} {sourceClassParameterName})") + .WriteOpeningBracket() + .WriteLine($"return {sourceClassParameterName} == null ? null : new {model.TypeIdentifierName}({sourceClassParameterName});") + .WriteClosingBracket(); + + } + + + return builder; } } } \ No newline at end of file diff --git a/test/MapTo.Tests/MapTo.Tests.csproj b/test/BlueWest.MapTo.Tests/BlueWest.MapTo.Tests.csproj similarity index 70% rename from test/MapTo.Tests/MapTo.Tests.csproj rename to test/BlueWest.MapTo.Tests/BlueWest.MapTo.Tests.csproj index c8f686b..ec7dd15 100644 --- a/test/MapTo.Tests/MapTo.Tests.csproj +++ b/test/BlueWest.MapTo.Tests/BlueWest.MapTo.Tests.csproj @@ -1,37 +1,42 @@ - net5.0 + net6.0 false enable + + MapTo.Tests - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + + + 3.5.109 + - + - - + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all - + diff --git a/test/MapTo.Tests/Common.cs b/test/BlueWest.MapTo.Tests/Common.cs similarity index 100% rename from test/MapTo.Tests/Common.cs rename to test/BlueWest.MapTo.Tests/Common.cs diff --git a/test/MapTo.Tests/CompilerServices/IsExternalInit.cs b/test/BlueWest.MapTo.Tests/CompilerServices/IsExternalInit.cs similarity index 100% rename from test/MapTo.Tests/CompilerServices/IsExternalInit.cs rename to test/BlueWest.MapTo.Tests/CompilerServices/IsExternalInit.cs diff --git a/test/MapTo.Tests/Extensions/RoslynExtensions.cs b/test/BlueWest.MapTo.Tests/Extensions/RoslynExtensions.cs similarity index 91% rename from test/MapTo.Tests/Extensions/RoslynExtensions.cs rename to test/BlueWest.MapTo.Tests/Extensions/RoslynExtensions.cs index cddafeb..b9f81d4 100644 --- a/test/MapTo.Tests/Extensions/RoslynExtensions.cs +++ b/test/BlueWest.MapTo.Tests/Extensions/RoslynExtensions.cs @@ -8,7 +8,7 @@ namespace MapTo.Tests.Extensions internal static class RoslynExtensions { internal static SyntaxTree? GetGeneratedSyntaxTree(this Compilation compilation, string className) => - compilation.SyntaxTrees.SingleOrDefault(s => s.FilePath.EndsWith($"{className}.g.cs")); + compilation.SyntaxTrees.FirstOrDefault(s => s.FilePath.EndsWith($"{className}.g.cs")); internal static string PrintSyntaxTree(this Compilation compilation) { diff --git a/test/MapTo.Tests/Extensions/ShouldlyExtensions.cs b/test/BlueWest.MapTo.Tests/Extensions/ShouldlyExtensions.cs similarity index 91% rename from test/MapTo.Tests/Extensions/ShouldlyExtensions.cs rename to test/BlueWest.MapTo.Tests/Extensions/ShouldlyExtensions.cs index 2b9dd87..5aeee7c 100644 --- a/test/MapTo.Tests/Extensions/ShouldlyExtensions.cs +++ b/test/BlueWest.MapTo.Tests/Extensions/ShouldlyExtensions.cs @@ -15,7 +15,7 @@ namespace MapTo.Tests.Extensions { var syntax = syntaxTree .Select(s => s.ToString().Trim()) - .SingleOrDefault(s => s.Contains(typeName)); + .FirstOrDefault(s => s.Contains(typeName)); syntax.ShouldNotBeNullOrWhiteSpace(); syntax.ShouldBe(expectedSource, customMessage); @@ -25,7 +25,7 @@ namespace MapTo.Tests.Extensions { var syntax = syntaxTree .Select(s => s.ToString().Trim()) - .SingleOrDefault(s => s.Contains(typeName)); + .FirstOrDefault(s => s.Contains(typeName)); syntax.ShouldNotBeNullOrWhiteSpace(); syntax.ShouldContainWithoutWhitespace(expectedSource, customMessage); @@ -68,7 +68,7 @@ namespace MapTo.Tests.Extensions internal static void ShouldNotBeSuccessful(this ImmutableArray diagnostics, Diagnostic expectedError) { - var actualDiagnostics = diagnostics.SingleOrDefault(d => d.Id == expectedError.Id); + var actualDiagnostics = diagnostics.FirstOrDefault(d => d.Id == expectedError.Id); var compilationDiagnostics = actualDiagnostics == null ? diagnostics : diagnostics.Except(new[] { actualDiagnostics }); compilationDiagnostics.ShouldBeSuccessful(); diff --git a/test/MapTo.Tests/IgnorePropertyAttributeTests.cs b/test/BlueWest.MapTo.Tests/IgnorePropertyAttributeTests.cs similarity index 96% rename from test/MapTo.Tests/IgnorePropertyAttributeTests.cs rename to test/BlueWest.MapTo.Tests/IgnorePropertyAttributeTests.cs index cd20bef..cbbad37 100644 --- a/test/MapTo.Tests/IgnorePropertyAttributeTests.cs +++ b/test/BlueWest.MapTo.Tests/IgnorePropertyAttributeTests.cs @@ -11,6 +11,7 @@ namespace MapTo.Tests { public class IgnorePropertyAttributeTests { + /* [Fact] public void VerifyIgnorePropertyAttribute() { @@ -34,6 +35,7 @@ namespace MapTo diagnostics.ShouldBeSuccessful(); compilation.SyntaxTrees.ShouldContainSource(IgnorePropertyAttributeSource.AttributeName, expectedAttribute); } + */ [Fact] public void When_IgnorePropertyAttributeIsSpecified_Should_NotGenerateMappingsForThatProperty() diff --git a/test/MapTo.Tests/Infrastructure/CSharpGenerator.cs b/test/BlueWest.MapTo.Tests/Infrastructure/CSharpGenerator.cs similarity index 100% rename from test/MapTo.Tests/Infrastructure/CSharpGenerator.cs rename to test/BlueWest.MapTo.Tests/Infrastructure/CSharpGenerator.cs diff --git a/test/MapTo.Tests/Infrastructure/TestAnalyzerConfigOptions.cs b/test/BlueWest.MapTo.Tests/Infrastructure/TestAnalyzerConfigOptions.cs similarity index 100% rename from test/MapTo.Tests/Infrastructure/TestAnalyzerConfigOptions.cs rename to test/BlueWest.MapTo.Tests/Infrastructure/TestAnalyzerConfigOptions.cs diff --git a/test/MapTo.Tests/Infrastructure/TestAnalyzerConfigOptionsProvider.cs b/test/BlueWest.MapTo.Tests/Infrastructure/TestAnalyzerConfigOptionsProvider.cs similarity index 100% rename from test/MapTo.Tests/Infrastructure/TestAnalyzerConfigOptionsProvider.cs rename to test/BlueWest.MapTo.Tests/Infrastructure/TestAnalyzerConfigOptionsProvider.cs diff --git a/test/MapTo.Tests/MapPropertyTests.cs b/test/BlueWest.MapTo.Tests/MapPropertyTests.cs similarity index 100% rename from test/MapTo.Tests/MapPropertyTests.cs rename to test/BlueWest.MapTo.Tests/MapPropertyTests.cs diff --git a/test/MapTo.Tests/MapToTests.cs b/test/BlueWest.MapTo.Tests/MapToTests.cs similarity index 96% rename from test/MapTo.Tests/MapToTests.cs rename to test/BlueWest.MapTo.Tests/MapToTests.cs index bab362b..3ad3fe9 100644 --- a/test/MapTo.Tests/MapToTests.cs +++ b/test/BlueWest.MapTo.Tests/MapToTests.cs @@ -234,7 +234,7 @@ namespace Test const string source = ""; var expectedTypes = new[] { - IgnorePropertyAttributeSource.AttributeName, + //IgnorePropertyAttributeSource.AttributeName, MapFromAttributeSource.AttributeName, ITypeConverterSource.InterfaceName, MapPropertyAttributeSource.AttributeName diff --git a/test/MapTo.Tests/MapTypeConverterTests.cs b/test/BlueWest.MapTo.Tests/MapTypeConverterTests.cs similarity index 100% rename from test/MapTo.Tests/MapTypeConverterTests.cs rename to test/BlueWest.MapTo.Tests/MapTypeConverterTests.cs diff --git a/test/MapTo.Tests/MappedClassesTests.cs b/test/BlueWest.MapTo.Tests/MappedClassesTests.cs similarity index 95% rename from test/MapTo.Tests/MappedClassesTests.cs rename to test/BlueWest.MapTo.Tests/MappedClassesTests.cs index 5b38ef5..c89ce35 100644 --- a/test/MapTo.Tests/MappedClassesTests.cs +++ b/test/BlueWest.MapTo.Tests/MappedClassesTests.cs @@ -186,7 +186,7 @@ namespace SaleModel diagnostics.ShouldBeSuccessful(); } - public static IEnumerable SameSourceAndDestinationTypeNameData => new List + public static IEnumerable SameSourceAndDestinationTypeNameData => new List { new object[] { diff --git a/test/MapTo.Tests/MappingContextTests.cs b/test/BlueWest.MapTo.Tests/MappingContextTests.cs similarity index 100% rename from test/MapTo.Tests/MappingContextTests.cs rename to test/BlueWest.MapTo.Tests/MappingContextTests.cs diff --git a/test/MapTo.Integration.Tests/MapTo.Integration.Tests.csproj b/test/MapTo.Integration.Tests/MapTo.Integration.Tests.csproj index 57b5ca6..0cf37be 100644 --- a/test/MapTo.Integration.Tests/MapTo.Integration.Tests.csproj +++ b/test/MapTo.Integration.Tests/MapTo.Integration.Tests.csproj @@ -6,7 +6,7 @@ - + diff --git a/test/TestConsoleApp/TestConsoleApp.csproj b/test/TestConsoleApp/TestConsoleApp.csproj index 2ab23e7..814b5e3 100644 --- a/test/TestConsoleApp/TestConsoleApp.csproj +++ b/test/TestConsoleApp/TestConsoleApp.csproj @@ -8,10 +8,10 @@ - + - + Internal