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