如何在 SimpleInjector 2.6.1+ 中对开放式通用装饰器链进行单元测试
本文关键字:单元测试 开放式 SimpleInjector | 更新日期: 2023-09-27 18:35:28
给定以下使用 SimpleInjection 器的开放通用 deocrator 链:
container.RegisterManyForOpenGeneric(typeof(IHandleQuery<,>), assemblies);
container.RegisterDecorator(
typeof(IHandleQuery<,>),
typeof(ValidateQueryDecorator<,>)
);
container.RegisterSingleDecorator(
typeof(IHandleQuery<,>),
typeof(QueryLifetimeScopeDecorator<,>)
);
container.RegisterSingleDecorator(
typeof(IHandleQuery<,>),
typeof(QueryNotNullDecorator<,>)
);
使用 SimpleInjector 2.4.0,我能够使用以下代码对此进行单元测试以断言装饰链:
[Fact]
public void RegistersIHandleQuery_UsingOpenGenerics_WithDecorationChain()
{
var instance = Container
.GetInstance<IHandleQuery<FakeQueryWithoutValidator, string>>();
InstanceProducer registration = Container.GetRegistration(
typeof(IHandleQuery<FakeQueryWithoutValidator, string>));
instance.ShouldNotBeNull();
registration.Registration.ImplementationType
.ShouldEqual(typeof(HandleFakeQueryWithoutValidator));
registration.Registration.Lifestyle.ShouldEqual(Lifestyle.Transient);
var decoratorChain = registration.GetRelationships()
.Select(x => new
{
x.ImplementationType,
x.Lifestyle,
})
.Reverse().Distinct().ToArray();
decoratorChain.Length.ShouldEqual(3);
decoratorChain[0].ImplementationType.ShouldEqual(
typeof(QueryNotNullDecorator<FakeQueryWithoutValidator, string>));
decoratorChain[0].Lifestyle.ShouldEqual(Lifestyle.Singleton);
decoratorChain[1].ImplementationType.ShouldEqual(
typeof(QueryLifetimeScopeDecorator<FakeQueryWithoutValidator, string>));
decoratorChain[1].Lifestyle.ShouldEqual(Lifestyle.Singleton);
decoratorChain[2].ImplementationType.ShouldEqual(
typeof(ValidateQueryDecorator<FakeQueryWithoutValidator, string>));
decoratorChain[2].Lifestyle.ShouldEqual(Lifestyle.Transient);
}
更新到简单注入器 2.6.1 后,此单元测试失败。似乎InstanceProducer.Registration.ImplementationType
现在返回第一个装饰处理程序而不是装饰处理程序(这意味着,它返回typeof(QueryNotNullDecorator<HandleFakeQueryWithoutValidator,string>)
而不是typeof(HandleFakeQueryWithoutValidator)
。
此外,InstanceProducer.GetRelationships()
不再返回链中的所有修饰器。 它也只返回第一个装饰器。
这是一个错误吗,如果不是,我们如何使用 SimpleInjector 2.6.1+ 对开放的通用装饰器链进行单元测试?
2.6 中可用于依赖关系图的详细信息已得到极大改进。您可以使用以下代码实现相同的操作:
[Fact]
public void RegistersIHandleQuery_UsingOpenGenerics_WithDecorationChain()
{
var container = this.ContainerFactory();
var instance = container
.GetInstance<IHandleQuery<FakeQueryWithoutValidator, string>>();
var registration = (
from currentRegistration in container.GetCurrentRegistrations()
where currentRegistration.ServiceType ==
typeof(IHandleQuery<FakeQueryWithoutValidator, string>)
select currentRegistration.Registration)
.Single();
Assert.Equal(
typeof(QueryNotNullDecorator<FakeQueryWithoutValidator, string>),
registration.ImplementationType);
Assert.Equal(Lifestyle.Singleton, registration.Lifestyle);
registration = registration.GetRelationships().Single().Dependency.Registration;
Assert.Equal(
typeof(QueryLifetimeScopeDecorator<FakeQueryWithoutValidator, string>),
registration.ImplementationType);
Assert.Equal(Lifestyle.Singleton, registration.Lifestyle);
registration = registration.GetRelationships().Single().Dependency.Registration;
Assert.Equal(
typeof(ValidateQueryDecorator<FakeQueryWithoutValidator, string>),
registration.ImplementationType);
Assert.Equal(Lifestyle.Transient, registration.Lifestyle);
}
您可以在此处找到更多信息
请注意:我认为您有一个强制依赖 - 您在单例装饰器中有一个瞬态处理程序......
[Fact]
public void Container_Always_ContainsNoDiagnosticWarnings()
{
var container = this.ContainerFactory();
container.Verify();
var results = Analyzer.Analyze(container);
Assert.False(results.Any());
}
Qujck 是对的。我们大大改进了注册和已知依赖项关系图的构建方式,特别是为了改进诊断并使用户更容易查询注册。所以这不是一个错误;这是一个重大更改。但是,我们不希望有人受到此影响,这就是我们在次要版本中进行更改的原因。很抱歉您不得不偶然发现此更改,但至少它只是测试代码中断。
在以前的版本中,KnownDependency 对象的图形在添加装饰器时被展平。这使得查询和可视化对象图变得困难。在 v2.6 中,从诊断 API 的角度来看,装饰器就好像是一个"真正的"注册。这意味着 InstanceProducer 和 Registration 对象现在显示返回的实际类型及其生活方式。
更清晰,但诊断 API 发生了重大变化。