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
|
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Exception;
my $pkg;
BEGIN {
$pkg = 'Catmandu::Fix::add_field';
use_ok $pkg;
}
is_deeply $pkg->new('job', 'fixer')->fix({}), {job => "fixer"},
"add field at root";
is_deeply $pkg->new('deeply.nested.$append.job', 'fixer')->fix({}),
{deeply => {nested => [{job => "fixer"}]}},
"add field creates intermediate path";
is_deeply $pkg->new('deeply.nested.1.job', 'fixer')->fix({}),
{deeply => {nested => [undef, {job => "fixer"}]}},
"add field creates intermediate path";
is_deeply $pkg->new('deeply.nested.$append.job', 'fixer')
->fix({deeply => {nested => {}}}), {deeply => {nested => {}}},
"only add field if the path matches";
is_deeply $pkg->new('test', '0123')->fix({}), {test => '0123'},
"add a number";
is_deeply $pkg->new('test')->fix({}), {test => undef}, "set key to undef";
is_deeply $pkg->new("''", 'empty')->fix({}), {'' => 'empty'},
"add an empty field";
is_deeply $pkg->new("'a'", 'test')->fix({}), {a => 'test'},
"add a single quoted field";
is_deeply $pkg->new("\"a\"", 'test')->fix({}), {a => 'test'},
"add a double quoted field";
is_deeply $pkg->new("\"a b c\"", 'test')->fix({}), {"a b c" => 'test'},
"add a double quoted field with spaces";
done_testing;
|