Data Driven Test of a stored procedure in Database Edition
Database Tests are really a great feature of Database Edition, and, like other tests, you can create a Data Driven Test of a stored procedure with little effort. The first stuff I do is to create a database project that will contains a table for each sets of data I want to use in a test.
In this project I create a table for each sets of data, and create a script to preload the data as post-deployment script. In this example I want to test a stored procedure, that accepts a string filter, and for each filter I want to test the number of rows returned. To achieve this I need a set of test data with two column, a filter column and a ExpectedNumberOfResult column. I create this table in the TestDatabase Database project
Ok, now here is the TestDataSet1 deployment script
|
|
I simply need to remove all old data, and preload with real data. Now here is the stored I want to test.
|
|
Absolutely simple, and I’ve already generated a DataGenerationPlan and already verified that searching with ‘da’ will return only one column, with ‘e’ it will return 18 columns etc etc. To save Time I simply right click and Deploy the test database only when the test data changes, clearly this database is readonly, because tests use it only to data drive the test. Then I create a very simple Stored proceudre Test, and modify in this way
We need to notice a couple of stuff, first of all the @filter parameter was not declared in T-Sql code, this because we will take it from the test table, the other peculiarity is that the NumberOfRowReturned is a single condition that expects 0 rows to be returned, now it is time to dataDrive the test. The whole operation is covered in this article, here is a brief summary. First of all in the test we need to modify App.Config, you need to add a section
|
|
And then the section parameter
|
|
I’m telling that I want to create a new data source to data drive my stored procedure test, this data source will be called SqlClientDataSource, it uses the SqlClientConn connection string, it will use the TestDataSet1 table and the access method is sequential, it means that it will run the test for each row in the table.
Now the fun part begins, because you will need to instruct the test to use this data, so you will need to Right click the database test and choose View Code. For those not used to database testing, a database test is composed by a simple C# or VB wrapper test that permits you to use a designer, but in the background there is the usual test structure. The first step is to choose the data source
|
|
Now you need to pass the filter parameter to the stored.
|
|
The code is really really simple, since it is a Data Driven test, the TestContext has the DataRow populated with the content of the TestDataSet1 table, so I take the NameFilter column value and then create an array of one DpParameter, named @filter that will be passed to the test. Now I need to modify the test condition because I need to set up the number of expected row count, this is a matter of another few lines of code.
|
|
IF this code seems an Hack, you should consider how the designer will code the test under the hood. First of all I store in the ExpectedResultCount the number of rows that I’m expecting to be returned from the stored, then, with a simple LINQ query, I take the condition named NumberOfRowReturned, that is the name I gave to the condition into the designer. Since I already know that it is a row count condition I can cast it to the right type RowCountCondition, and finally change the RowCount property. The final step is passing the parameter array to the test
|
|
This can be achieved with an overload version of the Execute method, that accepts the array of parameter as last argument. Now you can run the test and look at the result.
As you can verify, the stored was called three time, and for each run a different assertion was run, to verify it try to change the post-deploy script of the testDAtabase project adding a row
|
|
The last row tells that we expect 22 customers with an ‘a’ in the name, but I already know that my data generation plan generates only 17 records with this condition, now you can run test again and this is the output.
Now you can verify that the test was run 4 times, and the last one it fails.
This technique is very powerful, because you can test a stored procedure or trigger, several time with only a test definition, just exercising it with different input data taken from another database.
alk.