Thread: pgsql: pg_basebackup: Add tests for -X option

pgsql: pg_basebackup: Add tests for -X option

From
Peter Eisentraut
Date:
pg_basebackup: Add tests for -X option

Reviewed-by: Michael Paquier <michael.paquier@gmail.com>

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/90102bb538831fca734cc9fa1450b97c7d4e1190

Modified Files
--------------
src/bin/pg_basebackup/t/010_pg_basebackup.pl |   13 ++++++++++++-
src/test/perl/TestLib.pm                     |   10 ++++++++++
2 files changed, 22 insertions(+), 1 deletion(-)


Re: pgsql: pg_basebackup: Add tests for -X option

From
Michael Paquier
Date:
On Wed, Jul 29, 2015 at 9:34 AM, Peter Eisentraut <peter_e@gmx.net> wrote:
> pg_basebackup: Add tests for -X option

One thing that I noticed after more tests is that actually the LSN
position restart_lsn is not necessarily 8-character long as this
tests, but it can be 7-character length as well:
like($lsn, qr!^0/[0-9A-Z]{8}$!, 'restart LSN of slot has advanced');
So you may have random failures depending on how much the LSN has
advanced depending on the number of base backups taken on the server
during the tests (found out the problem on Windows because we need to
skip some tests as there is no symlink support). I would suggest that
instead of checking the format of restart_lsn we encapsulate it within
pg_xlogfile_name and check if result has a correct length of 24
characters with characters 0-9A-F, like in the patch attached.
Sorry for not noticing that before, attached is a patch to fix the issue.
--
Michael

Attachment