File: manifypods_with_utf8.t

package info (click to toggle)
libmodule-build-perl 0.422000-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,516 kB
  • ctags: 1,083
  • sloc: perl: 11,174; sh: 44; makefile: 2
file content (63 lines) | stat: -rw-r--r-- 1,589 bytes parent folder | download | duplicates (5)
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
package ManifypodsWithUtf8;
use strict;
use utf8;
use Test::More;

use lib 't/lib';
blib_load('Module::Build');
blib_load('Module::Build::ConfigData');

use MBTest;
plan ($] > 5.008 ? (tests => 2) : (skip_all => 'UTF-8 manpages require perl 5.8.1'));
use File::Spec::Functions qw( catdir );

use Cwd ();
my $cwd = Cwd::cwd;
my $tmp = MBTest->tmpdir;

use DistGen;
my $dist = DistGen->new( dir => $tmp );
my $content = <<'---';

=encoding utf8

=head1 NAME

Simple::PodWithUtf8 - POD with some (ç á à ô) special chars

=cut
---
utf8::encode($content);
$dist->add_file( 'lib/Simple/PodWithUtf8.pod', $content);
$dist->regen;
$dist->chdir_in;

my $destdir = catdir($cwd, 't', 'install_test' . $$);

my $mb = Module::Build->new(
			    module_name      => $dist->name,
			    install_base     => $destdir,

			    # need default install paths to ensure manpages get generated
			    installdirs => 'site',
			    config => {
			        installsiteman1dir  => catdir($tmp, 'site', 'man', 'man1'),
			        installsiteman3dir  => catdir($tmp, 'site', 'man', 'man3'),
			    },
			    extra_manify_args => { utf8 => 1 },
			);
$mb->add_to_cleanup($destdir);


$mb->dispatch('build');
my $sep = $mb->manpage_separator;
my $ext3 = $mb->config('man3ext');
my $to = File::Spec->catfile('blib', 'libdoc', "Simple${sep}PodWithUtf8.${ext3}");

ok(-e $to, "Manpage is found at $to");
open my $pod, '<:encoding(utf-8)', $to or diag "Could not open $to: $!";
my $pod_content = do { local $/; <$pod> };
close $pod;

like($pod_content, qr/ \(ç á à ô\) /, "POD should contain special characters");