The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use t::lib;
use strict;
use Test::More;
use DBI;
use Fcntl;   # For O_RDWR, O_CREAT, etc.
use SDBM_File;
use Class::AutoDB::Serialize;
use testSerialize14;

# The testSerialize series tests Class::AutoDB::Serialize
# The testSerialize series tests Class::AutoDB::Serialize
# This test and its companions test fetching of objects
# whose class is not explicitly 'used'.  This tests
# code in Oid.pm that invokes 'use' at runtime

my %oid;
SKIP: {
  # make sure databases exist
  my $dbh=DBI->connect('dbi:mysql:database=test');
  skip "! Cannot connect to database: ".$dbh->errstr."\n".
    "These tests require a MySQL database named 'test'.  The user running the test must have permission to create and drop tables, and select and update data."
      if $dbh->err;
  my $tie=tie(%oid, 'SDBM_File', 'testSerialize.sdbm', O_RDWR, 0666);
  skip "! Cannot open SDBM file 'testSerialize.sdbm': ".$!."\n".
    "These tests require an SDBM file named 'testSerialize.sdbm'.  The user running the test must have permission to read and write this file."
      unless $tie;

  Class::AutoDB::Serialize->dbh($dbh);
}
my $OBJECTS=5;
my $root=Class::AutoDB::Serialize->fetch($oid{'root'});
my @objects=@{$root->list};
ok(@objects==$OBJECTS,"root points to $OBJECTS objects");
ok(!%testSerialize_RuntimeUse::,'class not used before fetch');
map {$_->id} @objects;		# fetch 'em
ok(1,"fetched $OBJECTS objects");
my $errors=0;
for (my $i=0;$i<$OBJECTS;$i++) {
  my $obj=$objects[$i];
  my($prev,$next)=($obj->prev,$obj->next);
  $errors++ unless $obj->id==$i;
  #    $errors++ unless $prev->id==($i-1)%$OBJECTS;
  #    $errors++ unless $next->id==($i+1)%$OBJECTS;
  $errors++ unless $prev==$objects[($i-1)%$OBJECTS];
  $errors++ unless $next==$objects[($i+1)%$OBJECTS];
    
}
ok(!$errors,"examined $OBJECTS objects, $errors errors");
  
untie %oid;

1;

done_testing();