vote up 6 vote down star
2

Anyone have any experience or tools for unit testing PL/SQL. The best looking tool I've seen for this seems to be Quests Code Tester, but i'm not sure how well that would integration with continuous integration tools or command line testing?

flag

77% accept rate

7 Answers

vote up 4 vote down check

I use utPLSQL as the framework and OUnit as the client. utPLSQL isn't really meant to be used by itself, a good graphical client is required. OUnit is the predecessor to Qute. Qute is also a good tool but more complex than my requirements - it allows you to construct tests using a GUI and does good stuff like test code generation.

Edit: My understanding is that utPLSQL stores all results in database tables, including all historical results which would make a good data source for gathering statistics for continuous integration. You can also define test groups so a single call to utPLSQL can call multiple test packages.

link|flag
vote up 3 vote down

Check utPLSQL out. I found it somewhat difficult to start with, but i think it does the job reasonably well.

As for continuous integration tools, I used to create usual tests (NUnit, C#) that just called the stored procedures created with utPLSQL and checked their result out.

link|flag
vote up 2 vote down

There are a few listed on the wikipedia : http://en.wikipedia.org/wiki/List_of_unit_testing_frameworks#PL.2FSQL

link|flag
vote up 1 vote down

I found this interesting post about the continuous integration for PL/SQL projects.

It meanly deals with the unit testing of PL/SQL code, using the previously listed utPLSQL framework...

link|flag
looks very interesting – Matthew Watson May 21 at 3:22
vote up 1 vote down

I have created and using PL/SQL unit testing framework using Ruby library ruby-plsql.

It provides much shorter and more readable tests than utPLSQL and gives more flexibility compared to GUI tools (like Quest Code Tester or SQLDeveloper 2.1).

link|flag
vote up 0 vote down

I'm using python py.test with cx_oracle to build test scripts for pl/sql packages. Works nice so far.

link|flag
vote up 0 vote down

I cannot find ounit anywhere. Does someone has it in hist archive somewhere?

link|flag
Looks like it's available Here: utplsql.oracledeveloper.nl/newforum/… – Sean McMillan Nov 20 at 17:19

Your Answer

Get an OpenID
or

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