File: Catmandu-Cmd-export.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 (65 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/env perl

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

my $pkg;

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

use Catmandu::CLI;

{
    my $result = test_app(
        qq|Catmandu::CLI| => [
            qw(export -v test to JSON --line-delimited 1 --fix t/myfixes.fix --total 1)
        ]
    );

    my @lines = split(/\n/, $result->stdout);

    ok @lines == 1, 'test total';

    my $perl = decode_json($lines[0]);

    ok $perl, 'got JSON';
    is $perl->{value}, 'Sol', 'got data';
    is $perl->{utf8_name},
        'ვეპხის ტყაოსანი შოთა რუსთაველი',
        'got utf8 data';
    is $result->error, undef, 'threw no exceptions';
}

{
    my $result = test_app(
        qq|Catmandu::CLI| => [
            qw(export -v test to JSON --line-delimited 1 --id-file t/planet_ids.txt)
        ]
    );

    my @lines = split(/\n/, $result->stdout);

    ok @lines == 3, 'test total';

    my $recs = [map {decode_json($_)} @lines];

    is_deeply(
        $recs,
        [
            {_id => 'Earth', value => 'Terra'},
            {_id => 'Sun',   value => 'Sol'},
            {_id => 'Moon',  value => 'Luna'},
        ]
    );
}

done_testing;