/usr/share/perl5/Test/Database/Driver.pm is in libtest-database-perl 1.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 | package Test::Database::Driver;
use strict;
use warnings;
use Carp;
use File::Spec;
use File::Path;
use version;
use YAML::Tiny qw( LoadFile DumpFile );
use Cwd;
use Test::Database::Handle;
#
# GLOBAL CONFIGURATION
#
# the location where all drivers-related files will be stored
my $KEY = '';
my $login = getlogin() || getpwuid($<);
$login =~ s/\W+//g;
my $root = File::Spec->rel2abs(
File::Spec->catdir( File::Spec->tmpdir(), "Test-Database-$login" ) );
# generic driver class initialisation
sub __init {
my ($class) = @_;
# create directory if needed
my $dir = $class->base_dir();
if ( !-e $dir ) {
mkpath( [$dir] );
}
elsif ( !-d $dir ) {
croak "$dir is not a directory. Initializing $class failed";
}
# load the DBI driver (may die)
DBI->install_driver( $class->name() );
}
#
# METHODS
#
sub new {
my ( $class, %args ) = @_;
if ( $class eq __PACKAGE__ ) {
if ( exists $args{driver_dsn} ) {
my ( $scheme, $driver, $attr_string, $attr_hash, $driver_dsn )
= DBI->parse_dsn( $args{driver_dsn} );
$args{dbd} = $driver;
}
croak "dbd or driver_dsn parameter required" if !exists $args{dbd};
eval "require Test::Database::Driver::$args{dbd}"
or do { $@ =~ s/ at .*?\z//s; croak $@; };
$class = "Test::Database::Driver::$args{dbd}";
$class->__init();
}
my $self = bless {
username => '',
password => '',
%args,
dbd => $class->name() || $args{dbd},
},
$class;
$self->_load_mapping();
# try to connect before returning the object
if ( !$class->is_filebased() ) {
eval {
DBI->connect_cached( $self->connection_info(),
{ PrintError => 0 } );
} or return;
}
return $self;
}
sub _mapping_file {
return File::Spec->catfile( $_[0]->base_dir(), 'mapping.yml' );
}
sub available_dbname {
my ($self) = @_;
my $name = $self->_basename();
my %taken = map { $_ => 1 } $self->databases();
my $n = 0;
$n++ while $taken{"$name$n"};
return "$name$n";
}
sub _load_mapping {
my ($self, $file)= @_;
$file = $self->_mapping_file() if ! defined $file;
# basic mapping info
$self->{mapping} = {};
return if !-e $file;
# load mapping from file
my $mapping = LoadFile( $file );
$self->{mapping} = $mapping->{$self->driver_dsn()} || {};
# remove stale entries
$self->_save_mapping( $file ) if $self->_check_mapping();
}
sub _save_mapping {
my ($self, $file )= @_;
$file = $self->_mapping_file() if ! defined $file;
# update mapping information
my $mapping = {};
$mapping = LoadFile( $file ) if -e $file;
$mapping->{ $self->driver_dsn() } = $self->{mapping};
# save mapping information
DumpFile( "$file.tmp", $mapping );
rename "$file.tmp", $file
or croak "Can't rename $file.tmp to $file: $!";
}
sub _check_mapping {
my ($self) = @_;
my $mapping = $self->{mapping};
my %database = map { $_ => undef } $self->databases();
my $updated;
# check that all databases in the mapping exist
for my $cwd ( keys %$mapping ) {
if ( !exists $database{ $mapping->{$cwd} } ) {
delete $mapping->{$cwd};
$updated++;
}
}
return $updated;
}
sub make_dsn {
my ($self, @args, @pairs) = @_;
push @pairs, join '=', splice @args, 0, 2 while @args;
my $dsn = $self->driver_dsn();
return $dsn
. ( $dsn =~ /^dbi:[^:]+:$/ ? '' : ';' )
. join( ';', @pairs );
}
sub make_handle {
my ($self) = @_;
my $handle;
# get the database name from the mapping
my $dbname = $self->{mapping}{ cwd() };
# if the database still exists, return it
if ( $dbname && grep { $_ eq $dbname } $self->databases() ) {
$handle = Test::Database::Handle->new(
dsn => $self->dsn($dbname),
username => $self->username(),
password => $self->password(),
name => $dbname,
driver => $self,
);
}
# otherwise create the database and update the mapper
else {
$handle = $self->create_database();
$self->{mapping}{ cwd() } = $handle->{name};
$self->_save_mapping();
}
return $handle;
}
sub version_matches {
my ( $self, $request ) = @_;
# string tests
my $version_string = $self->version_string();
return
if exists $request->{version}
&& $version_string ne $request->{version};
return
if exists $request->{regex_version}
&& $version_string !~ $request->{regex_version};
# numeric tests
my $version = $self->version();
return
if exists $request->{min_version}
&& $version < $request->{min_version};
return
if exists $request->{max_version}
&& $version >= $request->{max_version};
return 1;
}
#
# ACCESSORS
#
sub name { return ( $_[0] =~ /^Test::Database::Driver::([:\w]*)/g )[0]; }
*dbd = \&name;
sub base_dir {
my ($self) = @_;
my $class = ref $self || $self;
return $root if $class eq __PACKAGE__;
my $dir = File::Spec->catdir( $root, $class->name() );
return $dir if !ref $self; # class method
return $self->{base_dir} ||= $dir; # may be overriden in new()
}
sub version {
no warnings;
return $_[0]{version}
||= version->new( $_[0]->_version() =~ /^([0-9._]*[0-9])/ );
}
sub version_string {
return $_[0]{version_string} ||= $_[0]->_version();
}
sub dbd_version { return "DBD::$_[0]{dbd}"->VERSION; }
sub driver_dsn { return $_[0]{driver_dsn} ||= $_[0]->_driver_dsn() }
sub username { return $_[0]{username} }
sub password { return $_[0]{password} }
sub connection_info {
return ( $_[0]->driver_dsn(), $_[0]->username(), $_[0]->password() );
}
# THESE MUST BE IMPLEMENTED IN THE DERIVED CLASSES
sub drop_database { die "$_[0] doesn't have a drop_database() method\n" }
sub _version { die "$_[0] doesn't have a _version() method\n" }
# create_database creates the database and returns a handle
sub create_database {
my $class = ref $_[0] || $_[0];
goto &_filebased_create_database if $class->is_filebased();
die "$class doesn't have a create_database() method\n";
}
sub databases {
goto &_filebased_databases if $_[0]->is_filebased();
die "$_[0] doesn't have a databases() method\n";
}
# THESE MAY BE OVERRIDDEN IN THE DERIVED CLASSES
sub is_filebased {0}
sub _driver_dsn { join ':', 'dbi', $_[0]->name(), ''; }
sub dsn {
my ( $self, $dbname ) = @_;
return $self->make_dsn( database => $dbname );
}
#
# PRIVATE METHODS
#
sub _set_key {
$KEY = $_[1] || '';
croak "Invalid format for key '$KEY'" if $KEY !~ /^\w*$/;
}
sub _basename {
lc join '_', 'TDD', $_[0]->name(), $login, ( $KEY ? $KEY : (), '' );
}
# generic implementations for file-based drivers
sub _filebased_databases {
my ($self) = @_;
my $dir = $self->base_dir();
my $basename = qr/^@{[$self->_basename()]}/;
opendir my $dh, $dir or croak "Can't open directory $dir for reading: $!";
my @databases = grep {/$basename/} File::Spec->no_upwards( readdir($dh) );
closedir $dh;
return @databases;
}
sub _filebased_create_database {
my ( $self ) = @_;
my $dbname = $self->available_dbname();
return Test::Database::Handle->new(
dsn => $self->dsn($dbname),
name => $dbname,
driver => $self,
);
}
'CONNECTION';
__END__
=head1 NAME
Test::Database::Driver - Base class for Test::Database drivers
=head1 SYNOPSIS
package Test::Database::Driver::MyDatabase;
use strict;
use warnings;
use Test::Database::Driver;
our @ISA = qw( Test::Database::Driver );
sub _version {
my ($class) = @_;
...;
return $version;
}
sub create_database {
my ( $self ) = @_;
...;
return $handle;
}
sub drop_database {
my ( $self, $name ) = @_;
...;
}
sub databases {
my ($self) = @_;
...;
return @databases;
}
=head1 DESCRIPTION
C<Test::Database::Driver> is a base class for creating C<Test::Database>
drivers.
=head1 METHODS
The class provides the following methods:
=over 4
=item new( %args )
Create a new C<Test::Database::Driver> object.
If called as C<< Test::Database::Driver->new() >>, requires a C<driver>
parameter to define the actual object class.
=item make_handle()
Create a new C<Test::Database::Handle> object, attached to an existing database
or to a newly created one.
The decision whether to create a new database or not is made by
C<Test::Database::Driver> based on the information in the mapper.
See L<TEMPORARY STORAGE ORGANIZATION> for details.
=item make_dsn( %args )
Return a Data Source Name based on the driver's DSN, with the key/value
pairs contained in C<%args> as additional parameters.
This is typically used by C<dsn()> to make a DSN for a specific database,
based on the driver's DSN.
=item name()
=item dbd()
The driver's short name (everything after C<Test::Database::Driver::>).
=item base_dir()
The directory where the driver should store all the files for its databases,
if needed. Typically used by file-based database drivers.
=item version()
C<version> object representing the version of the underlying database enginge.
This object is build with the return value of C<_version()>.
=item version_string()
Version string representing the version of the underlying database enginge.
This string is the actual return value of C<_version()>.
=item dbd_version()
The version of the DBD used to connect to the database engine, as returned
by C<VERSION()>.
=item driver_dsn()
Return a driver Data Source Name, sufficient to connect to the database
engine without specifying an actual database.
=item username()
Return the connection username.
=item password()
Return the connection password.
=item connection_info()
Return the connection information triplet (C<driver_dsn>, C<username>,
C<password>).
=item version_matches( $request )
Return a boolean indicating if the driver's version matches the version
constraints in the given request (see L<Test::Database> documentation's
section about requests).
=back
The class also provides a few helpful commands that may be useful for driver
authors:
=over 4
=item available_dbname()
Return an unused database name that can be used to create a new database
for the driver.
=item dsn( $dbname )
Build a Data Source Name for the database with the given C<$dbname>,
based on the driver's DSN.
=back
=head1 WRITING A DRIVER FOR YOUR DATABASE OF CHOICE
The L<SYNOPSIS> contains a good template for writing a
C<Test::Database::Driver> class.
Creating a driver requires writing the following methods:
=over 4
=item _version()
Return the version of the underlying database engine.
=item create_database( $name )
Create the database for the corresponding DBD driver.
Return a C<Test::Database::Handle> in case of success, and nothing in
case of failure to create the database.
=item drop_database( $name )
Drop the database named C<$name>.
=back
Some methods have defaults implementations in C<Test::Database::Driver>,
but those can be overridden in the derived class:
=over 4
=item is_filebased()
Return a boolean value indicating if the database engine is file-based
or not, i.e. if all the database information is stored in a file or a
directory, and no external database server is needed.
=item databases()
Return the names of all existing databases for this driver as a list
(the default implementation is only valid for file-based drivers).
=back
=head1 TEMPORARY STORAGE ORGANIZATION
Subclasses of C<Test::Database::Driver> store useful information
in the system's temporary directory, under a directory named
F<Test-Database-$user> (C<$user> being the current user's name).
That directory contains the following files:
=over 4
=item database files
The database files and directories created by file-based drivers
controlled by C<Test::Database> are stored here, under names matching
F<tdd_B<DRIVER>_B<N>>, where B<DRIVER> is the lowercased name of the
driver and B<N> is a number.
=item the F<mapping.yml> file
A YAML file containing a C<cwd()> / database name mapping, to enable a
given test suite to receive the same database handles in all the test
scripts that call the C<Test::Database->handles()> method.
=back
=head1 AUTHOR
Philippe Bruhat (BooK), C<< <book@cpan.org> >>
=head1 COPYRIGHT
Copyright 2008-2010 Philippe Bruhat (BooK), all rights reserved.
=head1 LICENSE
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
|