We have an n-tier web application that pulls data from SQL Server. Our Data Access logic returns an SqlDataReader whose data is then used to create our Business objects (a.k.a. Data Transfer objects).
We wish to build unit tests to check our code that interprets the data returned by these SqlDataReader objects to build our Business objects.
It therefore seems necessary to build stubs to replace the SqlDataReader objects during unit testing. As is probably fairly typical, our SqlDataReader objects generally return multiple recordsets, each with multiple rows.
- Is this a sensible endeavour?
- How should we go about building these stub objects?
Many thanks in advance
Griff
Automated testing is basically always a sensible endeavour :)
Your first step to be able to test this is to have your Data Access logic return an
IDataReader
instead of anSqlDataReader
-SqlDataReader
implementsIDataReader
, so no problems there.In your unit tests you can then manually build and populate
DataTable
objects, and calldataTable.CreateDataReader()
to get anIDataReader
to pass into the object under test.Edit
To provide your tests with a set of sample data, I'd suggest using an ObjectMother for each data table you use, keeping creation of the data tables in one dedicated place. You can then put methods on each
ObjectMethod
class to update certain data in a strongly-typed way. For example:...which you could then use like this to get a data reader: