#! /usr/local/bin/perl -w
BEGIN {
my
$package
;
if
($0 =~ /_pp\.t$/) {
$package
=
'gettext_pp'
;
}
else
{
$package
=
'gettext_xs'
;
}
my
$selected
= Locale::Messages->select_package (
$package
);
if
(
$selected
ne
$package
&&
'gettext_xs'
eq
$package
) {
print
"1..0 # Skip: Locale::$package not available here.\n"
;
exit
0;
}
plan
tests
=> NUM_TESTS;
}
Locale::Messages::nl_putenv (
"LANGUAGE=C"
);
Locale::Messages::nl_putenv (
"LC_ALL=C"
);
Locale::Messages::nl_putenv (
"LANG=C"
);
Locale::Messages::nl_putenv (
"LC_MESSAGES=C"
);
Locale::Messages::nl_putenv (
"OUTPUT_CHARSET=iso-8859-1"
);
Locale::Messages::setlocale (POSIX::LC_ALL() =>
''
);
my
$locale_dir
= $0;
$locale_dir
=~ s,[^\\/]+$,, or
$locale_dir
=
'.'
;
$locale_dir
.=
'/LocaleData'
;
bindtextdomain
not_here
=>
$locale_dir
;
textdomain
'not_here'
;
my
$context3
=
"Context here (3)"
;
my
@strings3
= (
"Singular 3"
,
"Plural 3"
);
for
(0 .. 9) {
my
$translation
= npgettext (
$context3
,
$strings3
[0],
$strings3
[1],
$_
);
my
$expected
=
$_
== 1 ?
'Singular 3'
:
'Plural 3'
;
ok
$translation
,
$expected
;
}
my
$context
=
"Context here (2)"
;
my
@strings
=
qw (Singular
Plural);
for
(0 .. 9) {
my
$translation
= npgettext (
$context
,
$strings
[0],
$strings
[1],
$_
);
my
$expected
=
$_
== 1 ?
'Singular'
:
'Plural'
;
ok
$translation
,
$expected
;
}
my
$textdomain
=
'existing'
;
Locale::Messages::nl_putenv (
"LANGUAGE=C"
);
Locale::Messages::nl_putenv (
"LC_ALL=C"
);
Locale::Messages::nl_putenv (
"LANG=C"
);
Locale::Messages::nl_putenv (
"LC_MESSAGES=C"
);
Locale::Messages::setlocale (POSIX::LC_ALL() =>
''
);
my
$bound_dir
= bindtextdomain
$textdomain
=>
$locale_dir
;
ok
defined
$bound_dir
;
ok (File::Spec->catdir (
$bound_dir
), File::Spec->catdir (
$bound_dir
));
my
$bound_domain
= textdomain
$textdomain
;
ok
defined
$bound_domain
;
ok
$bound_domain
,
$textdomain
;
for
(0 .. 9) {
my
$translation
= npgettext (
$context
,
$strings
[0],
$strings
[1],
$_
);
my
$expected
=
$_
== 1 ?
'Singular'
:
'Plural'
;
ok
$translation
,
$expected
;
}
Locale::Messages::nl_putenv (
"LANGUAGE=de_AT"
);
Locale::Messages::nl_putenv (
"LC_ALL=de_AT"
);
Locale::Messages::nl_putenv (
"LANG=de_AT"
);
Locale::Messages::nl_putenv (
"LC_MESSAGES=de_AT"
);
my
$missing_locale
= Locale::Messages::setlocale (POSIX::LC_ALL() =>
''
) ?
''
:
'locale de_AT missing'
;
for
(0 .. 9) {
my
$translation
= npgettext (
$context
,
$strings
[0],
$strings
[1],
$_
);
my
$expected
=
$_
== 1 ?
'Einzahl 2'
:
'Mehrzahl 2'
;
skip skip
$missing_locale
,
$translation
,
$expected
;
}
$textdomain
=
'additional'
;
Locale::Messages::nl_putenv (
"LANGUAGE=C"
);
Locale::Messages::nl_putenv (
"LC_ALL=C"
);
Locale::Messages::nl_putenv (
"LANG=C"
);
Locale::Messages::nl_putenv (
"LC_MESSAGES=C"
);
Locale::Messages::setlocale (POSIX::LC_ALL() =>
''
);
$bound_dir
= bindtextdomain
$textdomain
=>
$locale_dir
;
ok
defined
$bound_dir
;
ok (File::Spec->catdir (
$bound_dir
), File::Spec->catdir (
$bound_dir
));
$bound_domain
= textdomain
$textdomain
;
ok
defined
$bound_domain
;
ok
$bound_domain
,
$textdomain
;
for
(0 .. 9) {
my
$translation
= npgettext (
$context
,
$strings
[0],
$strings
[1],
$_
);
my
$expected
=
$_
== 1 ?
'Singular'
:
'Plural'
;
ok
$translation
,
$expected
;
}
Locale::Messages::nl_putenv (
"LANGUAGE=de_AT"
);
Locale::Messages::nl_putenv (
"LC_ALL=de_AT"
);
Locale::Messages::nl_putenv (
"LANG=de_AT"
);
Locale::Messages::nl_putenv (
"LC_MESSAGES=de_AT"
);
Locale::Messages::setlocale (POSIX::LC_ALL() =>
''
);
for
(0 .. 40) {
my
$translation
= npgettext (
$context
,
$strings
[0],
$strings
[1],
$_
);
my
$plural
= (
$_
== 1 ? 0 :
$_
% 10 == 2 ? 1 :
$_
% 10 == 3 ||
$_
%10 == 4 ? 2 : 3);
skip
$missing_locale
,
$translation
,
"Numerus 2:$plural"
;
}