mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
The current code can have pg_isready unexpectedly succeed if there is a server running on the default port. To avoid this we delay running the test until after a node has been created but before it starts, and then use that node's port, so we are fairly sure there is nothing running on the port. Backpatch to all live branches.
22 lines
440 B
Perl
22 lines
440 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
use PostgresNode;
|
|
use TestLib;
|
|
use Test::More tests => 10;
|
|
|
|
program_help_ok('pg_isready');
|
|
program_version_ok('pg_isready');
|
|
program_options_handling_ok('pg_isready');
|
|
|
|
my $node = get_new_node('main');
|
|
$node->init;
|
|
|
|
$node->command_fails(['pg_isready'], 'fails with no server running');
|
|
|
|
$node->start;
|
|
|
|
$node->command_ok(
|
|
[ 'pg_isready', "--timeout=$TestLib::timeout_default" ],
|
|
'succeeds with server running');
|