3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, see <http://www.gnu.org/licenses>.
17 #This test demonstrates why Koha uses the CSV parser and configration
18 #it does. Specifically, the test is for Unicode compliance in text
19 #parsing and data. This test requires other modules that Koha doesn't
20 #actually use, in order to compare. Therefore, running this test is not
21 #necessary to test your Koha installation.
31 use Module
::Load
::Conditional qw
/check_install/;
34 if ( check_install
( module
=> 'Text::CSV::Unicode' ) ) {
37 plan skip_all
=> "Need Text::CSV::Unicode"
41 use Text
::CSV
::Unicode
;
45 (@_) or return "#" x
$max . "\n";
46 my $phrase = " " . shift() . " ";
47 my $half = "#" x
(($max - length($phrase))/2);
48 return $half . $phrase . $half . "\n";
51 my ($csv, $bin, %parsers);
53 foreach(qw(Text::CSV Text::CSV_XS Text::CSV::Unicode)) {
54 ok
($csv = $_->new(), $_ . '->new()');
55 ok
($bin = $_->new({binary
=>1}), $_ . '->new({binary=>1})');
56 $csv and $parsers{$_} = $csv;
57 $bin and $parsers{$_ . " (binary)"} = $bin;
61 {description
=>"010D: LATIN SMALL LETTER C WITH CARON", character
=>'č', line
=>'field1,second field,field3,do_we_have_a_č_problem?, f!fth field ,lastfield'},
62 {description
=>"0117: LATIN SMALL LETTER E WITH DOT ABOVE", character
=>'ė', line
=>'field1,second field,field3,do_we_have_a_ė_problem?, f!fth field ,lastfield'},
64 # 010D: č LATIN SMALL LETTER C WITH CARON
65 # 0117: ė LATIN SMALL LETTER E WITH DOT ABOVE
66 ok
( scalar(keys %parsers)>0 && scalar(@
$lines)>0,
67 sprintf "Testing %d lines with %d parsers.",
68 scalar(@
$lines), scalar(keys %parsers) );
69 foreach my $key (sort keys %parsers) {
70 my $parser = $parsers{$key};
71 print "Testing parser $key version " . ($parser->version||'?') . "\n";
74 LINE
: foreach (@
$lines) {
75 print pretty_line
("Line " . ++$i);
76 print pretty_line
($_->{description
} . ': ' . $_->{character
});
77 foreach my $key (sort keys %parsers) {
78 my $parser = $parsers{$key};
79 my ($status,$count,@fields);
80 $status = $parser->parse($_->{line
});
82 ok
($status, "parse ($key)");
83 @fields = $parser->fields;
84 ok
(($count = scalar(@fields)) == 6, "Number of fields ($count of 6)");
86 foreach my $f (@fields) {
89 if ($key ne 'Text::CSV::Unicode (binary)') {
91 print "\t field " . $j . ": $f\n"
92 } [ qr/Wide character in print/ ], 'Expected wide print';
94 print "\t field " . $j . ": $f\n"
98 print "\t field " . $j . ": $f\n";
103 ok
(! $status, "parse ($key) fails as expected");