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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
|
#!perl
## Test the COPY functionality
use 5.006;
use strict;
use warnings;
use Data::Dumper;
use Test::More;
use lib 't','.';
require 'dbdpg_test_setup.pl';
select(($|=1,select(STDERR),$|=1)[1]);
my $dbh = connect_database();
if (defined $dbh) {
plan tests => 55;
}
else {
plan skip_all => 'Connection to database failed, cannot continue testing';
}
ok (defined $dbh, 'Connect to database for bytea testing');
my ($sth,$count,$result,$expected,@data,$t);
my $table = 'dbd_pg_test4';
$dbh->do(qq{CREATE TABLE $table(id2 integer, val2 text)});
$dbh->commit();
my $pgversion = $dbh->{pg_server_version};
#
# Test of the pg_putline and pg_endcopy methods
#
## pg_putline should fail unless we are in a COPY IN state
$t='pg_putline fails when issued without a preceding COPY command';
eval {
$dbh->pg_putline("12\tMulberry");
};
ok ($@, $t);
$t='putline returned a value of 1 for success';
$dbh->do("COPY $table FROM STDIN");
$result = $dbh->pg_putline("12\tMulberry\n");
is ($result, 1, $t);
$t='putline returned a value of 1 for success';
$result = $dbh->pg_putline("13\tStrawberry\n");
is ($result, 1, $t);
$t='putline returned a value of 1 for success';
$result = $dbh->pg_putline("14\tBlueberry\n");
is ($result, 1, $t);
## Commands are not allowed while in a COPY IN state
$t='do() fails while in a COPY IN state';
eval {
$dbh->do(q{SELECT 'dbdpg_copytest'});
};
ok ($@, $t);
## pg_getline is not allowed as we are in a COPY_IN state
$t='pg_getline fails while in a COPY IN state';
$data[0] = '';
eval {
$dbh->pg_getline($data[0], 100);
};
ok ($@, $t);
$t='pg_endcopy returned a 1';
$result = $dbh->pg_endcopy();
is ($result, 1, $t);
## Make sure we can issue normal commands again
$dbh->do(q{SELECT 'dbdpg_copytest'});
## Make sure we are out of the COPY IN state and pg_putline no longer works
$t='pg_putline fails when issued after pg_endcopy called';
eval {
$dbh->pg_putline("16\tBlackberry");
};
ok ($@, $t);
## Check that our lines were inserted properly
$t='putline inserted values correctly';
$expected = [[12 => 'Mulberry'],[13 => 'Strawberry'],[14 => 'Blueberry']];
$result = $dbh->selectall_arrayref("SELECT id2,val2 FROM $table ORDER BY id2");
is_deeply ($result, $expected, $t);
# pg_endcopy should not work because we are no longer in a COPY state
$t='pg_endcopy fails when called twice after COPY IN';
eval {
$dbh->pg_endcopy;
};
ok ($@, $t);
$dbh->commit();
#
# Test of the pg_getline method
#
## pg_getline should fail unless we are in a COPY OUT state
$t='pg_getline fails when issued without a preceding COPY command';
eval {
$dbh->pg_getline($data[0], 100);
};
ok ($@, $t);
$t='pg_getline returns a 1';
$dbh->do("COPY $table TO STDOUT");
my ($buffer,$badret,$badval) = ('',0,0);
$result = $dbh->pg_getline($data[0], 100);
is ($result, 1, $t);
## Commands are not allowed while in a COPY OUT state
$t='do() fails while in a COPY OUT state';
eval {
$dbh->do(q{SELECT 'dbdpg_copytest'});
};
ok ($@, $t);
## pg_putline is not allowed as we are in a COPY OUT state
$t='pg_putline fails while in a COPY OUT state';
eval {
$dbh->pg_putline("99\tBogusberry");
};
ok ($@, $t);
$t='pg_getline returned a 1';
$data[1]=$data[2]=$data[3]='';
$result = $dbh->pg_getline($data[1], 100);
is ($result, 1, $t);
$t='pg_getline returned a 1';
$result = $dbh->pg_getline($data[2], 100);
is ($result, 1, $t);
$t='pg_getline returns empty on final call';
$result = $dbh->pg_getline($data[3], 100);
is ($result, '', $t);
$t='getline returned all rows successfuly';
$result = \@data;
$expected = ["12\tMulberry\n","13\tStrawberry\n","14\tBlueberry\n",''];
is_deeply ($result, $expected, $t);
## Make sure we can issue normal commands again
$dbh->do(q{SELECT 'dbdpg_copytest'});
## Make sure we are out of the COPY OUT state and pg_getline no longer works
$t='pg_getline fails when issued after pg_endcopy called';
eval {
$data[5]='';
$dbh->pg_getline($data[5], 100);
};
ok ($@, $t);
## pg_endcopy should fail because we are no longer in a COPY state
$t='pg_endcopy fails when called twice after COPY OUT';
eval {
$dbh->pg_endcopy;
};
ok ($@, $t);
##
## Test the new COPY methods
##
$dbh->do("DELETE FROM $table");
$t='pg_putcopydata fails if not after a COPY statement';
eval {
$dbh->pg_putcopydata("pizza\tpie");
};
like ($@, qr{COPY command}, $t);
$t='pg_getcopydata fails if not after a COPY statement';
eval {
$dbh->pg_getcopydata($data[0]);
};
like ($@, qr{COPY command}, $t);
$t='pg_getcopydata_async fails if not after a COPY statement';
eval {
$dbh->pg_getcopydata_async($data[0]);
};
like ($@, qr{COPY command}, $t);
$t='pg_putcopyend warns but does not die if not after a COPY statement';
eval { require Test::Warn; };
if ($@) {
pass ('Skipping Test::Warn test');
}
else {
Test::Warn::warning_like (sub { $dbh->pg_putcopyend(); }, qr/until a COPY/, $t);
}
$t='pg_getcopydata does not work if we are using COPY .. FROM';
$dbh->rollback();
$dbh->do("COPY $table FROM STDIN");
eval {
$dbh->pg_getcopydata($data[0]);
};
like ($@, qr{COPY command}, $t);
$t='pg_putcopydata does not work if we are using COPY .. TO';
$dbh->rollback();
$dbh->do("COPY $table TO STDOUT");
eval {
$dbh->pg_putcopydata("pizza\tpie");
};
like ($@, qr{COPY command}, $t);
$t='pg_putcopydata works and returns a 1 on success';
$dbh->rollback();
$dbh->do("COPY $table FROM STDIN");
$result = $dbh->pg_putcopydata("15\tBlueberry");
is ($result, 1, $t);
$t='pg_putcopydata works on second call';
$dbh->rollback();
$dbh->do("COPY $table FROM STDIN");
$result = $dbh->pg_putcopydata("16\tMoreBlueberries");
is ($result, 1, $t);
$t='pg_putcopydata fails with invalid data';
$dbh->rollback();
$dbh->do("COPY $table FROM STDIN");
eval {
$dbh->pg_putcopydata();
};
ok ($@, $t);
$t='Calling pg_getcopydata gives an error when in the middle of COPY .. FROM';
eval {
$dbh->pg_getcopydata($data[0]);
};
like ($@, qr{COPY command}, $t);
$t='Calling do() gives an error when in the middle of COPY .. FROM';
eval {
$dbh->do('SELECT 123');
};
like ($@, qr{call pg_putcopyend}, $t);
$t='pg_putcopydata works after a rude non-COPY attempt';
eval {
$result = $dbh->pg_putcopydata("17\tMoreBlueberries");
};
is ($@, q{}, $t);
is ($result, 1, $t);
$t='pg_putcopyend works and returns a 1';
eval {
$result = $dbh->pg_putcopyend();
};
is ($@, q{}, $t);
is ($result, 1, $t);
$t='pg_putcopydata fails after pg_putcopyend is called';
$dbh->commit();
eval {
$result = $dbh->pg_putcopydata('root');
};
like ($@, qr{COPY command}, $t);
$t='Normal queries work after pg_putcopyend is called';
eval {
$dbh->do('SELECT 123');
};
is ($@, q{}, $t);
$t='Data from pg_putcopydata was entered correctly';
$result = $dbh->selectall_arrayref("SELECT id2,val2 FROM $table ORDER BY id2");
$expected = [['12','Mulberry'],['13','Strawberry'],[14,'Blueberry'],[17,'MoreBlueberries']];
is_deeply ($result, $expected, $t);
$t='pg_getcopydata fails when argument is not a variable';
$dbh->do("COPY $table TO STDOUT");
eval {
$dbh->pg_getcopydata('wrongo');
};
like ($@, qr{read-only}, $t);
$t='pg_getcopydata works and returns the length of the string';
$data[0] = 'old';
eval {
$dbh->pg_getcopydata($data[0]);
};
is ($@, q{}, $t);
is ($data[0], "13\tStrawberry\n", $t);
$t='pg_getcopydata works when argument is a reference';
eval {
$dbh->pg_getcopydata(\$data[0]);
};
is ($@, q{}, $t);
is ($data[0], "14\tBlueberry\n", $t);
$t='Calling do() gives an error when in the middle of COPY .. TO';
eval {
$dbh->do('SELECT 234');
};
like ($@, qr{pg_getcopydata}, $t);
$t='Calling pg_putcopydata gives an errors when in the middle of COPY .. TO';
eval {
$dbh->pg_putcopydata('pie');
};
like ($@, qr{COPY command}, $t);
$t='pg_getcopydata returns 0 when no more data';
$dbh->pg_getcopydata(\$data[0]);
eval {
$result = $dbh->pg_getcopydata(\$data[0]);
};
is ($@, q{}, $t);
is ($data[0], '', $t);
is ($result, -1, $t);
$t='Normal queries work after pg_getcopydata runs out';
eval {
$dbh->do('SELECT 234');
};
is ($@, q{}, $t);
SKIP: {
$pgversion < 80200 and skip ('Server version 8.2 or greater needed for test', 1);
$t='pg_getcopydata works when pulling from an empty table into an empty var';
$dbh->do(q{COPY (SELECT 1 FROM pg_class LIMIT 0) TO STDOUT});
eval {
my $newvar;
$dbh->pg_getcopydata($newvar);
};
is ($@, q{}, $t);
}
#
# Make sure rollback and commit reset our internal copystate tracking
#
$t='commit resets COPY state';
$dbh->do("COPY $table TO STDOUT");
$dbh->commit();
eval {
$dbh->do(q{SELECT 'dbdpg_copytest'});
};
ok (!$@, $t);
$t='rollback resets COPY state';
$dbh->do("COPY $table TO STDOUT");
$dbh->rollback();
eval {
$dbh->do(q{SELECT 'dbdpg_copytest'});
};
ok (!$@, $t);
#
# Keep old-style calls around for backwards compatibility
#
$t=q{old-style dbh->func('text', 'putline') still works};
$dbh->do("COPY $table FROM STDIN");
$result = $dbh->func("13\tOlive\n", 'putline');
is ($result, 1, $t);
$t=q{old-style dbh->func(var, length, 'getline') still works};
$dbh->pg_endcopy;
$dbh->do("COPY $table TO STDOUT");
$result = $dbh->func($data[0], 100, 'getline');
is ($result, 1, $t);
1 while ($result = $dbh->func($data[0], 100, 'getline'));
$dbh->do("DROP TABLE $table");
$dbh->commit();
cleanup_database($dbh,'test');
$dbh->disconnect;
|