vote up 5 vote down star
2

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.

flag

56% accept rate
A different but related scenario: I have seen cases where foreign keys were accidentally dropped and caused havoc after a month or two. It might be a good idea to have automated tests for scenarios like this. – vfilby Oct 29 '08 at 22:18
of, course.. you could actually unit test your entire database, setting scenarios , testing them and then rolling back the database to its previous state. Every major RDMBS has tools to do that. – Nikola Stjelja Oct 29 '08 at 22:51
It is silly, stupid, needless or what? Yes – FlySwat Oct 29 '08 at 23:41
Any concrete arugments – Nikola Stjelja Oct 30 '08 at 5:35

4 Answers

vote up 1 vote down

There's already one testing framework for Sql Server - TSQLUnit. Maybe you can get some useful info from it.

link|flag
Thnx for the link, I will sure check it. – Nikola Stjelja Oct 29 '08 at 22:14
vote up 0 vote down

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.

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.

I have an open mind though. If there are benefits I am overlooking please do tell me.

Cheers, V

link|flag
If it touches the database it's not a unit test – maud-dib Oct 29 '08 at 23:31
Then call it an integration test. I don't think we are going to get a better answer by arguing semantics. – vfilby Oct 29 '08 at 23:40
vote up 0 vote down

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.

If you are developing a multi tier application it makes sense to separate each part and test it separately.

link|flag
I guess in my mind, databases were primarily meant for data, I try to keep logic out of the database. Even the majority of my stored procs are relatively logic free. I see the point for DBA's, I'd like to keep them away from my unit tests :) – vfilby Oct 29 '08 at 22:57
Yes they are, but they also have data manipulation capabilites. What we are usaually doing is providing bussiness logic in our software mixed with calls to the database, but what we really need is to pass some paramteres and expect a result in one call. When we do that, we need to automate tests. – Nikola Stjelja Oct 30 '08 at 5:37
vote up 0 vote down

There shouldn't be enough logic in the database to make testing worthwhile.

link|flag
1  
Why not? A database is a powerful tool which in most cases sits unused to the full. Why not use it? – Nikola Stjelja Oct 30 '08 at 5:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.