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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
#!/usr/bin/env perl
use lib 't/lib';
use strict;
use warnings;
use Test::More;
use Test::Exception;
use Catmandu::Fix;
use Catmandu::Importer::Mock;
use Catmandu::Util qw(:is);
my $pkg;
BEGIN {
$pkg = 'Catmandu::Fix::Bind::each';
use_ok $pkg;
}
require_ok $pkg;
my $fixes = <<EOF;
do each(path:.,var:i)
add_field(foo,bar)
end
EOF
my $fixer = Catmandu::Fix->new(fixes => [$fixes]);
ok $fixer, 'create fixer';
is_deeply $fixer->fix({ok => 1}), {ok => 1, foo => 'bar'},
'testing add_field';
$fixes = <<EOF;
do each(path:.,var:i)
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({foo => 'bar'}), {foo => 'bar'},
'testing zero fix functions';
$fixes = <<EOF;
do each(path:.,var:i)
unless exists(foo)
add_field(foo,bar)
end
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({ok => 1}), {ok => 1, foo => 'bar'}, 'testing unless';
$fixes = <<EOF;
do each(path:.,var:i)
if exists(foo)
add_field(foo2,bar)
end
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({foo => 'bar'}), {foo => 'bar', foo2 => 'bar'},
'testing if';
$fixes = <<EOF;
do each(path:.,var:i)
reject exists(foo)
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
ok !defined $fixer->fix({foo => 'bar'}), 'testing reject';
$fixes = <<EOF;
do each(path:.,var:i)
select exists(foo)
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({foo => 'bar'}), {foo => 'bar'}, 'testing select';
$fixes = <<EOF;
do each(path:.,var:i)
do each(path:.,var:i)
do each(path:.,var:i)
add_field(foo,bar)
end
end
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({foo => 'bar'}), {foo => 'bar'}, 'testing nesting';
$fixes = <<EOF;
add_field(before,ok)
do each(path:.,var:i)
add_field(inside,ok)
end
add_field(after,ok)
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix({foo => 'bar'}),
{foo => 'bar', before => 'ok', inside => 'ok', after => 'ok'},
'before/after testing';
$fixes = <<'EOF';
do each(path:demo, var: t)
if all_match(t.key,en)
copy_field(t.value, titles.$append)
else
upcase(t.key)
upcase(t.value)
end
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix(
{
demo =>
{nl => 'Tuin der lusten', en => 'The Garden of Earthly Delights'}
}
),
{
demo => {NL => 'TUIN DER LUSTEN', en => 'The Garden of Earthly Delights'},
titles => ['The Garden of Earthly Delights']
},
'specific testing';
$fixes = <<'EOF';
do each(path:demo)
if all_match(key,en)
copy_field(value, titles.$append)
else
upcase(key)
upcase(value)
end
end
EOF
$fixer = Catmandu::Fix->new(fixes => [$fixes]);
is_deeply $fixer->fix(
{
demo =>
{nl => 'Tuin der lusten', en => 'The Garden of Earthly Delights'}
}
),
{
demo => {
NL => 'TUIN DER LUSTEN',
en => 'The Garden of Earthly Delights',
titles => ['The Garden of Earthly Delights']
},
},
'specific testing 2';
done_testing;
|