first tests passing, first records parsed
[migration-tools.git] / Equinox-Migration / t / 03-MapDrivenMARCXMLProc.t
1 #!perl -T
2
3 #use Test::More tests => 39;
4 use Test::More qw(no_plan);
5 use Equinox::Migration::MapDrivenMARCXMLProc;
6
7 # fails
8 eval { my $mp =
9          Equinox::Migration::MapDrivenMARCXMLProc->new(marcfile => 't/corpus/mdmp-0.txt') };
10 is ($@, "Argument 'mapfile' must be specified\n", 'no mapfile');
11
12 eval { my $mp =
13          Equinox::Migration::MapDrivenMARCXMLProc->new(mapfile => 't/corpus/mdmpmap-00.txt') };
14 is ($@, "Argument 'marcfile' must be specified\n", 'no marcfile');
15
16 eval { my $mp = Equinox::Migration::MapDrivenMARCXMLProc->new };
17 is ($@, "Argument 'mapfile' must be specified\n", 'no mapfile');
18
19
20 # baseline object creation
21 my $mp = Equinox::Migration::MapDrivenMARCXMLProc->new( marcfile => 't/corpus/mdmp-0.txt',
22                                                         mapfile  => 't/corpus/mdmpmap-00.txt',
23                                                       );
24 is(ref $mp, "Equinox::Migration::MapDrivenMARCXMLProc", "self is self");
25 # parsing
26 #
27 # with map-00, only the 999$a should be captured
28 # 903$a will *always* be captured, of course
29 my $rec = $mp->parse_record;
30 is (defined $rec, 1);
31 is ($rec->{egid}, 9000000, '903 captured');
32 is ($rec->{tags}[0]{tag}, 999, 'first (only) tag should be 999');
33 is ($rec->{tags}[0]{uni}{a}, "MYS DEM", 'single-ocurrance subfield "a" should be "MYS DEM"');
34 is ($rec->{tags}[0]{uni}{b}, undef, 'only one uni subfield defined');
35 is ($rec->{tags}[0]{multi},  undef, 'no multi subfields were defined');
36 is ($rec->{tags}[1],         undef, 'Only one tag in map');
37 is ($rec->{bib},             undef, 'No bib-level fields in map');
38 # let's go ahead and look at the rest of the file
39 $rec = $mp->parse_record;
40 is ($rec->{egid}, 9000001, '903 #2');
41 is ($rec->{tags}[0]{tag}, 999, 'tag id 2');
42 is ($rec->{tags}[0]{uni}{a}, "MYS 2", 'subfield value 2');
43 $rec = $mp->parse_record;
44 is ($rec->{egid}, 9000002, '903 #3');
45 is ($rec->{tags}[0]{tag}, 999, 'tag id 3');
46 is ($rec->{tags}[0]{uni}{a}, "FOO BAR", 'subfield value 3');
47 $rec = $mp->parse_record;
48 is ($rec->{egid}, 9000003, '903 #4');
49 is ($rec->{tags}[0]{tag}, 999, 'tag id 4');
50 is ($rec->{tags}[0]{uni}{a}, "FIC DEV", 'subfield value 4');
51 $rec = $mp->parse_record;
52 is ($rec, 0, 'no more records');