Update filename for generated interface files + set DevelopmentDependency to true for the project (#26)

* Update filename for generated interface files

* .

* .

* <DevelopmentDependency>true</DevelopmentDependency>
This commit is contained in:
Stef Heyenrath
2021-08-10 20:33:34 +02:00
committed by GitHub
parent cec093775c
commit 00cd67f355
11 changed files with 383 additions and 7 deletions
@@ -0,0 +1,52 @@
//----------------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//----------------------------------------------------------------------------------------
#nullable enable
using System;
namespace ProxyInterfaceSourceGeneratorTests.DTO
{
public partial interface IPerson
{
string Name { get; set; }
string? StringNullable { get; set; }
long? NullableLong { get; }
object @object { get; set; }
void Void();
string HelloWorld(string name);
void WithParams(params string[] values);
string Add(string s, string @string);
int DefaultValue(int x = 100);
void In_Out_Ref1(in int a, out int b, ref int c);
bool Generic2<T1, T2>(int x, T1 t1, T2 t2) where T1 : struct where T2 : class, new();
System.Threading.Tasks.Task Method1Async();
System.Threading.Tasks.Task<int> Method2Async();
System.Threading.Tasks.Task<string?> Method3Async();
}
}
#nullable disable
@@ -0,0 +1,113 @@
//----------------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//----------------------------------------------------------------------------------------
#nullable enable
using System;
using AutoMapper;
namespace ProxyInterfaceSourceGeneratorTests.DTO
{
public class PersonProxy : IPerson
{
public ProxyInterfaceSourceGeneratorTests.DTO.Person _Instance { get; }
public string Name { get => _Instance.Name; set => _Instance.Name = value; }
public string? StringNullable { get => _Instance.StringNullable; set => _Instance.StringNullable = value; }
public long? NullableLong { get => _Instance.NullableLong; }
public object @object { get => _Instance.@object; set => _Instance.@object = value; }
public void Void()
{
_Instance.Void();
}
public string HelloWorld(string name)
{
string name_ = name;
var result_15289640 = _Instance.HelloWorld(name_);
return result_15289640;
}
public void WithParams(params string[] values)
{
string[] values_ = values;
_Instance.WithParams(values_);
}
public string Add(string s, string @string)
{
string s_ = s;
string @string_ = @string;
var result_15289640 = _Instance.Add(s_, @string_);
return result_15289640;
}
public int DefaultValue(int x = 100)
{
int x_ = x;
var result_54302544 = _Instance.DefaultValue(x_);
return result_54302544;
}
public void In_Out_Ref1(in int a, out int b, ref int c)
{
int a_ = a;
int b_;
int c_ = c;
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
b = b_;
}
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2) where T1 : struct where T2 : class, new()
{
int x_ = x;
T1 t1_ = t1;
T2 t2_ = t2;
var result_40004473 = _Instance.Generic2<T1, T2>(x_, t1_, t2_);
return result_40004473;
}
public System.Threading.Tasks.Task Method1Async()
{
var result_50153955 = _Instance.Method1Async();
return result_50153955;
}
public System.Threading.Tasks.Task<int> Method2Async()
{
var result_1151242754 = _Instance.Method2Async();
return result_1151242754;
}
public System.Threading.Tasks.Task<string?> Method3Async()
{
var result_1190255658 = _Instance.Method3Async();
return result_1190255658;
}
public PersonProxy(ProxyInterfaceSourceGeneratorTests.DTO.Person instance)
{
_Instance = instance;
}
}
}
#nullable disable
@@ -0,0 +1,67 @@
using System.IO;
using CSharp.SourceGenerators.Extensions;
using CSharp.SourceGenerators.Extensions.Models;
using FluentAssertions;
using ProxyInterfaceSourceGenerator;
using Xunit;
namespace FluentBuilderGeneratorTests
{
public class ProxyInterfaceSourceGeneratorTest
{
private readonly ProxyInterfaceCodeGenerator _sut;
public ProxyInterfaceSourceGeneratorTest()
{
_sut = new ProxyInterfaceCodeGenerator();
}
[Fact]
public void GenerateFiles_ForSingleClass_Should_GenerateCorrectFiles()
{
// Arrange
var attributeFilename = "ProxyInterfaceGenerator.ProxyAttribute.g.cs";
var interfaceFilename = "ProxyInterfaceSourceGeneratorTests.DTO.IPerson.g.cs";
var proxyClassFilename = "ProxyInterfaceSourceGeneratorTests.DTO.PersonProxy.g.cs";
var path = "./Source/IPerson.cs";
var sourceFile = new SourceFile
{
Path = path,
Text = File.ReadAllText(path),
AttributeToAddToInterface = new ExtraAttribute
{
Name = "ProxyInterfaceGenerator.Proxy",
ArgumentList = "typeof(ProxyInterfaceSourceGeneratorTests.DTO.Person)"
}
};
// Act
var result = _sut.Execute(new[] { sourceFile });
// Assert
result.Valid.Should().BeTrue();
result.Files.Should().HaveCount(3);
// Assert interface
var @attribute = result.Files[0].SyntaxTree;
@attribute.FilePath.Should().EndWith(attributeFilename);
// Assert interface
var @interface = result.Files[1].SyntaxTree;
@interface.FilePath.Should().EndWith(interfaceFilename);
var interfaceCode = @interface.ToString();
File.WriteAllText($"../../../Destination/{interfaceFilename}", interfaceCode);
interfaceCode.Should().NotBeNullOrEmpty().And.Be(File.ReadAllText($"../../../Destination/{interfaceFilename}"));
// Assert Proxy
var proxyClass = result.Files[2].SyntaxTree;
proxyClass.FilePath.Should().EndWith(proxyClassFilename);
var proxyCode = proxyClass.ToString();
File.WriteAllText($"../../../Destination/{proxyClassFilename}", proxyCode);
proxyCode.Should().NotBeNullOrEmpty().And.Be(File.ReadAllText($"../../../Destination/{proxyClassFilename}"));
}
}
}
@@ -0,0 +1,53 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Destination\ProxyInterfaceSourceGeneratorTests.DTO.IPerson.g.cs" />
<Compile Remove="Destination\ProxyInterfaceSourceGeneratorTests.DTO.PersonProxy.g.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ProxyInterfaceSourceGenerator\ProxyInterfaceSourceGenerator.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CSharp.SourceGenerators.Extensions" Version="0.0.5" />
<!--<ProjectReference Include="..\..\..\FluentBuilder\src-extensions\CSharp.SourceGenerators.Extensions\CSharp.SourceGenerators.Extensions.csproj" />-->
</ItemGroup>
<ItemGroup>
<Compile Update="Source\IPerson.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Compile>
<Compile Update="Source\Person.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="Destination\ProxyInterfaceSourceGeneratorTests.DTO.IPerson.g.cs" />
<None Include="Destination\ProxyInterfaceSourceGeneratorTests.DTO.PersonProxy.g.cs" />
</ItemGroup>
</Project>
@@ -0,0 +1,6 @@
namespace ProxyInterfaceSourceGeneratorTests.DTO
{
public partial interface IPerson
{
}
}
@@ -0,0 +1,65 @@
using System.Threading.Tasks;
namespace ProxyInterfaceSourceGeneratorTests.DTO
{
public class Person
{
public string Name { get; set; }
public string? StringNullable { get; set; }
public long? NullableLong { get; }
public object @object { get; set; }
public void Void()
{
}
public string HelloWorld(string name)
{
return $"Hello {name} !";
}
public void WithParams(params string[] values)
{
}
public string Add(string s, string @string)
{
return s + @string;
}
public int DefaultValue(int x = 100)
{
return x + 1;
}
public void In_Out_Ref1(in int a, out int b, ref int c)
{
b = 1;
}
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2)
where T1 : struct
where T2 : class, new()
{
return true;
}
public Task Method1Async()
{
return Task.CompletedTask;
}
public Task<int> Method2Async()
{
return Task.FromResult(1);
}
public Task<string?> Method3Async()
{
return Task.FromResult((string?)"");
}
}
}