Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am stuck at this point of code that I do not know how to mock:

ConfigurationManager.AppSettings["User"];

I have to mock the ConfigurationManager, but I don't have a clue, I am using Moq.

Someone can give me a tip? Thanks!

share|improve this question

3 Answers

up vote 16 down vote accepted

I believe one standard approach to this is to use a facade pattern to wrap the configuration manager and then you have something loosely coupled that you have control over.

So you would wrap the ConfigurationManager. Something like:

public class Configuration: IConfiguration
{
    public User
    {
        get{ 
               return ConfigurationManager.AppSetting["User"];
       }
    }
}

(You can just extract an interface from your configuration class and then use that interface everywhere in your code) Then you just mock the IConfiguration. You might be able to implement the facade itself in a few different ways. Above I chose just to wrap the individual properties. You also obtain the side benefit of having strongly typed information to work with rather than weakly typed hash arrays.

share|improve this answer
2  
This is conceptually what I am doing, too. However, I use Castle DictionaryAdapter (part of Castle Core) which generates the implementation of the interface on the fly. I've written about it some time ago: blog.andreloker.de/post/2008/09/05/… (scroll down to "A Solution" to see how I use Castle DictionaryAdapter) – Andre Loker Feb 28 '12 at 17:03
That is nifty and that is a good article. I'll have to keep this in mind for the future. – Joshua Enfield Feb 28 '12 at 18:24
I might also add - depending on your purism and interpretations - this could instead or also be called a Delegate Proxy or Adapter. – Joshua Enfield Apr 4 '12 at 18:24

Maybe is not what you need to accomplish, but have you considered to use an app.config in your test project? So the ConfigurationManager will get the values that you put in the app.config and you don't need to mock anything. This solution works nice for my needs, because I never need to test a "variable" config file.

share|improve this answer
1  
If the behavior of the code under test changes depending on the value of a configuration value, it's certainly easier to test it if it does not depend on AppSettings directly. – Andre Loker Feb 28 '12 at 17:06

That is a static property, and Moq is designed to Moq instance methods or classes that can be mocked via inheritance. In other words, Moq is not going to be any help to you here.

For mocking statics, I use a tool called Moles, which is free. There are other framework isolation tools, like Typemock that can do this too, though I believe those are paid tools.

When it comes to statics and testing, another option is to create the static state yourself, though this can often be problematic (as, I'd imagine it would be in your case).

And, finally, if the isolation frameworks are not an option and you're committed to this approach, the facade mentioned by Joshua is a good approach, or any approach in general where you factor client code of this away from the business logic that you're using to test.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.