removing sample tests
[migration-tools.git] / Equinox-Migration / t / 03-MapDrivenMARCXMLProc.t
index 5e1f21d..938363b 100644 (file)
@@ -50,3 +50,34 @@ is ($rec->{tags}[0]{tag}, 999, 'tag id 4');
 is ($rec->{tags}[0]{uni}{a}, "FIC DEV", 'subfield value 4');
 $rec = $mp->parse_record;
 is ($rec, 0, 'no more records');
+
+# with map-01,  999$a and 999$q are captured. q only exists on the second
+# record; the others should the placeholder value of ''
+$mp = Equinox::Migration::MapDrivenMARCXMLProc->new( marcfile => 't/corpus/mdmp-0.txt',
+                                                     mapfile  => 't/corpus/mdmpmap-01.txt'
+                                                   );
+$rec = $mp->parse_record;
+is ($rec->{tags}[0]{uni}{a}, "MYS DEM", '999$a');
+is ($rec->{tags}[0]{uni}{q}, "", '999$q doesnt exist here');
+is ($rec->{tags}[0]{uni}{j}, undef, 'we shouldnt have captured this, even if it does exist');
+$rec = $mp->parse_record;
+is ($rec->{tags}[0]{uni}{a}, "MYS 2", '999$a');
+is ($rec->{tags}[0]{uni}{q}, "TEST", '999$q does exist here');
+
+# map-02 adds 999$x *not* as multi, producing a fatal error on the last record
+$mp = Equinox::Migration::MapDrivenMARCXMLProc->new( marcfile => 't/corpus/mdmp-0.txt',
+                                                     mapfile  => 't/corpus/mdmpmap-02.txt');
+$rec = $mp->parse_record;
+$rec = $mp->parse_record;
+$rec = $mp->parse_record;
+eval { $rec = $mp->parse_record };
+is ($@, "Multiple occurances of a non-multi field: 999x at rec 4\n", '999$x not declared multi, but is');
+
+# map-03 has 999$s as required, producing a fatal on record X
+$mp = Equinox::Migration::MapDrivenMARCXMLProc->new( marcfile => 't/corpus/mdmp-0.txt',
+                                                     mapfile  => 't/corpus/mdmpmap-03.txt');
+eval { $rec = $mp->parse_record };
+is ($@, "Required mapping 999s not found in rec 1\n", '999$s removed from this record');
+eval { $rec = $mp->parse_record };
+is ($@, "", '999$s exists here tho');
+