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
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use Text::CSV_XS qw(csv);
BEGIN {
if ($] < 5.008002) {
plan skip_all => "These tests require Encode and Unicode support";
}
else {
require Encode;
plan tests => 71;
}
require "./t/util.pl";
}
$| = 1;
my $tfn = "_47cmnt.csv"; END { -f $tfn and unlink $tfn; }
foreach my $cstr ("#", "//", "Comment", "\xe2\x98\x83") {
foreach my $rest ("", " 1,2", "a,b") {
my $csv = Text::CSV_XS->new ({ binary => 1 });
$csv->comment_str ($cstr);
my $fh;
open $fh, ">", $tfn or die "$tfn: $!\n";
print $fh qq{$cstr$rest\n};
print $fh qq{c,$cstr\n};
print $fh qq{ $cstr\n};
print $fh qq{e,$cstr,$rest\n};
print $fh qq{$cstr\n};
print $fh qq{g,i$cstr\n};
print $fh qq{j,"k\n${cstr}k"\n};
print $fh qq{$cstr\n};
close $fh;
open $fh, "<", $tfn or die "$tfn: $!\n";
my $cuni = Encode::decode ("utf-8", $cstr);
my @rest = split m/,/ => $rest, -1; @rest or push @rest => "";
is_deeply ($csv->getline ($fh), [ "c", $cuni ], "$cstr , $rest");
is_deeply ($csv->getline ($fh), [ " $cuni" ], "leading space");
is_deeply ($csv->getline ($fh), [ "e", $cuni, @rest ], "not start of line");
is_deeply ($csv->getline ($fh), [ "g", "i$cuni" ], "not start of field");
is_deeply ($csv->getline ($fh), [ "j", "k\n${cuni}k" ], "in quoted field after NL");
close $fh;
unlink $tfn;
}
}
my $data = <<"EOC";
id | name
#
42 | foo
#
EOC
is_deeply (csv (
in => \$data,
sep_char => "|",
headers => "auto",
allow_whitespace => 1,
comment_str => "#",
strict => 0,
), [{ id => 42, name => "foo" }], "Last record is comment");
is_deeply (csv (
in => \$data,
sep_char => "|",
headers => "auto",
allow_whitespace => 1,
comment_str => "#",
strict => 1,
), [{ id => 42, name => "foo" }], "Last record is comment, under strict");
$data .= "3\n";
is_deeply (csv (
in => \$data,
sep_char => "|",
headers => "auto",
allow_whitespace => 1,
comment_str => "#",
strict => 0,
), [{ id => 42, name => "foo" },
{ id => 3, name => undef },
], "Valid record past comment");
is_deeply (csv (
in => \$data,
sep_char => "|",
headers => "auto",
allow_whitespace => 1,
comment_str => "#",
strict => 1,
auto_diag => 0, # Suppress error 2014
), [{ id => 42, name => "foo" }], "Invalid record past comment, under strict");
is_deeply (csv (
in => \"# comment\n42 | foo\n53 | bar\n",
sep_char => "|",
allow_whitespace => 1,
comment_str => "#",
strict => 1,
auto_diag => 1,
), [[ 42, "foo" ], [ 53, "bar" ]], "Comment on first line, under strict");
foreach my $io (1, 0) {
my $csv = Text::CSV_XS->new ({
strict => 1,
comment_str => "#",
sep_char => "|",
auto_diag => 2,
diag_verbose => 1,
});
# Data line is required to set field count for strict
if ($io) {
is_deeply ($csv->getline (*DATA), [ "a", "b" ], "Comment on last line IO data");
is_deeply ($csv->getline (*DATA), undef, "Comment on last line IO comment");
}
else {
ok ($csv->parse ("a|b"), "Parse data line");
is_deeply ([ $csv->fields ], [ "a", "b" ], "Data in parse");
ok ($csv->parse ("# some comment"), "Parse comment");
is_deeply ([ $csv->fields ], [ ], "Comment in parse");
}
}
1;
__END__
a|b
# some comment
|