Files
ProxyGenerator/tests/ProxyInterfaceSourceGeneratorTests/InheritedInterfaceTests.cs
T
David 6b6e5d04a0 Do not redefine interfaces. (#67)
* Do not redefine interfaces.

* Improve code style, readability and performance after initial code review

* Implemented unit tests for the interface inheritance

* Cleaned up unit tests.

* Completely remove output helper.
2024-04-23 10:52:52 +02:00

164 lines
5.9 KiB
C#

using CSharp.SourceGenerators.Extensions;
using CSharp.SourceGenerators.Extensions.Models;
using FluentAssertions;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using ProxyInterfaceSourceGenerator;
using ProxyInterfaceSourceGeneratorTests.Source.Disposable;
using Xunit.Abstractions;
namespace ProxyInterfaceSourceGeneratorTests;
public class InheritedInterfaceTests
{
private const string Namespace = "ProxyInterfaceSourceGeneratorTests.Source.Disposable";
private const string OutputPath = "../../../Destination/Disposable/";
private readonly ProxyInterfaceCodeGenerator _sut;
public InheritedInterfaceTests()
{
if (!Directory.Exists(OutputPath))
{
Directory.CreateDirectory(OutputPath);
}
_sut = new ProxyInterfaceCodeGenerator();
}
[Theory]
[InlineData(false, false)]
[InlineData(true, true)]
public void GenerateFiles_InheritedInterface_InheritFromBaseClass(bool proxyBaseClass, bool inheritBaseInterface)
{
var name = "Child";
var interfaceName = "I" + name;
var proxyName = name + "Proxy";
// Arrange
string[] fileNames = [
$"{Namespace}.{interfaceName}.g.cs",
$"{Namespace}.{proxyName}.g.cs"
];
var path = $"./Source/Disposable/{interfaceName}.cs";
SourceFile sourceFile = CreateSourceFile(path, name, proxyBaseClass);
// Act
var result = _sut.Execute([sourceFile]);
result.Valid.Should().BeTrue();
result.Files.Should().HaveCount(fileNames.Length + 1);
WriteFiles(fileNames, result);
var interfaceIndex = 1;
var tree = result.Files[interfaceIndex].SyntaxTree;
var root = tree.GetRoot();
var interfaceDeclarations = root.DescendantNodes().OfType<InterfaceDeclarationSyntax>();
// Assert
Assert.Single(interfaceDeclarations);
var baseList = interfaceDeclarations.First().BaseList;
bool didWeInherit = baseList is not null;
Assert.Equal(didWeInherit, inheritBaseInterface);
}
[Theory]
[InlineData("Parent")]
[InlineData("Child")]
public void GenerateFiles_InheritedInterface_Should_InheritTheInterface(string name)
{
var interfaceName = "I" + name;
var proxyName = name + "Proxy";
// Arrange
string[] fileNames = [
$"{Namespace}.{interfaceName}.g.cs",
$"{Namespace}.{proxyName}.g.cs"
];
var path = $"./Source/Disposable/{interfaceName}.cs";
SourceFile sourceFile = CreateSourceFile(path, name, true);
// Act
var result = _sut.Execute([sourceFile]);
result.Valid.Should().BeTrue();
result.Files.Should().HaveCount(fileNames.Length + 1);
WriteFiles(fileNames, result);
var interfaceIndex = 1;
var tree = result.Files[interfaceIndex].SyntaxTree;
var root = tree.GetRoot();
var interfaceDeclarations = root.DescendantNodes().OfType<InterfaceDeclarationSyntax>();
// Assert
Assert.Single(interfaceDeclarations);
var baseList = interfaceDeclarations.First().BaseList!;
Assert.Equal(2, baseList.Types.Count);
var type1 = (QualifiedNameSyntax)baseList.Types[0].Type;
var type2 = (QualifiedNameSyntax)baseList.Types[1].Type;
Assert.Equal(nameof(IDisposable), type1.Right.Identifier.Text);
Assert.Equal(nameof(IUpdate<string>), type2.Right.Identifier.Text);
}
[Fact]
public void GenerateFiles_InheritedInterface_Should_Not_InheritExplicitImplementedInterfaces()
{
var name = "Explicit";
var interfaceName = "I" + name;
var proxyName = name + "Proxy";
// Arrange
string[] fileNames = [
$"{Namespace}.{interfaceName}.g.cs",
$"{Namespace}.{proxyName}.g.cs"
];
var interfaceIndex = 1;
var path = $"./Source/Disposable/{interfaceName}.cs";
SourceFile sourceFile = CreateSourceFile(path, name, true);
// Act
var result = _sut.Execute([sourceFile]);
result.Valid.Should().BeTrue();
result.Files.Should().HaveCount(fileNames.Length + 1);
WriteFiles(fileNames, result);
var tree = result.Files[interfaceIndex].SyntaxTree;
var root = tree.GetRoot();
var interfaceDeclarations = root.DescendantNodes().OfType<InterfaceDeclarationSyntax>();
// Assert
//This actually could work, we just need to implenent the logic inside the Proxy (and interface).
//⚠ Dispose is not a public member of the 'Explicit' class and also not of the Proxy.
//e.g. new Explicit().Dipose() is not possible.
Assert.Single(interfaceDeclarations);
var baseList = interfaceDeclarations.First().BaseList;
bool noInterfaceImplementationFound = baseList is null;
Assert.True(noInterfaceImplementationFound);
}
private static SourceFile CreateSourceFile(string path, string name, bool extend)
{
var extendString = extend.ToString().ToLowerInvariant();
return new SourceFile
{
Path = path,
Text = File.ReadAllText(path),
AttributeToAddToInterface = new ExtraAttribute
{
Name = "ProxyInterfaceGenerator.Proxy",
ArgumentList = $"typeof({Namespace}.{name}), {extendString}"
}
};
}
private static void WriteFiles(string[] fileNames, ExecuteResult result)
{
foreach (var fileName in fileNames.Select((fileName, index) => new { fileName, index }))
{
var builder = result.Files[fileName.index + 1]; // +1 means skip the attribute
builder.Path.Should().EndWith(fileName.fileName);
File.WriteAllText($"{OutputPath}{fileName.fileName}", builder.Text);
builder.Text.Should().Be(File.ReadAllText($"{OutputPath}{fileName.fileName}"));
}
}
}