我的控制器具有依赖项,我正在使用 Castle Windsor 通过依赖项注入来解决这些依赖项。
这很好用,甚至允许我用“模拟”依赖项替换一些依赖项,以便我可以测试我的控制器。
但是,假设我有以下内容:
Public Class AccountController
Inherits Controller
Public Property SecurityService As ISecurityService
Public Sub New(securityService As ISecurityService)
Me.SecurityService = securityService
End Sub
End Class
Public Class DefaultSecurityService
Implements ISecurityService
Public Property SomeDependency As ISomeClass
End Class
在这种情况下,我AccountController
依赖于一个ISecurityService
,然后依赖于另一个类。我的情况更复杂,更抽象。我绝对无法直接向SecurityService
.
这让我觉得我的 DI 容器可以为我做这件事。我希望 Castle Windsor 能够识别我何时运行测试(例如集成测试)并将任何服务替换为它找到的任何“模拟”服务。这意味着我可以定义一个ISomeClass
名为的模拟MockSomeClass
,并且 Castle Windsor 会自动注入该模拟而不是常规类。
这怎么可能实现?我能找到的关于这个主题的唯一信息是Mark Seemann的Auto-mocking Container。但它很复杂,我不确定它是否与我需要的东西有关。
(代码示例中可接受 VB.NET 和 C#)