File: Catmandu-Fix-remove_field.t

package info (click to toggle)
libcatmandu-perl 1.2024-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,552 kB
  • sloc: perl: 17,037; makefile: 24; sh: 1
file content (40 lines) | stat: -rw-r--r-- 1,056 bytes parent folder | download
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
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use Test::Exception;

my $pkg;

BEGIN {
    $pkg = 'Catmandu::Fix::remove_field';
    use_ok $pkg;
}

is_deeply $pkg->new('remove')->fix({remove => 'me', keep => 'me'}),
    {keep => 'me'}, "remove field at root";

is_deeply $pkg->new('many.*.remove')->fix(
    {
        many =>
            [{remove => 'me', keep => 'me'}, {remove => 'me', keep => 'me'}]
    }
    ),
    {many => [{keep => 'me'}, {keep => 'me'}]},
    "remove nested field with wildcard";

is_deeply $pkg->new("''")->fix({a => 'A', '' => 'Empty', c => 'C'}),
    {a => 'A', c => 'C'}, 'remove empty';

is_deeply $pkg->new("\"\"")->fix({a => 'A', '' => 'Empty', c => 'C'}),
    {a => 'A', c => 'C'}, 'remove empty (double quotes)';

is_deeply $pkg->new("x.''")->fix({x => {a => 'A', '' => 'Empty', c => 'C'}}),
    {x => {a => 'A', c => 'C'}}, 'remove nested empty';

is_deeply $pkg->new("\"x y z\"")
    ->fix({a => 'A', 'x y z' => 'Empty', c => 'C'}), {a => 'A', c => 'C'},
    'remove keys with spaces';

done_testing 7;