mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 移除RegisterSceneUnit方法的InvalidOperationException异常文档 - 移除RegisterScenePage方法的InvalidOperationException异常文档 - 为SourceGenerators.Abstractions项目启用可空引用类型支持 - 在测试中禁用GF_Common_Trace_001诊断警告
151 lines
6.4 KiB
C#
151 lines
6.4 KiB
C#
using GFramework.SourceGenerators.rule;
|
|
using GFramework.SourceGenerators.Tests.core;
|
|
using NUnit.Framework;
|
|
|
|
namespace GFramework.SourceGenerators.Tests.rule;
|
|
|
|
[TestFixture]
|
|
public class ContextAwareGeneratorTests
|
|
{
|
|
[Test]
|
|
public async Task Generates_ContextAware_Code()
|
|
{
|
|
const string source = """
|
|
using System;
|
|
|
|
namespace GFramework.SourceGenerators.Abstractions.rule
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class ContextAwareAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace TestApp
|
|
{
|
|
using GFramework.SourceGenerators.Abstractions.rule;
|
|
|
|
[ContextAware]
|
|
public partial class MyRule
|
|
: GFramework.Core.Abstractions.rule.IContextAware
|
|
{
|
|
}
|
|
}
|
|
""";
|
|
|
|
const string frameworkStub = """
|
|
namespace GFramework.Core.Abstractions.rule
|
|
{
|
|
public interface IContextAware
|
|
{
|
|
void SetContext(
|
|
GFramework.Core.Abstractions.architecture.IArchitectureContext context);
|
|
}
|
|
}
|
|
|
|
namespace GFramework.Core.Abstractions.architecture
|
|
{
|
|
public interface IArchitectureContext {}
|
|
}
|
|
""";
|
|
|
|
const string expected = """
|
|
// <auto-generated/>
|
|
#nullable enable
|
|
|
|
namespace TestApp;
|
|
|
|
partial class MyRule
|
|
{
|
|
/// <summary>
|
|
/// 自动注入的架构上下文
|
|
/// </summary>
|
|
protected GFramework.Core.Abstractions.architecture.IArchitectureContext Context { get; private set; } = null!;
|
|
|
|
void GFramework.Core.Abstractions.rule.IContextAware.SetContext(
|
|
GFramework.Core.Abstractions.architecture.IArchitectureContext context)
|
|
{
|
|
Context = context;
|
|
}
|
|
}
|
|
""";
|
|
|
|
await GeneratorTest<ContextAwareGenerator>.RunAsync(
|
|
source + "\n" + frameworkStub,
|
|
("MyRule.ContextAware.g.cs", expected)
|
|
);
|
|
}
|
|
|
|
[Test]
|
|
public async Task Generates_ContextAware_Code_When_Interface_Inherits_IContextAware()
|
|
{
|
|
const string source = """
|
|
using System;
|
|
|
|
namespace GFramework.SourceGenerators.Abstractions.rule
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class ContextAwareAttribute : Attribute
|
|
{
|
|
}
|
|
}
|
|
|
|
namespace TestApp
|
|
{
|
|
using GFramework.SourceGenerators.Abstractions.rule;
|
|
using GFramework.Core.Abstractions.rule;
|
|
|
|
public interface IMyRuleContextAware : IContextAware
|
|
{
|
|
}
|
|
|
|
[ContextAware]
|
|
public partial class MyRule : IMyRuleContextAware
|
|
{
|
|
}
|
|
}
|
|
""";
|
|
|
|
const string frameworkStub = """
|
|
namespace GFramework.Core.Abstractions.rule
|
|
{
|
|
public interface IContextAware
|
|
{
|
|
void SetContext(
|
|
GFramework.Core.Abstractions.architecture.IArchitectureContext context);
|
|
}
|
|
}
|
|
|
|
namespace GFramework.Core.Abstractions.architecture
|
|
{
|
|
public interface IArchitectureContext {}
|
|
}
|
|
""";
|
|
|
|
const string expected = """
|
|
// <auto-generated/>
|
|
#nullable enable
|
|
|
|
namespace TestApp;
|
|
|
|
partial class MyRule
|
|
{
|
|
/// <summary>
|
|
/// 自动注入的架构上下文
|
|
/// </summary>
|
|
protected GFramework.Core.Abstractions.architecture.IArchitectureContext Context { get; private set; } = null!;
|
|
|
|
void GFramework.Core.Abstractions.rule.IContextAware.SetContext(
|
|
GFramework.Core.Abstractions.architecture.IArchitectureContext context)
|
|
{
|
|
Context = context;
|
|
}
|
|
}
|
|
""";
|
|
|
|
await GeneratorTest<ContextAwareGenerator>.RunAsync(
|
|
source + "\n" + frameworkStub,
|
|
("MyRule.ContextAware.g.cs", expected)
|
|
);
|
|
}
|
|
} |