Tomas Cohen Arazi
0db732980a
This patch makes sure all scenarios are covered for SetUTF8Flag. Signed-off-by: Emma Heath <emmaheath.student@wegc.school.nz> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Signed-off-by: Galen Charlton <gmc@esilibrary.com>
58 lines
2 KiB
Perl
Executable file
58 lines
2 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 10;
|
|
use MARC::Record;
|
|
|
|
BEGIN {
|
|
use_ok('C4::Charset');
|
|
}
|
|
|
|
my $octets = "abc";
|
|
ok(IsStringUTF8ish($octets), "verify octets are valid UTF-8 (ASCII)");
|
|
|
|
$octets = "flamb\c3\a9";
|
|
ok(!utf8::is_utf8($octets), "verify that string does not have Perl UTF-8 flag on");
|
|
ok(IsStringUTF8ish($octets), "verify octets are valid UTF-8 (LATIN SMALL LETTER E WITH ACUTE)");
|
|
ok(!utf8::is_utf8($octets), "verify that IsStringUTF8ish does not magically turn Perl UTF-8 flag on");
|
|
|
|
$octets = "a\xc2" . "c";
|
|
ok(!IsStringUTF8ish($octets), "verify octets are not valid UTF-8");
|
|
|
|
ok( !SetUTF8Flag(), 'SetUTF8Flag returns undef if no record passed' );
|
|
|
|
my $record = MARC::Record->new();
|
|
ok( !SetUTF8Flag($record), 'SetUTF8Flag returns undef if the record has no subfields' );
|
|
# Add some fields/subfields
|
|
$record->append_fields(
|
|
MARC::Field->new('100', ' ', ' ', a => 'Julio Cortazar'),
|
|
MARC::Field->new('245', ' ', ' ', a => 'Rayuela'),
|
|
);
|
|
# Verify our data serves its purpose
|
|
ok( !utf8::is_utf8($record->subfield('100','a')) &&
|
|
!utf8::is_utf8($record->subfield('245','a')),
|
|
'Verify that the subfields are NOT set the UTF-8 flag yet' );
|
|
|
|
SetUTF8Flag($record);
|
|
|
|
ok( utf8::is_utf8($record->subfield('100','a')) &&
|
|
utf8::is_utf8($record->subfield('245','a')),
|
|
'SetUTF8Flag sets the UTF-8 flag to all subfields' );
|
|
|
|
1;
|