Hacker News new | past | comments | ask | show | jobs | submit login
How PostgreSQL is tested [video] (pgconf.us)
120 points by linuxhiker on Feb 15, 2017 | hide | past | favorite | 12 comments



Anyone feel like giving a summary?


Postgresql testing works the same way it has worked for the last 20-30 years. Each test consists of a SQL script, an expected result file, and a result file. A shell script runs the SQL script through the pg commandline, and dumps the results to the results file. Diff then tells you if the test pass. Also the shell scripts were rewritten in C for cross platform support. Not available via SQL, ie vacum? No tests. Concurrent modifications? No tests. Testing query plans that don't use order by have fun.

They have a new test suite built around TAP (https://testanything.org/) and perl so now they have automated tests for more things like certs, and replication.


There are three basic suites of tests:

- pg_regress, which is as you say a set of SQL scripts run on a running server with generated output compared to the expected output. There could be multiple expected outputs, see for example float tests.

- pg_isolation_test, which is a part you are misunderstanding. This facility has been introduced with SSI (serializable transactions) to test concurrency.

- TAP tests (author of the replication/backup/recovery part here), which has roughly three test suites:

-- src/bin/ to test all the in-core binaries

-- src/test/ssl to test SSL configurations. This has proved to be useful lately when moving all the SSL parameters to be reloadable.

-- src/test/recovery to test all the kind of replication scenarios.

There are as well modules in src/test/modules that use TAP tests to run regressions on pg_dump, commit timestamps and extension interactions.


Thanks for the helpful detail!

Are there, in fact, no tests on VACUUM and others? Is that a problem? Are there plans to add them? Would you be looking for contributors to do so?


The query VACUUM is being tested via SQL. Now if you are referring to autovacuum, there are no tests directly designed with this purpose in mind. autovacuum is running in any instance running the regression tests as it is always enabled by default.


> Testing query plans that don't use order by have fun

diff $(sort output) $(sort expected)


You transparently lazy bastard.

I'm hoping for one too. I have become frighteningly reliant on the amazing HN community for their tl;dr's.

I literally started watching the video so I could do one and immediately felt guilty because I realize I need to add better tests to my latest. So back to coding instead.


TL;DRs for hour-long videos are reasonable, I feel. I do get annoyed when someone does a TL;DR on a four-paragraph article, though...


can you tl;dr your post please?


TL;DR: 4—hour videos yes, 4 paragraphs no.


It's not about being lazy, it's about being efficient!





Consider applying for YC's W25 batch! Applications are open till Nov 12.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: