vote up 4 vote down star
1

I am starting out with unit testing, I have a method that uses the web.config for a connection string.

I was hoping to be able to use

[DeploymentItem("web.config")]

to get the web config file, this still leaves me with null reference exceptions (that'd be what I write my next test for).

How do I use the config file included with the project I am trying to test?

I am using the testing framework included in VS 2008, if that makes any difference.

Thanks

flag

62% accept rate
Do you put your unit test code in the same project as your application code? – Gerrie Schenck Feb 5 at 15:21

3 Answers

vote up 5 vote down check

Unit test projects should have their own config file.

On a test project you can choose Add, New Item, Application Configuration File.

This file will behave exactly like a web.config, but then for your unit tests.

link|flag
I've tried what you suggested, I added a new config file into my test project. The connection string is in place, but when running my tests I always see null on the line var sqlCon = new SqlConnection(ConfigurationManager.ConnectionStrings["SqlServer"].ConnectionString); What might I be missing? – ilivewithian Feb 5 at 15:48
vote up 1 vote down

You will want your results to be well-defined and repeatable. To to this, you'll need to be working against known data so that you can clearly define both your normal cases and your boundary cases. In my work, this is always a specific server and dataset so the Unit testing module has the connection string built in. Others prefer using a connection string out of the Unit Testing project. I've never seen anyone recommend the use of the web site's config file! (development or otherwise)

link|flag
That makes a lot of sense, so what's the solution to getting the connection strings into my app for testing? – ilivewithian Feb 5 at 15:44
Either hard code the Connection String that is specific to your testing environment (this has a bad smell but it is really quite practical as it has nothing to do with deployable code) or use a Config file defined specifically for your unit testing module as Gerrie suggested. – Mark Brittingham Feb 5 at 20:54
Just to emphasize: I am not suggesting that you ever hard code a database connection string in code that will be deployed! I have a specific database on a specific server that I always use for unit testing. Before testing, I run a script that ensures that the db is in the appropriate state. – Mark Brittingham Feb 5 at 20:59
vote up 1 vote down

If you need a connection string, you are not writing a unit test (assuming that you are using the connection string for going to database). Unit tests are not supposed to interact with outside environment. You will want to run all of them after each check in so they better run at the speed of light.

For a unit test, you will want to isolate your code from your database. Modify your tests (and the code you are testing if necessary) so that you will not need to go to database for testing them.

link|flag
So are you suggesting that I don't test any code that accesses a database? – ilivewithian Feb 5 at 15:42
he's suggesting you don't test it against the database defined in your web.config – annakata Feb 5 at 15:45
No. Your code must never access to the database (unless you are writing a database framework). Instead, you pass an object to your code, which accesses to database. In your unit tests, you mock that object, in production, you use the actual database accessing class. – Serhat Özgel Feb 5 at 15:49
buyutec is right, when you this your tests aren't unit tests anymore, but integration tests. – Gerrie Schenck Feb 5 at 15:52
I just flat out disagree with this on a fundamental level. It takes Unit Testing out of the realm of practical, hands-on tool for improving your code, and turns it into an abstraction hemmed in by artificial boundaries. – Mark Brittingham Feb 5 at 20:52
show 6 more comments

Your Answer

Get an OpenID
or

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