mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
- 新增完整的 GFramework.SourceGenerators 文档,涵盖所有核心特性 - 添加 Log 属性生成器、Config Schema 生成器等详细使用说明 - 添加 ContextAware、GenerateEnumExtensions 等属性生成器文档 - 添加 Godot 专用生成器如 GetNode、BindNodeSignal 等使用指南 - 添加 AutoRegisterModule、AutoUiPage、AutoScene 等自动化工具文档 - 添加诊断信息、性能优势、使用示例和最佳实践章节 - 新增 PathContests 常量类定义 GFramework 项目路径常量 - 添加 ContextRegistrationAnalyzerTests 测试类验证上下文注册分析器
96 lines
4.1 KiB
C#
96 lines
4.1 KiB
C#
using System.IO;
|
||
using GFramework.Core.SourceGenerators.Rule;
|
||
using GFramework.SourceGenerators.Tests.Core;
|
||
|
||
namespace GFramework.SourceGenerators.Tests.Rule;
|
||
|
||
/// <summary>
|
||
/// 上下文感知生成器快照测试类
|
||
/// 用于测试ContextAwareGenerator源代码生成器的输出快照
|
||
/// </summary>
|
||
[TestFixture]
|
||
public class ContextAwareGeneratorSnapshotTests
|
||
{
|
||
/// <summary>
|
||
/// 测试ContextAwareGenerator源代码生成器的快照功能
|
||
/// 验证生成器对带有ContextAware特性的类的处理结果
|
||
/// </summary>
|
||
/// <returns>异步任务,无返回值</returns>
|
||
[Test]
|
||
public async Task Snapshot_ContextAwareGenerator()
|
||
{
|
||
// 定义测试用的源代码,包含ContextAware特性和相关接口定义
|
||
const string source = """
|
||
using System;
|
||
|
||
namespace GFramework.Core.SourceGenerators.Abstractions.Rule
|
||
{
|
||
[AttributeUsage(AttributeTargets.Class)]
|
||
public sealed class ContextAwareAttribute : Attribute { }
|
||
}
|
||
|
||
namespace GFramework.Core.Abstractions.Rule
|
||
{
|
||
public interface IContextAware
|
||
{
|
||
void SetContext(
|
||
GFramework.Core.Abstractions.Architectures.IArchitectureContext context);
|
||
|
||
GFramework.Core.Abstractions.Architectures.IArchitectureContext GetContext();
|
||
}
|
||
}
|
||
|
||
namespace GFramework.Core.Abstractions.Architectures
|
||
{
|
||
public interface IArchitectureContext { }
|
||
|
||
public interface IArchitectureContextProvider
|
||
{
|
||
IArchitectureContext GetContext();
|
||
bool TryGetContext<T>(out T? context) where T : class, IArchitectureContext;
|
||
}
|
||
}
|
||
|
||
namespace GFramework.Core.Architectures
|
||
{
|
||
using GFramework.Core.Abstractions.Architectures;
|
||
|
||
public sealed class GameContextProvider : IArchitectureContextProvider
|
||
{
|
||
public IArchitectureContext GetContext() => null;
|
||
public bool TryGetContext<T>(out T? context) where T : class, IArchitectureContext
|
||
{
|
||
context = null;
|
||
return false;
|
||
}
|
||
}
|
||
|
||
public static class GameContext
|
||
{
|
||
public static IArchitectureContext GetFirstArchitectureContext() => null;
|
||
}
|
||
}
|
||
|
||
namespace TestApp
|
||
{
|
||
using GFramework.Core.SourceGenerators.Abstractions.Rule;
|
||
using GFramework.Core.Abstractions.Rule;
|
||
|
||
[ContextAware]
|
||
public partial class MyRule : IContextAware
|
||
{
|
||
}
|
||
}
|
||
""";
|
||
|
||
// 执行生成器快照测试,将生成的代码与预期快照进行比较
|
||
await GeneratorSnapshotTest<ContextAwareGenerator>.RunAsync(
|
||
source,
|
||
Path.Combine(
|
||
TestContext.CurrentContext.TestDirectory,
|
||
"rule",
|
||
"snapshots",
|
||
"ContextAwareGenerator"));
|
||
}
|
||
}
|