1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
#!/usr/bin/perl
use strict;
use warnings;
my $tests = 295;
use Test::More;
require Test::NoWarnings;
use Spreadsheet::Read;
my $parser = Spreadsheet::Read::parses ("csv") or
plan skip_all => "No CSV parser found";
print STDERR "# Parser: $parser-", $parser->VERSION, "\n";
{ my $ref;
$ref = ReadData ("no_such_file.csv");
ok (!defined $ref, "Nonexistent file");
$ref = ReadData ("files/empty.csv");
ok (!defined $ref, "Empty file");
}
my $csv;
ok ($csv = ReadData ("files/test.csv"), "Read/Parse csv file");
ok (1, "Base values");
is (ref $csv, "ARRAY", "Return type");
is ($csv->[0]{type}, "csv", "Spreadsheet type");
is ($csv->[0]{sheets}, 1, "Sheet count");
is (ref $csv->[0]{sheet}, "HASH", "Sheet list");
is (scalar keys %{$csv->[0]{sheet}},
1, "Sheet list count");
cmp_ok ($csv->[0]{version}, ">=", 0.01, "Parser version");
is ($csv->[1]{maxrow}, 5, "Last row");
is ($csv->[1]{maxcol}, 19, "Last column");
is ($csv->[1]{cell}[$csv->[1]{maxcol}][$csv->[1]{maxrow}],
"LASTFIELD", "Last field");
ok (1, "Defined fields");
foreach my $cell (qw( A1 A2 A3 A4 B1 B2 B4 C3 C4 D1 D3 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], $cell, "Unformatted cell $cell");
is ($csv->[1]{$cell}, $cell, "Formatted cell $cell");
}
ok (1, "Undefined fields");
foreach my $cell (qw( B3 C1 C2 D2 D4 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], "", "Unformatted cell $cell");
is ($csv->[1]{$cell}, "", "Formatted cell $cell");
}
ok ($csv = ReadData ("files/test_m.csv"), "Read/Parse M\$ csv file");
ok (1, "Defined fields");
foreach my $cell (qw( A1 A2 A3 A4 B1 B2 B4 C3 C4 D1 D3 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], $cell, "Unformatted cell $cell");
is ($csv->[1]{$cell}, $cell, "Formatted cell $cell");
}
ok (1, "Undefined fields");
foreach my $cell (qw( B3 C1 C2 D2 D4 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], "", "Unformatted cell $cell");
is ($csv->[1]{$cell}, "", "Formatted cell $cell");
}
ok ($csv = ReadData ("files/test_x.csv", sep => "=", quote => "_"),
"Read/Parse strange csv file");
ok (1, "Defined fields");
foreach my $cell (qw( A1 A2 A3 A4 B1 B2 B4 C3 C4 D1 D3 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], $cell, "Unformatted cell $cell");
is ($csv->[1]{$cell}, $cell, "Formatted cell $cell");
}
ok (1, "Undefined fields");
foreach my $cell (qw( B3 C1 C2 D2 D4 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$c][$r], "", "Unformatted cell $cell");
is ($csv->[1]{$cell}, "", "Formatted cell $cell");
}
foreach my $attr ("strip", "trim") {
{ # RT#74976 - Error Received when reading empty sheets
foreach my $strip (0 .. 3) {
my $ref = ReadData ("files/blank.csv", $attr => $strip);
ok ($ref, "File with no content - $attr $strip");
}
}
# blank.csv has only one sheet with A1 filled with ' '
{ my $ref = ReadData ("files/blank.csv", clip => 0, $attr => 0);
ok ($ref, "!clip $attr 0");
is ($ref->[1]{maxrow}, 3, "maxrow 3");
is ($ref->[1]{maxcol}, 4, "maxcol 4");
is ($ref->[1]{cell}[1][1], " ", "(1, 1) = ' '");
is ($ref->[1]{A1}, " ", "A1 = ' '");
$ref = ReadData ("files/blank.csv", clip => 0, $attr => 1);
ok ($ref, "!clip $attr 1");
is ($ref->[1]{maxrow}, 3, "maxrow 3");
is ($ref->[1]{maxcol}, 4, "maxcol 4");
is ($ref->[1]{cell}[1][1], "", "blank (1, 1)");
is ($ref->[1]{A1}, "", "undef A1");
$ref = ReadData ("files/blank.csv", clip => 0, $attr => 1, cells => 0);
ok ($ref, "!clip $attr 1");
is ($ref->[1]{maxrow}, 3, "maxrow 3");
is ($ref->[1]{maxcol}, 4, "maxcol 4");
is ($ref->[1]{cell}[1][1], "", "blank (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
$ref = ReadData ("files/blank.csv", clip => 0, $attr => 2, rc => 0);
ok ($ref, "!clip $attr 2");
is ($ref->[1]{maxrow}, 3, "maxrow 3");
is ($ref->[1]{maxcol}, 4, "maxcol 4");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, "", "blank A1");
$ref = ReadData ("files/blank.csv", clip => 0, $attr => 3, cells => 0, rc => 0);
ok ($ref, "!clip $attr 3");
is ($ref->[1]{maxrow}, 3, "maxrow 3");
is ($ref->[1]{maxcol}, 4, "maxcol 4");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
$ref = ReadData ("files/blank.csv", clip => 1, $attr => 0);
ok ($ref, " clip $attr 0");
is ($ref->[1]{maxrow}, 1, "maxrow 3");
is ($ref->[1]{maxcol}, 1, "maxcol 4");
is ($ref->[1]{cell}[1][1], " ", "(1, 1) = ' '");
is ($ref->[1]{A1}, " ", "A1 = ' '");
$ref = ReadData ("files/blank.csv", clip => 1, $attr => 1);
ok ($ref, " clip $attr 1");
is ($ref->[1]{maxrow}, 0, "maxrow 0");
is ($ref->[1]{maxcol}, 0, "maxcol 0");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
$ref = ReadData ("files/blank.csv", clip => 1, $attr => 1, cells => 0);
ok ($ref, " clip $attr 1");
is ($ref->[1]{maxrow}, 0, "maxrow 0");
is ($ref->[1]{maxcol}, 0, "maxcol 0");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
$ref = ReadData ("files/blank.csv", clip => 1, $attr => 2, rc => 0);
ok ($ref, " clip $attr 2");
is ($ref->[1]{maxrow}, 0, "maxrow 0");
is ($ref->[1]{maxcol}, 0, "maxcol 0");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
$ref = ReadData ("files/blank.csv", clip => 1, $attr => 3, cells => 0, rc => 0);
ok ($ref, " clip $attr 3");
is ($ref->[1]{maxrow}, 0, "maxrow 0");
is ($ref->[1]{maxcol}, 0, "maxcol 0");
is ($ref->[1]{cell}[1][1], undef, "undef (1, 1)");
is ($ref->[1]{A1}, undef, "undef A1");
}
}
foreach my $attr ("pivot", "transpose") {
ok ($csv = ReadData ("files/test.csv", $attr => 1), "Read/Parse csv file");
ok (1, "Defined fields");
foreach my $cell (qw( A1 A2 A3 A4 B1 B2 B4 C3 C4 D1 D3 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$r][$c], $cell, "Unformatted cell $cell");
my $llec = cr2cell ($r, $c);
is ($csv->[1]{$llec}, $cell, "Formatted cell $cell");
}
ok (1, "Undefined fields");
foreach my $cell (qw( B3 C1 C2 D2 D4 )) {
my ($c, $r) = cell2cr ($cell);
is ($csv->[1]{cell}[$r][$c], "", "Unformatted cell $cell");
my $llec = cr2cell ($r, $c);
is ($csv->[1]{$llec}, "", "Formatted cell $cell");
}
}
unless ($ENV{AUTOMATED_TESTING}) {
Test::NoWarnings::had_no_warnings ();
$tests++;
}
done_testing ($tests);
|