mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-24 20:34:29 +08:00
refactor(source-generator): 重构ContextAware生成器的代码格式
- 将多行字符串插值改为逐行添加以改善代码可读性 - 更新测试用例中的源代码和期望输出格式 - 修改项目文件中的目标框架为net8.0 - 添加必要的包引用Microsoft.CodeAnalysis.CSharp和Microsoft.CodeAnalysis.Common - 移除解决方案用户设置中的过期配置项
This commit is contained in:
parent
68cf0c71ee
commit
eaa706a7e4
@ -3,11 +3,13 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<TargetFrameworks>net10.0;net8.0;net9.0</TargetFrameworks>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0"/>
|
||||||
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.14.0"/>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.14.0"/>
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.14.0"/>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing" Version="1.1.2"/>
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing" Version="1.1.2"/>
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
|
||||||
|
|||||||
@ -20,17 +20,27 @@ public class ContextAwareGeneratorTests
|
|||||||
{
|
{
|
||||||
// 定义输入源代码,包含使用[ContextAware]特性的部分类
|
// 定义输入源代码,包含使用[ContextAware]特性的部分类
|
||||||
const string source = """
|
const string source = """
|
||||||
using GFramework.Core.rule;
|
using System;
|
||||||
using GFramework.Core.architecture;
|
|
||||||
|
namespace GFramework.SourceGenerators.Attributes.rule
|
||||||
|
{
|
||||||
|
[AttributeUsage(AttributeTargets.Class)]
|
||||||
|
public sealed class ContextAwareAttribute : Attribute
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace TestApp;
|
namespace TestApp;
|
||||||
|
|
||||||
|
using GFramework.SourceGenerators.Attributes.rule;
|
||||||
|
|
||||||
[ContextAware]
|
[ContextAware]
|
||||||
public partial class MyRule
|
public partial class MyRule
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
""";
|
""";
|
||||||
|
|
||||||
|
|
||||||
// 定义期望的生成结果代码
|
// 定义期望的生成结果代码
|
||||||
const string expected = """
|
const string expected = """
|
||||||
// <auto-generated/>
|
// <auto-generated/>
|
||||||
@ -40,7 +50,6 @@ public class ContextAwareGeneratorTests
|
|||||||
partial class MyRule : GFramework.Core.rule.IContextAware
|
partial class MyRule : GFramework.Core.rule.IContextAware
|
||||||
{
|
{
|
||||||
protected GFramework.Core.architecture.IArchitectureContext Context { get; private set; } = null!;
|
protected GFramework.Core.architecture.IArchitectureContext Context { get; private set; } = null!;
|
||||||
|
|
||||||
void GFramework.Core.rule.IContextAware.SetContext(
|
void GFramework.Core.rule.IContextAware.SetContext(
|
||||||
GFramework.Core.architecture.IArchitectureContext context)
|
GFramework.Core.architecture.IArchitectureContext context)
|
||||||
{
|
{
|
||||||
@ -49,6 +58,7 @@ public class ContextAwareGeneratorTests
|
|||||||
}
|
}
|
||||||
""";
|
""";
|
||||||
|
|
||||||
|
|
||||||
// 执行源代码生成器测试
|
// 执行源代码生成器测试
|
||||||
await GeneratorTest<ContextAwareGenerator>.RunAsync(
|
await GeneratorTest<ContextAwareGenerator>.RunAsync(
|
||||||
source,
|
source,
|
||||||
|
|||||||
@ -99,13 +99,12 @@ public sealed class ContextAwareGenerator : IIncrementalGenerator
|
|||||||
sb.AppendLine(
|
sb.AppendLine(
|
||||||
" protected GFramework.Core.architecture.IArchitectureContext Context { get; private set; } = null!;");
|
" protected GFramework.Core.architecture.IArchitectureContext Context { get; private set; } = null!;");
|
||||||
|
|
||||||
sb.AppendLine("""
|
sb.AppendLine(" void GFramework.Core.rule.IContextAware.SetContext(");
|
||||||
void GFramework.Core.rule.IContextAware.SetContext(
|
sb.AppendLine(" GFramework.Core.architecture.IArchitectureContext context)");
|
||||||
GFramework.Core.architecture.IArchitectureContext context)
|
sb.AppendLine(" {");
|
||||||
{
|
sb.AppendLine(" Context = context;");
|
||||||
Context = context;
|
sb.AppendLine(" }");
|
||||||
}
|
|
||||||
""");
|
|
||||||
|
|
||||||
sb.AppendLine("}");
|
sb.AppendLine("}");
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ADiagnostic_002Ecs_002Fl_003AD_0021_003FTool_003FDevelopment_0020Tools_003FJetBrains_003F_002EJetBrains_003F_002ERider_003Fconfig_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F8fed4175e0a54d839582ab555761a2de4d5128_003Ff3_003Fd48d28bd_003FDiagnostic_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003ADiagnostic_002Ecs_002Fl_003AD_0021_003FTool_003FDevelopment_0020Tools_003FJetBrains_003F_002EJetBrains_003F_002ERider_003Fconfig_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F8fed4175e0a54d839582ab555761a2de4d5128_003Ff3_003Fd48d28bd_003FDiagnostic_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AInputEventAction_002Ecs_002Fl_003AD_0021_003FTool_003FDevelopment_0020Tools_003FJetBrains_003F_002EJetBrains_003F_002ERider_003Fconfig_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F1c378f459c054fecaf4484a0fa6d44c055a800_003F18_003F33b52a1c_003FInputEventAction_002Ecs/@EntryIndexedValue">ForceIncluded</s:String></wpf:ResourceDictionary>
|
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/FilesAndFoldersToSkip2/=7020124F_002D9FFC_002D4AC3_002D8F3D_002DAAB8E0240759_002Ff_003AInputEventAction_002Ecs_002Fl_003AD_0021_003FTool_003FDevelopment_0020Tools_003FJetBrains_003F_002EJetBrains_003F_002ERider_003Fconfig_003Fresharper_002Dhost_003FDecompilerCache_003Fdecompiler_003F1c378f459c054fecaf4484a0fa6d44c055a800_003F18_003F33b52a1c_003FInputEventAction_002Ecs/@EntryIndexedValue">ForceIncluded</s:String>
|
||||||
|
<s:String x:Key="/Default/Environment/UnitTesting/UnitTestSessionStore/Sessions/=c33c8ad6_002Dd992_002D4817_002D855f_002D764f7c7897fa/@EntryIndexedValue"><SessionState ContinuousTestingMode="0" IsActive="True" Name="Generates_ContextAware_Code" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
|
||||||
|
<TestAncestor>
|
||||||
|
<TestId>NUnit3x::BB047F43-6AA0-4EA0-8AE9-E6B9784D9E8E::net8.0::GFramework.SourceGenerators.Tests.rule.ContextAwareGeneratorTests</TestId>
|
||||||
|
</TestAncestor>
|
||||||
|
</SessionState></s:String></wpf:ResourceDictionary>
|
||||||
Loading…
x
Reference in New Issue
Block a user