1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00
DBD-SQLite-SQLcipher/t/40prepcached.t
2009-04-03 17:07:49 +00:00

125 lines
3.2 KiB
Perl

#!/usr/bin/perl
# This is a regression test for bug #15186:
# http://rt.cpan.org/Public/Bug/Display.html?id=15186
# About re-using statements with prepare_cached().
use strict;
BEGIN {
$| = 1;
$^W = 1;
}
use t::lib::Test;
use vars qw($state);
#
# Include lib.pl
#
do 't/lib.pl';
if ($@) {
print STDERR "Error while executing lib.pl: $@\n";
exit 10;
}
sub ServerError() {
print STDERR ("Cannot connect: ", $DBI::errstr, "\n",
"\tEither your server is not up and running or you have no\n",
"\tpermissions for acessing the DSN DBI:SQLite:dbname=foo.\n",
"\tThis test requires a running server and write permissions.\n",
"\tPlease make sure your server is running and you have\n",
"\tpermissions, then retry.\n");
exit 10;
}
sub TrueRows($) {
my ($sth) = @_;
my $count = 0;
while ($sth->fetchrow_arrayref) {
++$count;
}
$count;
}
#
# Main loop; leave this untouched, put tests after creating
# the new table.
#
my ($dbh, $table, $def, $cursor, $sth);
while (Testing()) {
#
# Connect to the database
Test($state or ($dbh = DBI->connect("DBI:SQLite:dbname=foo", '',
'')))
or ServerError();
#
# Find a possible new table name
#
Test($state or ($table = FindNewTable($dbh)))
or DbiError($dbh->err, $dbh->errstr);
#
# Create a new table; EDIT THIS!
#
Test($state or ($def = TableDefinition($table,
["id", "INTEGER", 4, 0],
["name", "CHAR", 64, 0]),
$dbh->do($def)))
or DbiError($dbh->err, $dbh->errstr);
#
# This section should exercise the sth->rows
# method by preparing a statement, then finding the
# number of rows within it.
# Prior to execution, this should fail. After execution, the
# number of rows affected by the statement will be returned.
#
Test($state or $dbh->do("INSERT INTO $table"
. " VALUES( 1, 'Alligator Descartes' )"))
or DbiError($dbh->err, $dbh->errstr);
Test($state or $dbh->do("INSERT INTO $table"
. " VALUES( 2987, 'Not used' )"))
or DbiError($dbh->err, $dbh->errstr);
Test($state or $dbh->do("INSERT INTO $table"
. " VALUES( 2, 'Gary Shea' )"))
or DbiError($dbh->err, $dbh->errstr);
my $test_query = "SELECT name FROM $table WHERE id = ?";
Test($state or $sth = $dbh->prepare_cached($test_query))
or DbiError($dbh->err, $dbh->errstr);
Test($state or (($dbh->selectrow_array($sth, undef, 1))[0] eq "Alligator Descartes"))
or DbiError($dbh->err, $dbh->errstr);
Test($state or $sth = $dbh->prepare_cached($test_query))
or DbiError($dbh->err, $dbh->errstr);
Test($state or (($dbh->selectrow_array($sth, undef, 1))[0] eq "Alligator Descartes"))
or DbiError($dbh->err, $dbh->errstr);
Test($state or (($dbh->selectrow_array($sth, undef, 2))[0] eq "Gary Shea"))
or DbiError($dbh->err, $dbh->errstr);
Test($state or $sth = $dbh->prepare_cached($test_query))
or DbiError($dbh->err, $dbh->errstr);
Test($state or (($dbh->selectrow_array($sth, undef, 2))[0] eq "Gary Shea"))
or DbiError($dbh->err, $dbh->errstr);
#
# Finally drop the test table.
#
Test($state or $dbh->do("DROP TABLE $table"))
or DbiError($dbh->err, $dbh->errstr);
}