开发者

StructureMap is not reset between NUnit tests

开发者 https://www.devze.com 2022-12-14 08:40 出处:网络
I\'m testing some code that uses StructureMap for Inversion of Control and problems have come up when I use different concrete classes for the same interface.

I'm testing some code that uses StructureMap for Inversion of Control and problems have come up when I use different concrete classes for the same interface.

For example:

[Test]
public void Test1()
{
    ObjectFactory.Inject<IFoo>(new TestFoo());

    ...
}

[Test]
public void Test2()
{
    ObjectFactory.Initialize(
        x => x.ForRequestedType<IFoo>().TheDefaultIsConcreteType<RealFoo>()
    );
    // ObjectFactory.Inject<IFoo>(new RealFoo()) doesn't work either.

    ...
}

Test2 works fine if it runs by itself, using a RealFoo. But if Test1 runs first, Test2 ends up using a TestFoo instead of RealFoo. Aren't NUnit tests supposed to be isolated? How can I reset StructureMap?

Oddly enough, Tes开发者_开发问答t2 fails if I don't include the Initialize expression. But if I do include it, it gets ignored...


If you must use ObjectFactory in your tests, in your SetUp or TearDown, make a call to ObjectFactory.ResetAll().

Even better, try to migrate your code away from depending on ObjectFactory. Any class that needs to pull stuff out of the container (other than the startup method) can take in an IContainer, which will automatically be populated by StructureMap (assuming the class itself is retrieved from the container). You can reference the IContainer wrapped by ObjectFactory through its Container property. You can also avoid using ObjectFactory completely and just create an instance of a Container that you manage yourself (it can be configured in the same way as ObjectFactory).


Yes, NUnit tests are supposed to be isolated and it is your responsibility to make sure they are isolated. The solution would be to reset ObjectFactory in the TearDown method of your test fixture. You can use ObjectFactory.EjectAllInstancesOf() for example.


Of course it doesn't reset between tests. ObjectFactory is a static wrapper around an InstanceManager; it is static through an AppDomain and as tests run in the same AppDomain this is why it is not reset. You need to TearDown the ObjectFactory between tests or configure a new Container for each test (i.e., get away from using the static ObjectFactory).

Incidentally, this is the main reason for avoiding global state and singletons: they are not friendly to testing.

From the Google guide to Writing Testable Code:

Global State: Global state is bad from theoretical, maintainability, and understandability point of view, but is tolerable at run-time as long as you have one instance of your application. However, each test is a small instantiation of your application in contrast to one instance of application in production. The global state persists from one test to the next and creates mass confusion. Tests run in isolation but not together. Worse yet, tests fail together but problems can not be reproduced in isolation. Order of the tests matters. The APIs are not clear about the order of initialization and object instantiation, and so on. I hope that by now most developers agree that global state should be treated like GOTO.

0

精彩评论

暂无评论...
验证码 换一张
取 消