5658ce663a1d1a15e4dcf872a383eb5b26e6aa95
[webpac2] / t / 6-unit.t
1 #!/usr/bin/perl -w
2
3 use strict;
4
5 use Test::More tests => 24;
6 use Test::Exception;
7 use Cwd qw/abs_path/;
8 use File::Temp qw/tempdir/;
9 use File::Slurp;
10 use Data::Dumper;
11 use Time::HiRes qw/time/;
12 use blib;
13
14 my $debug = shift @ARGV;
15
16 BEGIN {
17 use_ok( 'WebPAC::Lookup' );
18 use_ok( 'WebPAC::Input' );
19 use_ok( 'WebPAC::Store' );
20 use_ok( 'WebPAC::Lookup::Normalize' );
21 use_ok( 'WebPAC::Normalize' );
22 use_ok( 'WebPAC::Output::TT' );
23 }
24
25 ok(my $abs_path = abs_path($0), "abs_path");
26 $abs_path =~ s#/[^/]*$#/#;
27 diag "abs_path: $abs_path" if ($debug);
28
29 my $isis_file = "$abs_path../t/winisis/BIBL";
30 #$isis_file = '/data/hidra/THS/THS';
31 #$isis_file = '/data/isis_data/ffkk/';
32
33 diag "isis_file: $isis_file" if ($debug);
34
35 my $normalize_set_pl = "$abs_path/data/normalize.pl";
36 my $lookup_file = "$abs_path../conf/lookup/isis.pm";
37
38 ok(my $lookup = new WebPAC::Lookup(
39         lookup_file => $lookup_file,
40 ), "new Lookup");
41
42 ok(my $isis = new WebPAC::Input(
43         module => 'WebPAC::Input::ISIS',
44         code_page => 'ISO-8859-2',      # application encoding
45         limit => 100,
46         no_progress_bar => 1,
47 ), "new Input::ISIS");
48
49 ok(my $maxmfn = $isis->open(
50         path => $isis_file,
51         code_page => '852',             # database encoding
52         lookup => $lookup,
53 ), "Input::ISIS->open");
54
55 ok(my $path = tempdir( CLEANUP => 1 ), "path");
56
57 ok(my $db = new WebPAC::Store(
58         path => $path,
59         database => '.',
60 ), "new Store");
61
62 ok(my $norm_pl = read_file( $normalize_set_pl ), "set definitions: $normalize_set_pl" );
63
64 ok(my $out = new WebPAC::Output::TT(
65         include_path => "$abs_path../conf/output/tt",
66         filters => { foo => sub { shift } },
67 ), "new Output::TT");
68
69 diag " lookup => ",Dumper($lookup->lookup_hash) if ($debug);
70
71 my $t_norm = 0;
72
73 foreach my $pos ( 0 ... $isis->size ) {
74
75         my $row = $isis->fetch || next;
76
77         diag " row $pos => ",Dumper($row) if ($debug);
78
79         my $t = time();
80         ok( my $ds = WebPAC::Normalize::data_structure(
81                 lookup => $lookup->lookup_hash,
82                 row => $row,
83                 rules => $norm_pl,
84         ), "Set data_structure");
85         $t_norm += time() - $t;
86
87         diag " ds $pos => ",Dumper($ds) if ($debug);
88
89         ok(my $html = $out->apply(
90                 template => 'html.tt',
91                 data => $ds,
92         ), "apply");
93
94         $html =~ s#\s*[\n\r]+\s*##gs;
95
96         #diag $html;
97
98 };
99
100 diag sprintf("timings: %.2fs\n", $t_norm);