/[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

Annotation of /trunk/t/001_marc.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9 - (hide annotations)
Thu Jul 13 14:00:23 2006 UTC (17 years, 9 months ago) by dpavlin
File MIME type: application/x-troff
File size: 1049 byte(s)
hash_filter now gets record number as second arguments to be in sync with Biblio::Isis 0.22

1 dpavlin 1 #!/usr/bin/perl -w
2    
3     use strict;
4     use blib;
5    
6     use Test::More tests => 20;
7     use Test::Exception;
8     use Data::Dumper;
9    
10     BEGIN { use_ok( 'MARC::Fast' ); }
11    
12     my $marc;
13     my %param;
14    
15     throws_ok { $marc = MARC::Fast->new(%param); } qr/marcdb/, "marcdb parametar";
16    
17     $param{marcdb} = '/foo/bar/file';
18    
19     throws_ok { $marc = MARC::Fast->new(%param); } qr/foo.bar/, "marcdb exist";
20    
21 dpavlin 2 $param{marcdb} = 'data/unimarc.iso';
22 dpavlin 1
23 dpavlin 2 SKIP: {
24 dpavlin 6 skip "no $param{marcdb} test file ", 17 unless (-e $param{marcdb});
25 dpavlin 1
26 dpavlin 2 ok($marc = MARC::Fast->new(%param), "new");
27 dpavlin 1
28 dpavlin 2 isa_ok ($marc, 'MARC::Fast');
29 dpavlin 1
30 dpavlin 9 #diag Dumper($marc);
31    
32 dpavlin 2 cmp_ok($marc->count, '==', scalar @{$marc->{leaders}}, "count == leaders");
33     cmp_ok($marc->count, '==', scalar @{$marc->{fh_offset}}, "count == fh_offset");
34 dpavlin 1
35 dpavlin 2 ok(! $marc->fetch(0), "fetch 0");
36     ok($marc->fetch($marc->count), "fetch max:".$marc->count);
37     ok(! $marc->fetch($marc->count + 1), "fetch max+1:".($marc->count+1));
38    
39     foreach (1 .. 10) {
40     ok($marc->fetch($_), "fetch $_");
41 dpavlin 9
42     ok(my $hash = $marc->to_hash($_), "to_hash $_");
43     diag "$_ :: ",Dumper($hash);
44 dpavlin 2 }
45 dpavlin 1 }

Properties

Name Value
svn:executable

  ViewVC Help
Powered by ViewVC 1.1.26