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
|
#!/usr/bin/perl
#
# Test for graceful degradation to non-utf8 output without Encode module.
#
# Copyright 2016 Niko Tyni <ntyni@iki.fi>
# Copyright 2016, 2018-2019 Russ Allbery <rra@cpan.org>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
#
# SPDX-License-Identifier: GPL-1.0-or-later OR Artistic-1.0-Perl
use 5.008;
use strict;
use warnings;
use Test::More tests => 5;
# Remove the record of the Encode module being loaded if it already was (it
# may have been loaded before the test suite runs), and then make it
# impossible to load it. This should be enough to trigger the fallback code
# in Pod::Man.
BEGIN {
delete $INC{'Encode.pm'};
my $reject_encode = sub {
if ($_[1] eq 'Encode.pm') {
die "refusing to load Encode\n";
}
};
unshift(@INC, $reject_encode);
ok(!eval { require Encode }, 'Cannot load Encode any more');
}
# Load the module.
BEGIN {
use_ok('Pod::Man');
}
# Ensure we don't get warnings by throwing an exception if we see any. This
# is overridden below when we enable utf8 and do expect a warning.
local $SIG{__WARN__} = sub { die "No warnings expected\n" };
# First, check that everything works properly when utf8 isn't set. We expect
# to get accent-mangled ASCII output. Don't use Test::Podlators, since it
# wants to import Encode.
#
## no critic (ValuesAndExpressions::ProhibitEscapedCharacters)
my $pod = "=encoding latin1\n\n=head1 NAME\n\nBeyonc\xE9!";
my $parser = Pod::Man->new(utf8 => 0, name => 'test');
my $output;
$parser->output_string(\$output);
$parser->parse_string_document($pod);
like(
$output,
qr{ Beyonce\\[*]\' }xms,
'Works without Encode for non-utf8 output'
);
# Now, try with the utf8 option set. We should then get a warning that we're
# falling back to non-utf8 output.
{
local $SIG{__WARN__} = sub {
like(
$_[0],
qr{ falling [ ] back [ ] to [ ] non-utf8 }xms,
'Pod::Man warns on utf8 option with no Encode module'
);
};
$parser = Pod::Man->new(utf8 => 1, name => 'test');
}
my $output_fallback;
$parser->output_string(\$output_fallback);
$parser->parse_string_document($pod);
is($output_fallback, $output, 'Degraded gracefully to non-utf8 output');
|