Move tmpdir() to DBICTest::Util where it belongs
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 DBICTest;
1c339d71 3
c0329273 4# load early so that `perl -It/lib -MDBICTest` keeps working
5use ANFANG;
6
1c339d71 7use strict;
8use warnings;
39568b8a 9
970ed9a1 10# this noop trick initializes the STDOUT, so that the TAP::Harness
11# issued IO::Select->can_read calls (which are blocking wtf wtf wtf)
12# keep spinning and scheduling jobs
13# This results in an overall much smoother job-queue drainage, since
14# the Harness blocks less
15# (ideally this needs to be addressed in T::H, but a quick patchjob
16# broke everything so tabling it for now)
17BEGIN {
18 # FIXME - there probably is some way to determine a harness run (T::H or
19 # prove) but I do not know it offhand, especially on older environments
20 # Go with the safer option
21 if ($INC{'Test/Builder.pm'}) {
22 local $| = 1;
23 print "#\n";
24 }
25}
26
27
439a7283 28use DBICTest::Util qw( local_umask tmpdir await_flock dbg DEBUG_TEST_CONCURRENCY_LOCKS );
1c339d71 29use DBICTest::Schema;
218b7c12 30use DBICTest::Util::LeakTracer qw/populate_weakregistry assert_empty_weakregistry/;
bbf6a9a5 31use DBIx::Class::_Util qw( detected_reinvoked_destructor scope_guard );
a258bfc7 32use Carp;
de306d4b 33use Path::Class::File ();
027e3cc6 34use Fcntl qw/:DEFAULT :flock/;
2525160d 35use Config;
17e7d7f0 36
37=head1 NAME
38
a5a7bb73 39DBICTest - Library to be used by DBIx::Class test scripts
17e7d7f0 40
41=head1 SYNOPSIS
42
c0329273 43 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
44
45 use warnings;
46 use strict;
17e7d7f0 47 use Test::More;
c0329273 48 use DBICTest;
8273e845 49
17e7d7f0 50 my $schema = DBICTest->init_schema();
51
52=head1 DESCRIPTION
53
8273e845 54This module provides the basic utilities to write tests against
17e7d7f0 55DBIx::Class.
56
a5a7bb73 57=head1 EXPORTS
58
59The module does not export anything by default, nor provides individual
60function exports in the conventional sense. Instead the following tags are
61recognized:
62
63=head2 :DiffSQL
64
65Same as C<use SQL::Abstract::Test
66qw(L<is_same_sql_bind|SQL::Abstract::Test/is_same_sql_bind>
67L<is_same_sql|SQL::Abstract::Test/is_same_sql>
68L<is_same_bind|SQL::Abstract::Test/is_same_bind>)>
69
70=head2 :GlobalLock
71
72Some tests are very time sensitive and need to run on their own, without
73being disturbed by anything else grabbing CPU or disk IO. Hence why everything
74using C<DBICTest> grabs a shared lock, and the few tests that request a
75C<:GlobalLock> will ask for an exclusive one and block until they can get it.
76
17e7d7f0 77=head1 METHODS
78
79=head2 init_schema
80
81 my $schema = DBICTest->init_schema(
82 no_deploy=>1,
83 no_populate=>1,
2bf79155 84 storage_type=>'::DBI::Replicated',
cb6ec758 85 storage_type_args=>{
d7a58a29 86 balancer_type=>'DBIx::Class::Storage::DBI::Replicated::Balancer::Random'
cb6ec758 87 },
17e7d7f0 88 );
89
8273e845 90This method removes the test SQLite database in t/var/DBIxClass.db
17e7d7f0 91and then creates a new, empty database.
92
a5a7bb73 93This method will call L<deploy_schema()|/deploy_schema> by default, unless the
94C<no_deploy> flag is set.
17e7d7f0 95
a5a7bb73 96Also, by default, this method will call L<populate_schema()|/populate_schema>
97by default, unless the C<no_deploy> or C<no_populate> flags are set.
17e7d7f0 98
99=cut
1c339d71 100
a5a7bb73 101# see L</:GlobalLock>
8d6b1478 102our ($global_lock_fh, $global_exclusive_lock);
103sub import {
104 my $self = shift;
105
439a7283 106 my $lockpath = tmpdir . '_dbictest_global.lock';
8d6b1478 107
108 {
109 my $u = local_umask(0); # so that the file opens as 666, and any user can lock
fa19e5d6 110 sysopen ($global_lock_fh, $lockpath, O_RDWR|O_CREAT)
111 or die "Unable to open $lockpath: $!";
8d6b1478 112 }
113
a5a7bb73 114 for my $exp (@_) {
115 if ($exp eq ':GlobalLock') {
69016f65 116 DEBUG_TEST_CONCURRENCY_LOCKS > 1
117 and dbg "Waiting for EXCLUSIVE global lock...";
118
630e2ea8 119 await_flock ($global_lock_fh, LOCK_EX) or die "Unable to lock $lockpath: $!";
69016f65 120
121 DEBUG_TEST_CONCURRENCY_LOCKS > 1
122 and dbg "Got EXCLUSIVE global lock";
123
8d6b1478 124 $global_exclusive_lock = 1;
125 }
a5a7bb73 126 elsif ($exp eq ':DiffSQL') {
127 require SQL::Abstract::Test;
128 my $into = caller(0);
129 for (qw(is_same_sql_bind is_same_sql is_same_bind)) {
130 no strict 'refs';
131 *{"${into}::$_"} = \&{"SQL::Abstract::Test::$_"};
132 }
133 }
8d6b1478 134 else {
a5a7bb73 135 croak "Unknown export $exp requested from $self";
8d6b1478 136 }
137 }
138
139 unless ($global_exclusive_lock) {
69016f65 140 DEBUG_TEST_CONCURRENCY_LOCKS > 1
141 and dbg "Waiting for SHARED global lock...";
142
630e2ea8 143 await_flock ($global_lock_fh, LOCK_SH) or die "Unable to lock $lockpath: $!";
69016f65 144
145 DEBUG_TEST_CONCURRENCY_LOCKS > 1
146 and dbg "Got SHARED global lock";
8d6b1478 147 }
148}
149
150END {
69016f65 151 # referencing here delays destruction even more
8d6b1478 152 if ($global_lock_fh) {
69016f65 153 DEBUG_TEST_CONCURRENCY_LOCKS > 1
154 and dbg "Release @{[ $global_exclusive_lock ? 'EXCLUSIVE' : 'SHARED' ]} global lock (END)";
155 1;
8d6b1478 156 }
857d66ca 157}
158
8d6b1478 159{
de306d4b 160 my $dir = Path::Class::File->new(__FILE__)->dir->parent->subdir('var');
161 $dir->mkpath unless -d "$dir";
8d6b1478 162 $dir = "$dir";
163
164 sub _sqlite_dbfilename {
165 my $holder = $ENV{DBICTEST_LOCK_HOLDER} || $$;
166 $holder = $$ if $holder == -1;
167
168 # useful for missing cleanup debugging
169 #if ( $holder == $$) {
170 # my $x = $0;
171 # $x =~ s/\//#/g;
172 # $holder .= "-$x";
173 #}
174
175 return "$dir/DBIxClass-$holder.db";
176 }
177
178 END {
179 _cleanup_dbfile();
180 }
181}
182
183$SIG{INT} = sub { _cleanup_dbfile(); exit 1 };
184
ee573365 185my $need_global_cleanup;
8d6b1478 186sub _cleanup_dbfile {
187 # cleanup if this is us
188 if (
189 ! $ENV{DBICTEST_LOCK_HOLDER}
190 or
191 $ENV{DBICTEST_LOCK_HOLDER} == -1
192 or
193 $ENV{DBICTEST_LOCK_HOLDER} == $$
194 ) {
ee573365 195 if ($need_global_cleanup and my $dbh = DBICTest->schema->storage->_dbh) {
196 $dbh->disconnect;
197 }
198
8d6b1478 199 my $db_file = _sqlite_dbfilename();
200 unlink $_ for ($db_file, "${db_file}-journal");
201 }
202}
203
204sub has_custom_dsn {
205 return $ENV{"DBICTEST_DSN"} ? 1:0;
bcb3e850 206}
207
208sub _sqlite_dbname {
481df957 209 my $self = shift;
210 my %args = @_;
39b80a73 211 return $self->_sqlite_dbfilename if (
212 defined $args{sqlite_use_file} ? $args{sqlite_use_file} : $ENV{'DBICTEST_SQLITE_USE_FILE'}
213 );
d7a58a29 214 return ":memory:";
857d66ca 215}
216
579ca3f7 217sub _database {
17e7d7f0 218 my $self = shift;
481df957 219 my %args = @_;
17e7d7f0 220
a258bfc7 221 if ($ENV{DBICTEST_DSN}) {
222 return (
223 (map { $ENV{"DBICTEST_${_}"} || '' } qw/DSN DBUSER DBPASS/),
224 { AutoCommit => 1, %args },
225 );
226 }
227 my $db_file = $self->_sqlite_dbname(%args);
17e7d7f0 228
a258bfc7 229 for ($db_file, "${db_file}-journal") {
230 next unless -e $_;
231 unlink ($_) or carp (
70c28808 232 "Unable to unlink existing test database file $_ ($!), creation of fresh database / further tests may fail!"
a258bfc7 233 );
234 }
17e7d7f0 235
a258bfc7 236 return ("dbi:SQLite:${db_file}", '', '', {
237 AutoCommit => 1,
238
239 # this is executed on every connect, and thus installs a disconnect/DESTROY
240 # guard for every new $dbh
241 on_connect_do => sub {
9e75be92 242
a258bfc7 243 my $storage = shift;
244 my $dbh = $storage->_get_dbh;
245
246 # no fsync on commit
247 $dbh->do ('PRAGMA synchronous = OFF');
248
4f6eb3d8 249 if (
250 $ENV{DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER}
251 and
252 # the pragma does not work correctly before libsqlite 3.7.9
253 $storage->_server_info->{normalized_dbms_version} >= 3.007009
254 ) {
4a24dba9 255 $dbh->do ('PRAGMA reverse_unordered_selects = ON');
256 }
fb88ca2c 257
a258bfc7 258 # set a *DBI* disconnect callback, to make sure the physical SQLite
259 # file is still there (i.e. the test does not attempt to delete
260 # an open database, which fails on Win32)
8b60b921 261 if (! $storage->{master} and my $guard_cb = __mk_disconnect_guard($db_file)) {
a258bfc7 262 $dbh->{Callbacks} = {
d9c17594 263 connect => sub { $guard_cb->('connect') },
264 disconnect => sub { $guard_cb->('disconnect') },
e1d9e578 265 DESTROY => sub { &detected_reinvoked_destructor; $guard_cb->('DESTROY') },
a258bfc7 266 };
267 }
268 },
269 %args,
270 });
579ca3f7 271}
272
d9c17594 273sub __mk_disconnect_guard {
d12d8272 274
d9c17594 275 my $db_file = shift;
7edb97b0 276
277 return if (
278 # this perl leaks handles, delaying DESTROY, can't work right
279 DBIx::Class::_ENV_::PEEPEENESS
280 or
281 ! -f $db_file
282 );
283
d9c17594 284
285 my $orig_inode = (stat($db_file))[1]
286 or return;
287
288 my $clan_connect_caller = '*UNKNOWN*';
289 my $i;
290 while ( my ($pack, $file, $line) = caller(++$i) ) {
291 next if $file eq __FILE__;
292 next if $pack =~ /^DBIx::Class|^Try::Tiny/;
293 $clan_connect_caller = "$file line $line";
294 }
295
296 my $failed_once = 0;
297 my $connected = 1;
298
299 return sub {
300 return if $failed_once;
301
302 my $event = shift;
303 if ($event eq 'connect') {
304 # this is necessary in case we are disconnected and connected again, all within the same $dbh object
305 $connected = 1;
306 return;
307 }
308 elsif ($event eq 'disconnect') {
5c505caf 309 return unless $connected; # we already disconnected earlier
d9c17594 310 $connected = 0;
311 }
312 elsif ($event eq 'DESTROY' and ! $connected ) {
313 return;
314 }
315
316 my $fail_reason;
317 if (! -e $db_file) {
318 $fail_reason = 'is missing';
319 }
320 else {
321 my $cur_inode = (stat($db_file))[1];
322
323 if ($orig_inode != $cur_inode) {
2525160d 324 my @inodes = ($orig_inode, $cur_inode);
325 # unless this is a fixed perl (P5RT#84590) pack/unpack before display
326 # to match the unsigned longs returned by `stat`
327 @inodes = map { unpack ('L', pack ('l', $_) ) } @inodes
328 unless $Config{st_ino_size};
329
330 $fail_reason = sprintf
331 'was recreated (initially inode %s, now %s)',
332 @inodes
333 ;
d9c17594 334 }
335 }
336
337 if ($fail_reason) {
338 $failed_once++;
339
340 require Test::Builder;
341 my $t = Test::Builder->new;
342 local $Test::Builder::Level = $Test::Builder::Level + 3;
343 $t->ok (0,
344 "$db_file originally created at $clan_connect_caller $fail_reason before $event "
345 . 'of DBI handle - a strong indicator that the database file was tampered with while '
346 . 'still being open. This action would fail massively if running under Win32, hence '
347 . 'we make sure it fails on any OS :)'
348 );
349 }
350
351 return; # this empty return is a DBI requirement
352 };
353}
354
65d35121 355my $weak_registry = {};
356
579ca3f7 357sub init_schema {
358 my $self = shift;
359 my %args = @_;
360
361 my $schema;
d7a58a29 362
8b60b921 363 if (
364 $ENV{DBICTEST_VIA_REPLICATED} &&=
365 ( !$args{storage_type} && !defined $args{sqlite_use_file} )
366 ) {
367 $args{storage_type} = ['::DBI::Replicated', { balancer_type => '::Random' }];
368 $args{sqlite_use_file} = 1;
369 }
370
b74b15b0 371 my @dsn = $self->_database(%args);
372
640ac94c 373 if ($args{compose_connection}) {
ee573365 374 $need_global_cleanup = 1;
640ac94c 375 $schema = DBICTest::Schema->compose_connection(
b74b15b0 376 'DBICTest', @dsn
640ac94c 377 );
378 } else {
379 $schema = DBICTest::Schema->compose_namespace('DBICTest');
380 }
a258bfc7 381
2bf79155 382 if( $args{storage_type}) {
d7a58a29 383 $schema->storage_type($args{storage_type});
384 }
a258bfc7 385
579ca3f7 386 if ( !$args{no_connect} ) {
b74b15b0 387 $schema->connection(@dsn);
8b60b921 388
389 $schema->storage->connect_replicants(\@dsn)
390 if $ENV{DBICTEST_VIA_REPLICATED};
3943fd63 391 }
a258bfc7 392
17e7d7f0 393 if ( !$args{no_deploy} ) {
89cf6a70 394 __PACKAGE__->deploy_schema( $schema, $args{deploy_args} );
395 __PACKAGE__->populate_schema( $schema )
396 if( !$args{no_populate} );
17e7d7f0 397 }
65d35121 398
399 populate_weakregistry ( $weak_registry, $schema->storage )
400 if $INC{'Test/Builder.pm'} and $schema->storage;
401
17e7d7f0 402 return $schema;
403}
404
65d35121 405END {
961d79db 406 # Make sure we run after any cleanup in other END blocks
961d79db 407 push @{ B::end_av()->object_2svref }, sub {
65d35121 408 assert_empty_weakregistry($weak_registry, 'quiet');
961d79db 409 };
65d35121 410}
411
17e7d7f0 412=head2 deploy_schema
413
414 DBICTest->deploy_schema( $schema );
415
8273e845 416This method does one of two things to the schema. It can either call
417the experimental $schema->deploy() if the DBICTEST_SQLT_DEPLOY environment
418variable is set, otherwise the default is to read in the t/lib/sqlite.sql
419file and execute the SQL within. Either way you end up with a fresh set
17e7d7f0 420of tables for testing.
421
422=cut
423
424sub deploy_schema {
425 my $self = shift;
89cf6a70 426 my $schema = shift;
427 my $args = shift || {};
17e7d7f0 428
519c4865 429 my $guard;
430 if ( ($ENV{TRAVIS}||'') eq 'true' and my $old_dbg = $schema->storage->debug ) {
bbf6a9a5 431 $guard = scope_guard { $schema->storage->debug($old_dbg) };
519c4865 432 $schema->storage->debug(0);
433 }
f8200928 434
8273e845 435 if ($ENV{"DBICTEST_SQLT_DEPLOY"}) {
06e15b8e 436 $schema->deploy($args);
17e7d7f0 437 } else {
de306d4b 438 my $filename = Path::Class::File->new(__FILE__)->dir
439 ->file('sqlite.sql')->stringify;
440 my $sql = do { local (@ARGV, $/) = $filename ; <> };
ebf846e8 441 for my $chunk ( split (/;\s*\n+/, $sql) ) {
442 if ( $chunk =~ / ^ (?! --\s* ) \S /xm ) { # there is some real sql in the chunk - a non-space at the start of the string which is not a comment
856e2d17 443 $schema->storage->dbh_do(sub { $_[1]->do($chunk) }) or print "Error on SQL: $chunk\n";
ebf846e8 444 }
445 }
17e7d7f0 446 }
89cf6a70 447 return;
17e7d7f0 448}
449
450=head2 populate_schema
451
452 DBICTest->populate_schema( $schema );
453
8273e845 454After you deploy your schema you can use this method to populate
17e7d7f0 455the tables with test data.
456
457=cut
458
459sub populate_schema {
460 my $self = shift;
461 my $schema = shift;
462
519c4865 463 my $guard;
464 if ( ($ENV{TRAVIS}||'') eq 'true' and my $old_dbg = $schema->storage->debug ) {
bbf6a9a5 465 $guard = scope_guard { $schema->storage->debug($old_dbg) };
519c4865 466 $schema->storage->debug(0);
467 }
f8200928 468
972015a7 469 $schema->populate('Genre', [
470 [qw/genreid name/],
471 [qw/1 emo /],
472 ]);
473
17e7d7f0 474 $schema->populate('Artist', [
77211009 475 [ qw/artistid name/ ],
476 [ 1, 'Caterwauler McCrae' ],
477 [ 2, 'Random Boy Band' ],
478 [ 3, 'We Are Goth' ],
17e7d7f0 479 ]);
480
481 $schema->populate('CD', [
972015a7 482 [ qw/cdid artist title year genreid/ ],
483 [ 1, 1, "Spoonful of bees", 1999, 1 ],
17e7d7f0 484 [ 2, 1, "Forkful of bees", 2001 ],
485 [ 3, 1, "Caterwaulin' Blues", 1997 ],
486 [ 4, 2, "Generic Manufactured Singles", 2001 ],
487 [ 5, 3, "Come Be Depressed With Us", 1998 ],
488 ]);
489
490 $schema->populate('LinerNotes', [
491 [ qw/liner_id notes/ ],
492 [ 2, "Buy Whiskey!" ],
493 [ 4, "Buy Merch!" ],
494 [ 5, "Kill Yourself!" ],
495 ]);
496
497 $schema->populate('Tag', [
498 [ qw/tagid cd tag/ ],
499 [ 1, 1, "Blue" ],
500 [ 2, 2, "Blue" ],
501 [ 3, 3, "Blue" ],
502 [ 4, 5, "Blue" ],
503 [ 5, 2, "Cheesy" ],
504 [ 6, 4, "Cheesy" ],
505 [ 7, 5, "Cheesy" ],
506 [ 8, 2, "Shiny" ],
507 [ 9, 4, "Shiny" ],
508 ]);
509
510 $schema->populate('TwoKeys', [
511 [ qw/artist cd/ ],
512 [ 1, 1 ],
513 [ 1, 2 ],
514 [ 2, 2 ],
515 ]);
516
517 $schema->populate('FourKeys', [
3bd6e3e0 518 [ qw/foo bar hello goodbye sensors/ ],
519 [ 1, 2, 3, 4, 'online' ],
520 [ 5, 4, 3, 6, 'offline' ],
17e7d7f0 521 ]);
522
523 $schema->populate('OneKey', [
524 [ qw/id artist cd/ ],
525 [ 1, 1, 1 ],
526 [ 2, 1, 2 ],
527 [ 3, 2, 2 ],
528 ]);
529
530 $schema->populate('SelfRef', [
531 [ qw/id name/ ],
532 [ 1, 'First' ],
533 [ 2, 'Second' ],
534 ]);
535
536 $schema->populate('SelfRefAlias', [
537 [ qw/self_ref alias/ ],
538 [ 1, 2 ]
539 ]);
540
541 $schema->populate('ArtistUndirectedMap', [
542 [ qw/id1 id2/ ],
543 [ 1, 2 ]
544 ]);
545
546 $schema->populate('Producer', [
547 [ qw/producerid name/ ],
548 [ 1, 'Matt S Trout' ],
549 [ 2, 'Bob The Builder' ],
550 [ 3, 'Fred The Phenotype' ],
551 ]);
552
553 $schema->populate('CD_to_Producer', [
554 [ qw/cd producer/ ],
555 [ 1, 1 ],
556 [ 1, 2 ],
557 [ 1, 3 ],
558 ]);
8273e845 559
8871d4ad 560 $schema->populate('TreeLike', [
61177e44 561 [ qw/id parent name/ ],
972015a7 562 [ 1, undef, 'root' ],
8871d4ad 563 [ 2, 1, 'foo' ],
564 [ 3, 2, 'bar' ],
565 [ 6, 2, 'blop' ],
566 [ 4, 3, 'baz' ],
567 [ 5, 4, 'quux' ],
568 [ 7, 3, 'fong' ],
569 ]);
4b8dcc58 570
17e7d7f0 571 $schema->populate('Track', [
572 [ qw/trackid cd position title/ ],
573 [ 4, 2, 1, "Stung with Success"],
574 [ 5, 2, 2, "Stripy"],
575 [ 6, 2, 3, "Sticky Honey"],
576 [ 7, 3, 1, "Yowlin"],
577 [ 8, 3, 2, "Howlin"],
578 [ 9, 3, 3, "Fowlin"],
579 [ 10, 4, 1, "Boring Name"],
580 [ 11, 4, 2, "Boring Song"],
581 [ 12, 4, 3, "No More Ideas"],
582 [ 13, 5, 1, "Sad"],
583 [ 14, 5, 2, "Under The Weather"],
584 [ 15, 5, 3, "Suicidal"],
585 [ 16, 1, 1, "The Bees Knees"],
586 [ 17, 1, 2, "Apiary"],
587 [ 18, 1, 3, "Beehind You"],
588 ]);
4b8dcc58 589
ae515736 590 $schema->populate('Event', [
ff8a6e3b 591 [ qw/id starts_at created_on varchar_date varchar_datetime skip_inflation/ ],
592 [ 1, '2006-04-25 22:24:33', '2006-06-22 21:00:05', '2006-07-23', '2006-05-22 19:05:07', '2006-04-21 18:04:06'],
ae515736 593 ]);
594
17e7d7f0 595 $schema->populate('Link', [
54e0bd06 596 [ qw/id url title/ ],
597 [ 1, '', 'aaa' ]
17e7d7f0 598 ]);
e673f011 599
17e7d7f0 600 $schema->populate('Bookmark', [
601 [ qw/id link/ ],
602 [ 1, 1 ]
603 ]);
78060df8 604
605 $schema->populate('Collection', [
606 [ qw/collectionid name/ ],
607 [ 1, "Tools" ],
608 [ 2, "Body Parts" ],
609 ]);
8273e845 610
78060df8 611 $schema->populate('TypedObject', [
612 [ qw/objectid type value/ ],
613 [ 1, "pointy", "Awl" ],
614 [ 2, "round", "Bearing" ],
615 [ 3, "pointy", "Knife" ],
616 [ 4, "pointy", "Tooth" ],
617 [ 5, "round", "Head" ],
618 ]);
89cf6a70 619 $schema->populate('CollectionObject', [
620 [ qw/collection object/ ],
621 [ 1, 1 ],
622 [ 1, 2 ],
623 [ 1, 3 ],
624 [ 2, 4 ],
625 [ 2, 5 ],
626 ]);
78060df8 627
628 $schema->populate('Owners', [
bed3a173 629 [ qw/id name/ ],
78060df8 630 [ 1, "Newton" ],
631 [ 2, "Waltham" ],
632 ]);
633
634 $schema->populate('BooksInLibrary', [
cda5e082 635 [ qw/id owner title source price/ ],
636 [ 1, 1, "Programming Perl", "Library", 23 ],
637 [ 2, 1, "Dynamical Systems", "Library", 37 ],
638 [ 3, 2, "Best Recipe Cookbook", "Library", 65 ],
78060df8 639 ]);
1c339d71 640}
4b8dcc58 641
510ca912 6421;