Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit testing postgres database tools

Which is the best tool for postgresql testing ? I am newly placed in a company where my role is this. I want to know some info regarding tools.

like image 233
user2986439 Avatar asked Nov 13 '13 07:11

user2986439


2 Answers

I don't know if you are still looking for a testing suite. I am facing the same problem as you were and found a couple of testing suites on Wikipedia.

Looks like only pgTAP is still actively developed. To me it seems to have a steep learning curve but I think in the long run it will pay to use such a tool for automated testing.

like image 72
Tim Avatar answered Sep 18 '22 22:09

Tim


Here is a new one on GitHub called Plpgunit.

https://github.com/mixerp/plpgunit/

Plpgunit does not require any additional dependencies and is ready to be used on your PostgreSQL Server instance.

To install this framework, you will have to run the SQL script file. So, it seems easy to give a try.

like image 38
Nick Binnet Avatar answered Sep 18 '22 22:09

Nick Binnet