Writing a unit testing framework for testing SQL stored procedures - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T23:41:33Zhttp://stackoverflow.com/feeds/question/248587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248587/writing-a-unit-testing-framework-for-testing-sql-stored-procedures5Writing a unit testing framework for testing SQL stored proceduresNikola Stjelja2008-10-29T22:00:22Z2009-04-16T13:24:14Z
<p>Today I had an idea of writing an unit testing framework for stored procedures in MySQL. The full idea is written on the recent post on my blog. In short it goeas as this.
I want to automte my procedure testing, I want to use a standardized way to test my procederues. Unit testing is widely documented, and there are a zilloin of XUnit frameworks out there, why not write one for MySQL (or any other database).
It would be open source of course.
What do you think? It is silly, stupid, needless or what?
Or another idea would be to write a general database framework in SQL. Hmm, I really want to discuss that with some one, collect thought and ideas. </p>
http://stackoverflow.com/questions/248587/writing-a-unit-testing-framework-for-testing-sql-stored-procedures/248611#2486110Answer by vfilby for Writing a unit testing framework for testing SQL stored proceduresvfilby2008-10-29T22:08:04Z2008-10-29T22:08:04Z<p>I tend to unit test the data access layer, it is always a pain in the ass because you have to setup a proper database with proper data. There are data generators out there that can help (like RedGate's Data Generator) make the setup process simpler.</p>
<p>My thinking behind just testing the DAL, is that you are essentially testing the stored procedures themselves with the added .Net DB code which I don't think we need to worry about unit testing. This way you can leverage all the tools and processes you already have for unit testing. It seems like a lot of effort to develop a separate framework for something that can (IMHO) be performed equally well with existing tools.</p>
<p>I have an open mind though. If there are benefits I am overlooking please do tell me.</p>
<p>Cheers,
V</p>
http://stackoverflow.com/questions/248587/writing-a-unit-testing-framework-for-testing-sql-stored-procedures/248621#2486211Answer by Mr. Brownstone for Writing a unit testing framework for testing SQL stored proceduresMr. Brownstone2008-10-29T22:12:23Z2008-10-29T22:12:23Z<p>There's already one testing framework for Sql Server - <a href="http://tsqlunit.sourceforge.net/" rel="nofollow">TSQLUnit</a>. Maybe you can get some useful info from it.</p>
http://stackoverflow.com/questions/248587/writing-a-unit-testing-framework-for-testing-sql-stored-procedures/248641#2486410Answer by Nikola Stjelja for Writing a unit testing framework for testing SQL stored proceduresNikola Stjelja2008-10-29T22:19:51Z2008-10-29T22:19:51Z<p>One of the benefits would be that the test would be written in the same envirment the stored procedures written and executed, maintaned by a specialized databse developer outside the main application.
There is no need for the application developer to be a master of programming a relational database nor for the database developer to master an modern application developing language.
You now have test for every thing. Why not have them for the database written sql and executed outside any in house developed application.</p>
<p>If you are developing a multi tier application it makes sense to separate each part and test it separately. </p>
http://stackoverflow.com/questions/248587/writing-a-unit-testing-framework-for-testing-sql-stored-procedures/248802#2488020Answer by maud-dib for Writing a unit testing framework for testing SQL stored proceduresmaud-dib2008-10-29T23:32:50Z2008-10-29T23:32:50Z<p>There shouldn't be enough logic in the database to make testing worthwhile.</p>