Stored procedures and unit testing
Asked Answered
K

2

21

Does anybody know of a framework (or methodology) to unit test stored procedures just using SQL and be able to produce a reasonable report as to what has passed and what has failed (something similar to CPPUnit)?

Kimber answered 5/10, 2011 at 16:2 Comment(2)
One would have to assume some sort of data state or precondition, right? Good question. Hopefully, no one answers: do not use SPs.Malpighiaceous
I guess any existing xUnit testing framework would work - you would just have a major setup dependency - the actual test database.Malpighiaceous
G
9

MyTAP will probably be what you are looking for, you can find it in Github

it describes itself as: 'a unit testing framework for MySQL 5.x written using fuctions and procedures. It includes a collection of TAP-emitting assertion functions, as well as the ability to integrate with other TAP-emitting test frameworks.'

MyTAP is now hosted at [https://github.com/hepabolu/mytap][1]

Gimpel answered 9/10, 2011 at 8:26 Comment(1)
Two comments really. 1) the question you refer to is now closed marked off topic, 2) the link you provide to github is broken, returns 404.Meg
O
1

Maybe you want to try STK/Unit, which is written in pure SQL and supports the ideas of Test Case and Test Suite. Also, supports expectations. http://stk.wikidot.com/stk-unit

Osgood answered 23/4, 2013 at 23:1 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.