#!/usr/bin/perl -w
my
@unix_splits
=
(
{
q{one t'wo th'ree f"o\"ur " "five" }
=> [
'one'
,
'two three'
,
'fo"ur '
,
'five'
] },
{
q{ foo bar }
=> [
'foo'
,
'bar'
] },
{
q{ D\'oh f\{g\'h\"i\]\* }
=> [ "D'oh
", "
f{g'h\
"i]*"
] },
{
q{ D\$foo }
=> [
'D$foo'
] },
{
qq{one\\\ntwo}
=> [
"one\ntwo"
] },
);
my
@win_splits
=
(
{
'a" "b\\c" "d'
=> [
'a b\c d'
] },
{
'"a b\\c d"'
=> [
'a b\c d'
] },
{
'"a b"\\"c d"'
=> [
'a b"c'
,
'd'
] },
{
'"a b"\\\\"c d"'
=> [
'a b\c d'
] },
{
'"a"\\"b" "a\\"b"'
=> [
'a"b a"b'
] },
{
'"a"\\\\"b" "a\\\\"b"'
=> [
'a\b'
,
'a\b'
] },
{
'"a"\\"b a\\"b"'
=> [
'a"b'
,
'a"b'
] },
{
'a"\\"b" "a\\"b'
=> [
'a"b'
,
'a"b'
] },
{
'a"\\"b" "a\\"b'
=> [
'a"b'
,
'a"b'
] },
{
'a b'
=> [
'a'
,
'b'
] },
{
'a"\\"b a\\"b'
=> [
'a"b a"b'
] },
{
'"a""b" "a"b"'
=> [
'a"b ab'
] },
{
'\\"a\\"'
=> [
'"a"'
] },
{
'"a"" "b"'
=> [
'a"'
,
'b'
] },
{
'a"b'
=> [
'ab'
] },
{
'a""b'
=> [
'ab'
] },
{
'a"""b'
=> [
'a"b'
] },
{
'a""""b'
=> [
'a"b'
] },
{
'a"""""b'
=> [
'a"b'
] },
{
'a""""""b'
=> [
'a""b'
] },
{
'"a"b"'
=> [
'ab'
] },
{
'"a""b"'
=> [
'a"b'
] },
{
'"a"""b"'
=> [
'a"b'
] },
{
'"a""""b"'
=> [
'a"b'
] },
{
'"a"""""b"'
=> [
'a""b'
] },
{
'"a""""""b"'
=> [
'a""b'
] },
{
''
=> [ ] },
{
' '
=> [ ] },
{
'""'
=> [
''
] },
{
'" "'
=> [
' '
] },
{
'""a'
=> [
'a'
] },
{
'""a b'
=> [
'a'
,
'b'
] },
{
'a""'
=> [
'a'
] },
{
'a"" b'
=> [
'a'
,
'b'
] },
{
'"" a'
=> [
''
,
'a'
] },
{
'a ""'
=> [
'a'
,
''
] },
{
'a "" b'
=> [
'a'
,
''
,
'b'
] },
{
'a " " b'
=> [
'a'
,
' '
,
'b'
] },
{
'a " b " c'
=> [
'a'
,
' b '
,
'c'
] },
{
'a "0" c'
=> [
'a'
,
'0'
,
'c'
] },
{
'"a\\b"'
=> [
'a\\b'
] },
{
'"a\\\\b"'
=> [
'a\\\\b'
] },
{
'"a\\\\\\b"'
=> [
'a\\\\\\b'
] },
{
'"a\\\\\\\\b"'
=> [
'a\\\\\\\\b'
] },
{
'"a\\"'
=> [
'a"'
] },
{
'"a\\\\"'
=> [
'a\\'
] },
{
'"a\\\\\\"'
=> [
'a\\"'
] },
{
'"a\\\\\\\\"'
=> [
'a\\\\'
] },
{
'"a\\\\\\""'
=> [
'a\\"'
] },
);
plan
tests
=> 9 + 4*
@unix_splits
+ 4*
@win_splits
;
blib_load(
'Module::Build'
);
blib_load(
'Module::Build::Platform::Unix'
);
blib_load(
'Module::Build::Platform::Windows'
);
foreach
my
$platform
(
''
,
'::Platform::Unix'
,
'::Platform::Windows'
) {
my
$pkg
=
"Module::Build$platform"
;
my
@result
=
$pkg
->split_like_shell([
'foo'
,
'bar'
,
'baz'
]);
is
@result
, 3,
"Split using $pkg"
;
is
"@result"
,
"foo bar baz"
,
"Split using $pkg"
;
}
my
$low_TPW_version
= Text::ParseWords->VERSION < 3.24;
foreach
my
$test
(
@unix_splits
) {
local
$TODO
=
$low_TPW_version
&& ((
keys
%$test
)[0] =~ m{\\\n});
do_split_tests(
'Module::Build::Platform::Unix'
,
$test
);
}
foreach
my
$test
(
@win_splits
) {
do_split_tests(
'Module::Build::Platform::Windows'
,
$test
);
}
{
my
@args
=
qw(foo=bar --food bard --foods=bards)
;
my
(
$args
) = Module::Build->read_args(
@args
);
is_deeply(
$args
, {
foo
=>
'bar'
,
food
=>
'bard'
,
foods
=>
'bards'
,
ARGV
=> []});
}
{
my
%args
= (
foo
=>
'bar'
,
food
=>
'bard'
,
config
=> {
a
=> 1,
b
=> 2},
ARGV
=> []);
my
(
$args
) = Module::Build->read_args( Module::Build->unparse_args(\
%args
) );
is_deeply(
$args
, \
%args
);
}
{
local
*Module::Build::log_info
=
sub
{};
my
@data
=
map
values
(
%$_
),
@unix_splits
,
@win_splits
;
for
my
$d
(
@data
) {
my
$out
= stdout_of
(
sub
{
Module::Build->run_perl_script(
'-le'
, [], [
'print join " ", map "{$_}", @ARGV'
,
@$d
]);
} );
chomp
$out
;
is(
$out
,
join
(
' '
,
map
"{$_}"
,
@$d
),
"perl round trip for "
.
join
(
''
,
map
"{$_}"
,
@$d
));
}
}
{
local
*Module::Build::log_info
=
sub
{};
my
@data
=
map
values
(
%$_
),
@unix_splits
,
@win_splits
;
for
my
$d
(
@data
) {
chomp
(
my
$out
= Module::Build->_backticks($^X,
'-le'
,
'print join " ", map "{$_}", @ARGV'
,
@$d
));
is(
$out
,
join
(
' '
,
map
"{$_}"
,
@$d
),
"backticks round trip for "
.
join
(
''
,
map
"{$_}"
,
@$d
));
}
}
{
my
$dir
= MBTest->tmpdir;
if
($^O eq
'VMS'
) {
$dir
= VMS::Filespec::unixify(
$dir
);
$dir
=~ s
}
local
@INC
= (
$dir
,
@INC
);
my
$output
= stdout_of(
sub
{ Module::Build->run_perl_script(
'-le'
, [], [
'print for @INC'
]) } );
like
$output
,
qr{^\Q$dir\E}
m;
}
sub
do_split_tests {
my
(
$package
,
$test
) =
@_
;
my
(
$string
,
$expected
) =
%$test
;
my
@result
=
$package
->split_like_shell(
$string
);
is( 0 +
grep
( !
defined
(),
@result
),
0,
"'$string' result all defined"
);
is_deeply(\
@result
,
$expected
) or
diag(
"$package split_like_shell error \n"
.
">$string< is not splitting as >"
.
join
(
"|"
,
@$expected
) .
'<'
);
}