using System.Threading; using GFramework.Cqrs.Abstractions.Cqrs; namespace GFramework.Core.Tests.Architectures; /// /// 记录请求通过管道次数的测试行为。 /// /// 请求类型。 /// 响应类型。 public sealed class TrackingPipelineBehavior : IPipelineBehavior where TRequest : IRequest { private static int _invocationCount; /// /// 获取当前测试进程中该请求类型对应的行为触发次数。 /// 该计数器是按泛型闭包共享的静态状态,测试需要在每次运行前显式重置。 /// public static int InvocationCount { get => Volatile.Read(ref _invocationCount); set => Volatile.Write(ref _invocationCount, value); } /// /// 以线程安全方式记录一次行为执行,然后继续执行下一个处理器。 /// /// 当前请求消息。 /// 下一个处理委托。 /// 取消令牌。 /// 下游处理器的响应结果。 public async ValueTask Handle( TRequest message, MessageHandlerDelegate next, CancellationToken cancellationToken) { Interlocked.Increment(ref _invocationCount); return await next(message, cancellationToken).ConfigureAwait(false); } }