/[MARC-Fast]/trunk/t/001_marc.t
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/t/001_marc.t

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9 by dpavlin, Thu Jul 13 14:00:23 2006 UTC revision 23 by dpavlin, Sun Nov 4 22:44:42 2007 UTC
# Line 3  Line 3 
3  use strict;  use strict;
4  use blib;  use blib;
5    
6  use Test::More tests => 20;  use Test::More tests => 63;
7  use Test::Exception;  use Test::Exception;
 use Data::Dumper;  
8    
9  BEGIN { use_ok( 'MARC::Fast' ); }  BEGIN {
10            use_ok( 'MARC::Fast' );
11    }
12    
13    my $debug = shift @ARGV;
14    
15    my $marc_file = 't/camel.usmarc';
16    
17    if ( $debug ) {
18            eval { require Data::Dump; };
19            $debug = 0 if ($@);
20    }
21    
22  my $marc;  my $marc;
23  my %param;  my %param;
# Line 18  $param{marcdb} = '/foo/bar/file'; Line 28  $param{marcdb} = '/foo/bar/file';
28    
29  throws_ok { $marc = MARC::Fast->new(%param); } qr/foo.bar/, "marcdb exist";  throws_ok { $marc = MARC::Fast->new(%param); } qr/foo.bar/, "marcdb exist";
30    
31  $param{marcdb} = 'data/unimarc.iso';  $param{marcdb} = $marc_file if -e $marc_file;
32    
33  SKIP: {  SKIP: {
34          skip "no $param{marcdb} test file ", 17 unless (-e $param{marcdb});          skip "no $param{marcdb} test file ", 37 unless (-e $param{marcdb});
35    
36            diag "marc file: $marc_file";
37    
38          ok($marc = MARC::Fast->new(%param), "new");          ok($marc = MARC::Fast->new(%param), "new");
39    
# Line 29  SKIP: { Line 41  SKIP: {
41    
42          #diag Dumper($marc);          #diag Dumper($marc);
43    
44          cmp_ok($marc->count, '==', scalar @{$marc->{leaders}}, "count == leaders");          cmp_ok($marc->count, '==', scalar @{$marc->{leader}}, "count == leader");
45          cmp_ok($marc->count, '==', scalar @{$marc->{fh_offset}}, "count == fh_offset");          cmp_ok($marc->count, '==', scalar @{$marc->{fh_offset}}, "count == fh_offset");
46    
47          ok(! $marc->fetch(0), "fetch 0");          ok(! $marc->fetch(0), "fetch 0");
48            ok(! $marc->last_leader, "no last_leader");
49          ok($marc->fetch($marc->count), "fetch max:".$marc->count);          ok($marc->fetch($marc->count), "fetch max:".$marc->count);
50          ok(! $marc->fetch($marc->count + 1), "fetch max+1:".($marc->count+1));          ok(! $marc->fetch($marc->count + 1), "fetch max+1:".($marc->count+1));
51    
52          foreach (1 .. 10) {          foreach (1 .. 10) {
53                  ok($marc->fetch($_), "fetch $_");                  ok($marc->fetch($_), "fetch($_)");
54    
55                    ok($marc->last_leader, "last_leader $_");
56    
57                    ok(my $hash = $marc->to_hash($_), "to_hash($_)");
58                    diag "to_hash($_) = ",Data::Dump::dump($hash) if ($debug);
59    
60                  ok(my $hash = $marc->to_hash($_), "to_hash $_");                  ok(my $hash_sf = $marc->to_hash($_, include_subfields => 1), "to_hash($_,include_subfields)");
61                  diag "$_ :: ",Dumper($hash);                  diag "to_hash($_, include_subfields => 1) = ",Data::Dump::dump($hash_sf) if ($debug);
62    
63                    ok(my $ascii = $marc->to_ascii($_), "to_ascii($_)");
64                    diag "to_ascii($_) ::\n$ascii" if ($debug);
65          }          }
66    
67            ok(! $marc->fetch(0), "fetch(0) again");
68            ok(! $marc->last_leader, "no last_leader");
69  }  }

Legend:
Removed from v.9  
changed lines
  Added in v.23

  ViewVC Help
Powered by ViewVC 1.1.26