1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
#!perl
## Test the "txn_time" action
use 5.006;
use strict;
use warnings;
use Data::Dumper;
use Test::More tests => 14;
use lib 't','.';
use CP_Testing;
use vars qw/$dbh $result $t $host $dbname/;
my $cp = CP_Testing->new( {default_action => 'txn_time'} );
$dbh = $cp->test_database_handle();
$dbh->{AutoCommit} = 0;
$dbname = $cp->get_dbname;
$host = $cp->get_host();
my $S = q{Action 'txn_time'};
my $label = 'POSTGRES_TXN_TIME';
my $ver = $dbh->{pg_server_version};
if ($ver < 80300) {
SKIP: {
skip 'Cannot test txn_time on Postgres 8.2 or older', 14;
}
exit;
}
$t = qq{$S self-identifies correctly};
$result = $cp->run(q{-w 0});
like ($result, qr{^$label}, $t);
$t = qq{$S identifies host};
like ($result, qr{host:$host}, $t);
$t = qq{$S accepts valid -w input};
for ('1 second',
'1 minute',
'1 hour',
'1 day'
) {
like ($cp->run(qq{-w "$_"}), qr/^$label/, $t . " ($_)");
}
$t = qq{$S rejects invalid -w input};
for ('-1 second',
'abc'
) {
like ($cp->run(qq{-w "$_"}), qr/^ERROR:.*?must be a valid time/, $t . " ($_)");
}
$t = qq{$S flags no transactions};
like ($cp->run(q{-w 0 --includeuser=gandalf}), qr{No transactions}, $t);
if ($cp->run(q{-w 0 --output=simple}) > 0) {
BAIL_OUT(qq{Cannot continue with "$S" test: txn_time count > 0\nIs someone else connected to your test database?});
}
$t = qq{$S finds no txn};
like ($cp->run(q{-w 0 --include=nosuchtablename}), qr/$label OK:.*No transactions/, $t);
$t = qq{$S identifies no running txn};
like ($result, qr{longest txn: 0s}, $t);
$t .= ' (MRTG)';
like ($cp->run(q{--output=mrtg -w 0}), qr{0\n0\n\nDB: $dbname\n}, $t);
$t = qq{$S identifies a one-second running txn};
my $idle_dbh = $cp->test_database_handle();
$idle_dbh->do('SELECT 1');
sleep(1);
like ($cp->run(q{-w 0}), qr{longest txn: 1s}, $t);
$t .= ' (MRTG)';
my $query_patten = ($ver >= 90200) ? "SELECT 1" : "<IDLE> in transaction";
like ($cp->run(q{--output=mrtg -w 0}), qr{\d+\n0\n\nPID:\d+ database:$dbname username:\w+ query:$query_patten\n}, $t);
$idle_dbh->commit;
exit;
|