support all indicators: 0-9, space and #
[MARC-Fast] / t / 001_marc.t
1 #!/usr/bin/perl -w
2
3 use strict;
4 use blib;
5
6 use Test::More tests => 63;
7 use Data::Dump qw/dump/;
8
9 BEGIN {
10         use_ok( 'MARC::Fast' );
11 }
12
13 my $debug = shift @ARGV;
14
15 my $marc_file = 't/camel.usmarc';
16
17 my $marc;
18 my %param;
19
20 eval { $marc = MARC::Fast->new(%param) };
21 ok( $@ =~ /marcdb/, "marcdb parametar" );
22
23 $param{marcdb} = '/foo/bar/file';
24
25 eval { $marc = MARC::Fast->new(%param) };
26 ok( $@ =~ /foo.bar/, "marcdb exist" );
27
28 $param{marcdb} = $marc_file if -e $marc_file;
29
30 SKIP: {
31         skip "no $param{marcdb} test file ", 37 unless (-e $param{marcdb});
32
33         diag "marc file: $marc_file";
34
35         ok($marc = MARC::Fast->new(%param), "new");
36
37         isa_ok ($marc, 'MARC::Fast');
38
39         #diag Dumper($marc);
40
41         cmp_ok($marc->count, '==', scalar @{$marc->{leader}}, "count == leader");
42         cmp_ok($marc->count, '==', scalar @{$marc->{fh_offset}}, "count == fh_offset");
43
44         ok(! $marc->fetch(0), "fetch 0");
45         ok(! $marc->last_leader, "no last_leader");
46         ok($marc->fetch($marc->count), "fetch max:".$marc->count);
47         ok(! $marc->fetch($marc->count + 1), "fetch max+1:".($marc->count+1));
48
49         foreach (1 .. 10) {
50                 ok($marc->fetch($_), "fetch($_)");
51
52                 ok($marc->last_leader, "last_leader $_");
53
54                 ok(my $hash = $marc->to_hash($_), "to_hash($_)");
55                 diag "to_hash($_) = ",Data::Dump::dump($hash) if ($debug);
56
57                 ok(my $hash_sf = $marc->to_hash($_, include_subfields => 1), "to_hash($_,include_subfields)");
58                 diag "to_hash($_, include_subfields => 1) = ",Data::Dump::dump($hash_sf) if ($debug);
59
60                 ok(my $ascii = $marc->to_ascii($_), "to_ascii($_)");
61                 diag "to_ascii($_) ::\n$ascii" if ($debug);
62         }
63
64         ok(! $marc->fetch(0), "fetch(0) again");
65         ok(! $marc->last_leader, "no last_leader");
66 }