测试httpModules中的nhibernate Castle Windsor映射未注册

我想写测试来验证在windsor城堡中的映射。 我使用的是ASP MVC2,我使用的是城堡windsor来映射我的存储库。

我读过这篇文章:

http://weblogs.asp.net/bsimser/archive/2008/06/04/the-first-spec-you-should-write-when-using-castle.aspx

并基于此我创建了我的MS测试

 [TestMethod()]
        public void GetContainerTest()
        {
            MooseMvc.Infrastructure.DependencyInjectionInitialiser target = new MooseMvc.Infrastructure.DependencyInjectionInitialiser(); // TODO: Initialize to an appropriate value
            IWindsorContainer container = target.GetContainer();
            foreach (IHandler assignableHandler in container.Kernel.GetAssignableHandlers(typeof(object)))
            {             
                container.Resolve(assignableHandler.ComponentModel.Service);
            }
        }

target.getcontainer()的数据实现

 this._windsorContainer.Register(Component.For<TInterfaceType>()
                .ImplementedBy(typeof(TConcreteType)).LifeStyle.PerWebRequest);

我得到的消息如下:

 Looks like you forgot to register the http module 
Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule Add '<add
name="PerRequestLifestyle"
type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule,
Castle.Windsor" />' to the <httpModules> section on your web.config.
If you're running IIS7 in Integrated Mode you will need to  add it to
<modules> section under <system.webServer>

我遇到了同样的问题,我找到了一个解决方案:您可以在单元测试的构造器中定义一个事件来覆盖LifestyleType。

void Kernel_ComponentModelCreated(Castle.Core.ComponentModel model)
{
    if (model.LifestyleType == LifestyleType.Undefined)
        model.LifestyleType = LifestyleType.Transient;

    if (model.LifestyleType == LifestyleType.PerWebRequest)
        model.LifestyleType = LifestyleType.Transient;
}

public UnitTest1()
{
    containerWithControllers = new WindsorContainer();

    containerWithControllers.Kernel.ComponentModelCreated += new ComponentModelDelegate(Kernel_ComponentModelCreated);  
}

我找到了美丽指南

http://docs.castleproject.org/Windsor.Windsor-tutorial-part-three-a-testing-your-first-installer.ashx

没有其他的东西要添加..

链接地址: http://www.djcxy.com/p/10271.html

上一篇: Testing nhibernate Castle Windsor mappings in httpModules is not registered

下一篇: Getting Started with Axis/C MIME/DIME and MTOM