"Test until bored"
That being said, be wary of doing most of your testing via integration testing.
In other words, test 1 thing at a time.
For example. you might be interested in testing
- Controller Logic
- Routing Logic
- Database
- Loading Methods
- Views
but don't test 2 or more in the same test.
So if you test the Controller logic, pass in or mock out the dataobjects being used.
That being said, you might also be interested in the "how" to test these parts. I'll cover 3 parts below (Database, loading functions, Views)
Database
there are really only 2 things you need to test in a database
- is it connected?
- is it's schema correct
For connected, I prefer an echo test
Assert.AreEqual(42, QuerySingleResult("Select 42"));
The are many ways to test the metadata of the database, but if you have a version number in being stored, you can simply test that. this also makes upgrading path easier.
Assert.AreEqual(6, QuerySingleResult("Select version From Schema"));
Loading Functions
There are many ways to test loading functions (i'll show a simple one here) but they all depend on isolating the loading into a function.
Testing linq to ...
Let's say you have
var people = From db in new EntityFrameworkContext().People Where ...... Select ....
if you split this into 2 functions
IEnumerable<People> LoadPeople()
{
return LoadPeople( new EntityFrameworkContext().People);
}
IEnumerable<People> LoadPeople(IEnumerable<People> fromPeople)
{
return From db in fromPeople Where ...... Select ....
}
This is now easy to test.
Views
While views are easy to test, there's a lot of details. I'll refer you to the video for everything: http://www.youtube.com/watch?v=SttlPzwJw3U
but the 2 important parts are
1) the test
MvcApprovals.VerifyMvcPage(new YourController().YourTestAction
2) a test seam in the controller
public ActionResult YourTestAction()
{
// setup your model
return View("viewpage", model);
}
Happy Testing!