File: Catmandu-Cmd-convert.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 (58 lines) | stat: -rw-r--r-- 1,367 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env perl

use strict;
use warnings;
use Test::More;
use Test::Exception;
use App::Cmd::Tester::CaptureExternal;
use Cpanel::JSON::XS;

my $pkg;

BEGIN {
    $pkg = 'Catmandu::Cmd::convert';
    use_ok $pkg;
}
require_ok $pkg;

use Catmandu::CLI;

{
    my $result = test_app(qq|Catmandu::CLI| =>
            [qw(convert -v YAML --file t/catmandu.yml to JSON)]);

    my $perl = decode_json($result->stdout);

    ok $perl, 'got JSON';
    is $perl->[0]->{importer}{default}{package}, 'YAML', 'got data';
    is $result->error,                           undef, 'threw no exceptions';
}

{
    my $result = test_app(
        qq|Catmandu::CLI| => [
            'convert', '-v',       '--start=2',     '--total=1',
            'CSV',     '--file',   't/planets.csv', 'to',
            'CSV',     '--header', '0',             '--fields',
            'english,latin'
        ]
    );
    is $result->stdout, "Moon,Luna\n", 'start and limit';
}

{
    my $result = test_app(
        qq|Catmandu::CLI| => [
            'convert',   'CSV',
            '--file',    't/planets.csv',
            '--fix',     'copy_field(english,_id)',
            'to',        'CSV',
            '--header',  '0',
            '--fields',  'latin',
            '--id-file', 't/planet_ids.txt'
        ]
    );
    is $result->stdout, "Sol\nLuna\nTerra\n", 'id file';
}

done_testing;