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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
#!perl -w
#
# $Id: 60leaks.t 11244 2008-05-11 15:13:10Z capttofu $
#
# This is a skeleton test. For writing new tests, take this file
# and modify/extend it.
#
use strict;
use DBI;
use Test::More;
use Carp qw(croak);
use Data::Dumper;
use vars qw($table $test_dsn $test_user $test_password);
use lib 't', '.';
require 'lib.pl';
my $COUNT_CONNECT = 4000; # Number of connect/disconnect iterations
my $COUNT_PREPARE = 10000; # Number of prepare/execute/finish iterations
my $have_storable;
if (!$ENV{SLOW_TESTS}) {
plan skip_all => "Skip \$ENV{SLOW_TESTS} is not set\n";
}
eval { require Proc::ProcessTable; };
if ($@) {
plan skip_all => "Skip Proc::ProcessTable not installed \n";
}
eval { require Storable };
$have_storable = $@ ? 0 : 1;
my ($dbh, $sth);
eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password,
{ RaiseError => 1, PrintError => 1, AutoCommit => 0 });};
if ($@) {
plan skip_all =>
"ERROR: $@. Can't continue test";
}
plan tests => 21;
sub size {
my($p, $pt);
$pt = Proc::ProcessTable->new('cache_ttys' => $have_storable);
for $p (@{$pt->table()}) {
if ($p->pid() == $$) {
return $p->size();
}
}
die "Cannot find my own process?!?\n";
exit 0;
}
ok $dbh->do("DROP TABLE IF EXISTS $table");
my $create= <<EOT;
CREATE TABLE $table (
id INT(4) NOT NULL DEFAULT 0,
name VARCHAR(64) NOT NULL DEFAULT ''
)
EOT
ok $dbh->do($create);
my ($size, $prev_size, $ok, $not_ok, $dbh2, $msg);
print "Testing memory leaks in connect/disconnect\n";
$msg = "Possible memory leak in connect/disconnect detected";
$ok = 0;
$not_ok = 0;
$prev_size= undef;
for (my $i = 0; $i < $COUNT_CONNECT; $i++) {
eval {$dbh2 = DBI->connect($test_dsn, $test_user, $test_password,
{ RaiseError => 1, PrintError => 1, AutoCommit => 0 });};
if ($@) {
$not_ok++;
last;
}
if ($i % 100 == 99) {
$size = size();
if (defined($prev_size)) {
if ($size == $prev_size) {
$ok++;
}
else {
$not_ok++;
}
}
$prev_size = $size;
}
}
$dbh2->disconnect;
ok $ok, "\$ok $ok";
ok !$not_ok, "\$not_ok $not_ok";
cmp_ok $ok, '>', $not_ok, "\$ok $ok \$not_ok $not_ok";
print "Testing memory leaks in prepare/execute/finish\n";
$msg = "Possible memory leak in prepare/execute/finish detected";
$ok = 0;
$not_ok = 0;
undef $prev_size;
for (my $i = 0; $i < $COUNT_PREPARE; $i++) {
my $sth = $dbh->prepare("SELECT * FROM $table");
$sth->execute();
$sth->finish();
if ($i % 100 == 99) {
$size = size();
if (defined($prev_size))
{
if ($size == $prev_size) {
$ok++;
}
else {
$not_ok++;
}
}
$prev_size = $size;
}
}
ok $ok;
ok !$not_ok, "\$ok $ok \$not_ok $not_ok";
cmp_ok $ok, '>', $not_ok, "\$ok $ok \$not_ok $not_ok";
print "Testing memory leaks in fetchrow_arrayref\n";
$msg= "Possible memory leak in fetchrow_arrayref detected";
$sth= $dbh->prepare("INSERT INTO $table VALUES (?, ?)") ;
my $dataref= [[1, 'Jochen Wiedmann'],
[2, 'Andreas Knig'],
[3, 'Tim Bunce'],
[4, 'Alligator Descartes'],
[5, 'Jonathan Leffler']];
for (@$dataref) {
ok $sth->execute($_->[0], $_->[1]),
"insert into $table values ($_->[0], '$_->[1]')";
}
$ok = 0;
$not_ok = 0;
undef $prev_size;
for (my $i = 0; $i < $COUNT_PREPARE; $i++) {
{
my $sth = $dbh->prepare("SELECT * FROM $table");
$sth->execute();
my $row;
while ($row = $sth->fetchrow_arrayref()) { }
$sth->finish();
}
if ($i % 100 == 99) {
$size = size();
if (defined($prev_size)) {
if ($size == $prev_size) {
++$ok;
}
else {
++$not_ok;
}
}
$prev_size = $size;
}
}
ok $ok;
ok !$not_ok, "\$ok $ok \$not_ok $not_ok";
cmp_ok $ok, '>', $not_ok, "\$ok $ok \$not_ok $not_ok";
print "Testing memory leaks in fetchrow_hashref\n";
$msg = "Possible memory leak in fetchrow_hashref detected";
$ok = 0;
$not_ok = 0;
undef $prev_size;
for (my $i = 0; $i < $COUNT_PREPARE; $i++) {
{
my $sth = $dbh->prepare("SELECT * FROM $table");
$sth->execute();
my $row;
while ($row = $sth->fetchrow_hashref()) { }
$sth->finish();
}
if ($i % 100 == 99) {
$size = size();
if (defined($prev_size)) {
if ($size == $prev_size) {
++$ok;
}
else {
++$not_ok;
}
}
$prev_size = $size;
}
}
ok $ok;
ok !$not_ok, "\$ok $ok \$not_ok $not_ok";
cmp_ok $ok, '>', $not_ok, "\$ok $ok \$not_ok $not_ok";
ok $dbh->do("DROP TABLE $table");
ok $dbh->disconnect;
|