File: Catmandu-Interactive.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 (125 lines) | stat: -rw-r--r-- 2,767 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
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
#!/usr/bin/env perl

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

my $pkg;

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

{
    my $cmd = "\\q\n";
    my $res = "";
    my $in  = Catmandu::Util::io \$cmd, mode => 'r';
    my $out = Catmandu::Util::io \$res, mode => 'w';

    my $app = Catmandu::Interactive->new(in => $in, out => $out, silent => 1);

    $app->run();

    is $res, "", 'can execute \q';

    $in->close();
    $out->close();
}

{
    my $cmd = "add_field(hello,world)\n";
    my $res = "";
    my $in  = Catmandu::Util::io \$cmd, mode => 'r';
    my $out = Catmandu::Util::io \$res, mode => 'w';

    my $app = Catmandu::Interactive->new(
        in            => $in,
        out           => $out,
        silent        => 1,
        exporter      => 'JSON',
        exporter_args => {line_delimited => 1},
    );

    $app->run();

    is $res, "{\"hello\":\"world\"}\n", 'can execute hello world';

    $in->close();
    $out->close();
}

{
    my $cmd
        = "add_field(hello,world)\nif exists(hello)\nupcase(hello)\nend\n";
    my $res = "";
    my $in  = Catmandu::Util::io \$cmd, mode => 'r';
    my $out = Catmandu::Util::io \$res, mode => 'w';

    my $app = Catmandu::Interactive->new(
        in            => $in,
        out           => $out,
        silent        => 1,
        exporter      => 'JSON',
        exporter_args => {line_delimited => 1},
    );

    $app->run();

    is $res, "{\"hello\":\"world\"}\n{\"hello\":\"WORLD\"}\n",
        'can execute hello world with continuation';

    $in->close();
    $out->close();
}

{
    my $cmd = "add_field(hello,world)\n\\h\n";
    my $res = "";
    my $in  = Catmandu::Util::io \$cmd, mode => 'r';
    my $out = Catmandu::Util::io \$res, mode => 'w';

    my $app = Catmandu::Interactive->new(
        in            => $in,
        out           => $out,
        silent        => 1,
        exporter      => 'JSON',
        exporter_args => {line_delimited => 1},
    );

    $app->run();

    is $res, "{\"hello\":\"world\"}\nadd_field(hello,world)\n",
        'can execute \h';

    $in->close();
    $out->close();
}

{
    my $cmd = "add_field(hello.\$append,world)\n\\r\n";
    my $res = "";
    my $in  = Catmandu::Util::io \$cmd, mode => 'r';
    my $out = Catmandu::Util::io \$res, mode => 'w';

    my $app = Catmandu::Interactive->new(
        in            => $in,
        out           => $out,
        silent        => 1,
        exporter      => 'JSON',
        exporter_args => {line_delimited => 1},
    );

    $app->run();

    is $res, "{\"hello\":[\"world\"]}\n{\"hello\":[\"world\",\"world\"]}\n",
        'can execute \r';

    $in->close();
    $out->close();
}

done_testing;