/[webpac2]/trunk/t/3-normalize.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/3-normalize.t

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

revision 555 by dpavlin, Sat Jul 1 10:19:39 2006 UTC revision 571 by dpavlin, Mon Jul 3 14:30:22 2006 UTC
# Line 2  Line 2 
2    
3  use strict;  use strict;
4    
5  use Test::More tests => 89;  use Test::More tests => 112;
6  use Test::Exception;  use Test::Exception;
7  use Cwd qw/abs_path/;  use Cwd qw/abs_path/;
8  use blib;  use blib;
# Line 148  sub test_s { Line 148  sub test_s {
148          my $eval_t = $t;          my $eval_t = $t;
149          $eval_t =~ s/[\n\r\s]+/ /gs;          $eval_t =~ s/[\n\r\s]+/ /gs;
150          $eval_t = substr($eval_t,0,$max_eval_output) . '...' if (length($eval_t) > $max_eval_output);          $eval_t = substr($eval_t,0,$max_eval_output) . '...' if (length($eval_t) > $max_eval_output);
151            $eval_t =~ s/\\/\\\\/gs;
152    
153          eval "$t";          my @__ret;
154          ok(! $@, $@ ? dump_error($@, $t) : "eval: $eval_t");          eval "\@__ret = $t";
155            ok(! $@, $@ ? dump_error($@, $t) : "eval: $eval_t = " . dump(@__ret));
156            return \@__ret;
157  }  }
158    
159  {  {
# Line 397  sub test_s { Line 400  sub test_s {
400                          test_s($r) if ($r);                          test_s($r) if ($r);
401                  }                  }
402    
403                  ok(@marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");                  ok(my @marc = WebPAC::Normalize::_get_marc_fields(), "_get_marc_fields");
404                  diag dump( \@marc ) if ($debug);                  diag dump( \@marc ) if ($debug);
405                    diag "expects:\n", dump($struct) if ($debug > 1);
406                  is_deeply( \@marc, $struct, $msg );                  is_deeply( \@marc, $struct, $msg );
407          }          }
408    
# Line 459  sub test_s { Line 462  sub test_s {
462                          [ '900', 1, 0, 'c', '200c-3' ],                          [ '900', 1, 0, 'c', '200c-3' ],
463                  ],                  ],
464          );          );
465    
466            test_rec_rules(
467                    'marc_compose',
468                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
469                    qq{
470                            marc_compose('900',
471                                    'c', rec(200,'b'),
472                                    'b', rec(200,'a'),
473                                    'a', rec(200,'c'),
474                            );
475                    },
476                    [
477                            [ '900', ' ', ' ', 'c', 42, 'b', 'foo ; bar', 'a', 'baz' ]
478                    ],
479            );
480    
481            #
482            # test rules
483            #
484            sub test_rule {
485                    my ($msg, $rec, $rule, $struct) = @_;
486                    _clean_ds();
487                    _set_rec( $rec );
488                    $rule =~ s/\\/\\/gs;
489                    my $r = test_s( $rule );
490                    diag "for ", dump($rec), " got:\n", dump($r), "\nexpect:\n" if ($debug > 1);
491                    diag dump($struct) if ($debug);
492                    is_deeply( $r, $struct, $msg );
493            }
494    
495            # test split_rec_on
496            test_rule(
497                    'split_rec_on',
498                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
499                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 1) },
500                    [ 'foo' ],
501            );
502            test_rule(
503                    'split_rec_on',
504                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
505                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/, 2) },
506                    [ 'bar' ],
507            );
508            test_rule(
509                    'split_rec_on no part',
510                    { '200' => [{ a => 'foo ; bar', b => 42, c => 'baz' }] },
511                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
512                    [ 'foo', 'bar' ],
513            );
514            test_rule(
515                    'split_rec_on no record',
516                    {},
517                    qq{ split_rec_on('200','a', qr/\\s*;\\s*/) },
518                    [ '' ],
519            );
520    
521            test_rec_rules(
522                    'marc_compose+split_rec_on',
523                    { '200' => [{ a => 'foo ! bar', b => 42, c => 'baz' }] },
524                    qq{
525                            marc_compose('900',
526                                    'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 1),
527                                    'c', rec(200,'c'),
528                                    'a', split_rec_on(200,'a', qr/\\s*!\\s*/, 2),
529                                    'b', rec(200,'b'),
530                            );
531                    },
532                    [
533                            [ '900', ' ', ' ',
534                                    'a', 'foo',
535                                    'c', 'baz',
536                                    'a', 'bar',
537                                    'b', 42,
538                            ]
539                    ],
540            );
541    
542            cmp_ok(marc_leader('06',42), '==', 42, 'marc_leader');
543            cmp_ok(marc_leader('11',5), '==', 5, 'marc_leader');
544            ok(marc_leader(), 'marc_leader get');
545            diag "leader: ", dump(marc_leader()) if ($debug);
546            is_deeply(marc_leader(), { '06' => 42, 11 => 5 }, "marc_leader full");
547    
548            _debug(2);
549            test_rule(
550                    'rec1(000)',
551                    { '000' => [ 42 ]},
552                    qq{ rec('000') },
553                    [ 42 ],
554            );
555    
556            test_rec_rules(
557                    'marc_compose+split_rec_on',
558                    { '000' => [ 42 ]},
559                    qq{
560                            marc('001', rec('000') );
561                    },
562                    [
563                            [ '001', ' ', ' ', 42, ]
564                    ],
565            );
566  }  }
567    

Legend:
Removed from v.555  
changed lines
  Added in v.571

  ViewVC Help
Powered by ViewVC 1.1.26