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 75 76 77 78 79 80 81 82 83 84 85 86 87
|
#!/usr/bin/perl
use strict;
use warnings;
=head1 TEST PURPOSE
These tests test option list expansion (from an option list into a hashref).
=cut
use Sub::Install;
use Test::More tests => 13;
BEGIN { use_ok('Data::OptList'); }
# let's get a convenient copy to use:
Sub::Install::install_sub({
code => 'mkopt_hash',
from => 'Data::OptList',
as => 'OPTH',
});
is_deeply(
OPTH(),
{},
"empty opt list expands properly",
);
is_deeply(
OPTH(undef),
{},
"undef opt list expands properly",
);
is_deeply(
OPTH([]),
{},
"empty arrayref opt list expands properly",
);
is_deeply(
OPTH({}),
{},
"empty hashref opt list expands properly",
);
is_deeply(
OPTH([ qw(foo bar baz) ]),
{ foo => undef, bar => undef, baz => undef },
"opt list of just names expands",
);
is_deeply(
OPTH([ qw(foo :bar baz) ]),
{ foo => undef, ':bar' => undef, baz => undef },
"opt list of names expands with :group names",
);
is_deeply(
OPTH([ foo => { a => 1 }, ':bar', 'baz' ]),
{ foo => { a => 1 }, ':bar' => undef, baz => undef },
"opt list of names and values expands",
);
is_deeply(
OPTH([ foo => { a => 1 }, ':bar' => undef, 'baz' ]),
{ foo => { a => 1 }, ':bar' => undef, baz => undef },
"opt list of names and values expands, ignoring undef",
);
is_deeply(
OPTH({ foo => { a => 1 }, -bar => undef, baz => undef }, 0, 'HASH'),
{ foo => { a => 1 }, -bar => undef, baz => undef },
"opt list of names and values expands with must_be",
);
is_deeply(
OPTH({ foo => { a => 1 }, -bar => undef, baz => undef }, 0, ['HASH']),
{ foo => { a => 1 }, -bar => undef, baz => undef },
"opt list of names and values expands with [must_be]",
);
eval { OPTH({ foo => { a => 1 }, -bar => undef, baz => undef }, 0, 'ARRAY'); };
like($@, qr/HASH-ref values are not/, "exception tossed on invaild ref value");
eval { OPTH({ foo => { a => 1 }, -bar => undef, baz => undef }, 0, ['ARRAY']); };
like($@, qr/HASH-ref values are not/, "exception tossed on invaild ref value");
|