My current project uses SSRS as the reporting engine. I have the report executing a text command with about 10 variables passed to it. I have been looking for a solution on ho
Selenium has been a great tool for me. Selenium should allow you to validate most of the functionality in the report works as expected from the viewpoint of a web browsing user.
Having a test database separate from production will help keep things clean in your environment, but won't affect the quality of the test.
So you are basically wanting to test the SP then?
http://tsqlunit.sourceforge.net/
or VSTS for Database Professionals
http://msdn.microsoft.com/en-us/library/bb381703(VS.80).aspx
There doesn't seem to be a whole lot of solutions out there for unit testing SSRS. I've found ideas in this blog helpful.
Also, if you are interested in a tool to help, see: Innosphere's SSRS Unit Testing Suite. They are using a very similar method to the one described in the blog, i.e. export the SSRS report as XML, and use the XML to assert things.
Hope some of that helps.
Well that would only test the database 'API', it wouldn't take in to account any of the features you might be using in the report (filtering, sorting, aggregation etc).
The only thing I can suggest is to find a tool that can compare XML and just get the report server to send an XML version of the report.
http://reportserver/ReportServer?/directory/Report1&rs:Format=XML&rs:Command=Render
There must be a tool out there that can do this
Not sure if this has the capability to do it: http://www.soapui.org/
Don't know if this is to late - but I have looked at the testing product at the following site: http://www.asyncsoftware.co.uk/ReportTestGenerator.html
Which generates (MSTest or NUnit) unit tests based on the assertions you create...might be of help.
I saw the Reporting Services Unit Testing Framwork on CodePlex which could be useful, though I haven't had a chance to evaluate it.