File: loader_logs.t

package info (click to toggle)
libconfig-model-perl 2.155-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,172 kB
  • sloc: perl: 15,117; makefile: 19
file content (192 lines) | stat: -rw-r--r-- 6,200 bytes parent folder | download | duplicates (2)
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# -*- cperl -*-

use ExtUtils::testlib;
use Test::More;
use Config::Model;
use Config::Model::Tester::Setup qw/init_test/;

use strict;
use warnings;

use lib "t/lib";
use Test::Log::Log4perl;

my ($model, $trace) = init_test();

Test::Log::Log4perl->ignore_priority("debug");

# See caveats in Test::More doc
my $builder = Test::More->builder;
binmode $builder->output,         ":encoding(UTF-8)";
binmode $builder->failure_output, ":encoding(UTF-8)";
binmode $builder->todo_output,    ":encoding(UTF-8)";
binmode STDOUT, ':encoding(UTF-8)';
binmode STDERR, ':encoding(UTF-8)';

my $inst = $model->instance(
    root_class_name => 'Master',
    model_file      => 'dump_load_model.pl',
    instance_name   => 'test1'
);
ok( $inst, "created dummy instance" );

my $root = $inst->config_root;
my $t_load = Test::Log::Log4perl->get_logger("Verbose.Loader");
my $t_value = Test::Log::Log4perl->get_logger("Tree.Element.Value");

sub xlog {
    my ($root,$cmd, @expected) = @_;
    Test::Log::Log4perl->start(ignore_priority => "debug");
    foreach my $exp (@expected) {
        if (ref($exp)) {
            $exp->[0]->info($exp->[1]);
        }
        else {
            $t_load->info($exp);
        }
    }
    $root->load($cmd);
    Test::Log::Log4perl->end("test log of '$cmd'");
}

subtest "test no logs during initial_load" => sub {
    $root->instance->initial_load_start;
    xlog($root, '!');
    $root->instance->initial_load_stop;
};

subtest "test navigation logs" => sub {
    xlog($root, '!', "command '!': Going from root node to root node");
    xlog(
        $root, 'plain_object - -',
        "command 'plain_object': Going down from root node to node 'plain_object'",
        "command '-': Going up from node 'plain_object' to root node",
        "command '-': Going up from root node to exit Loader."
    );
    xlog(
        $root, 'ordered_hash_of_node:blah',
        "command 'ordered_hash_of_node:blah': Going down from root node to node 'ordered_hash_of_node:blah'",
    );
    xlog(
        $root, 'olist:0',
        "command 'olist:0': Going down from root node to node 'olist:0'",
    );
};

subtest "test search logs" => sub {
    xlog(
        $root, '/plain_object',
        "command '/plain_object': Element 'plain_object' found in current node (root node).",
        "command 'plain_object': Going down from root node to node 'plain_object'",
    );

    xlog(
        $root, 'olist:0 /plain_object',
        "command 'olist:0': Going down from root node to node 'olist:0'",
        "command '/plain_object': Going up from node 'olist:0' to root node to search for element 'plain_object'.",
        "command '/plain_object': Element 'plain_object' found in current node (root node).",
        "command 'plain_object': Going down from root node to node 'plain_object'",
    );
};

subtest "test annotation logs" => sub {
    xlog(
        $root, '#"root comment "',
        q!command '#"root comment "': Setting root node annotation to 'root comment '!
    );
    xlog(
        $root, 'plain_object#"obj comment"',
        q!command 'plain_object#"obj comment"': Setting node 'plain_object' annotation to 'obj comment'!,
        q!command 'plain_object#"obj comment"': Going down from root node to node 'plain_object'!,
    );
};

subtest "test assignment logs" => sub {
    xlog(
        $root, 'a_string=blah',
        q!command 'a_string=blah': Setting leaf 'a_string' string to 'blah'.!
    );
    xlog(
        $root, 'a_string.=blah',
        q!command 'a_string.=blah': Appending 'blah' to leaf 'a_string' string. Result is 'blahblah'.!
    );
    xlog(
        $root, 'a_string=~s/ahbl//',
        q!command 'a_string=~s/ahbl//': Applying regexp 's/ahbl//' to leaf 'a_string' string. Result is 'blah'.!
    );
    xlog(
        $root, 'int_v=14',
        q!command 'int_v=14': Setting leaf 'int_v' integer to '14'.!
    );
    xlog(
        $root, 'int_v~',
        q!command 'int_v~': Deleting leaf 'int_v'.!
    );
    xlog(
        $root, 'hash_a:foo=bar',
        q!command 'hash_a:foo=bar': Setting leaf 'hash_a:foo' string to 'bar'.!
    );
    xlog(
        $root, 'lista:0=foo lista:1=bar',
        q!command 'lista:0=foo': Setting leaf 'lista:0' string to 'foo'.!,
        q!command 'lista:1=bar': Setting leaf 'lista:1' string to 'bar'.!,
    );
    xlog(
        # change list value to avoid log like 'skip storage of lista:0 unchanged value: foo2'
        $root, 'lista=foo2,bar2',
        q!command 'lista=foo2,bar2': Setting list 'lista' values to 'foo2,bar2'.!,
    );
    xlog(
        # change list value to avoid log like 'skip storage of lista:0 unchanged value: foo2'
        $root, 'lista:=foo3,bar3',
        q!command 'lista:=foo3,bar3': Setting list 'lista' values to 'foo3,bar3'.!,
    );
    xlog(
        $root, 'alpha_check_list=A,C,F,G',
        q!command 'alpha_check_list=A,C,F,G': Setting check_list 'alpha_check_list' items 'A,C,F,G'.!,
    );
};

subtest "test dispatched operator" => sub {
    my $expect = q!Running 'push' on list 'lista' with "z", "x".!;

    xlog(
        $root, 'lista:.push(z,x)',
        qq!command 'lista:.push(z,x)': $expect!
    );
    xlog(
        $root, 'lista:<(z,x)',
        qq!command 'lista:<(z,x)': $expect!
    );

    $root->load("ordered_hash:bkey=bv ordered_hash:dkey=dv");
    xlog(
        $root, 'ordered_hash:.insort(ckey,cv)',
        qq!command 'ordered_hash:.insort(ckey,cv)': Running 'insort' on hash 'ordered_hash' with "ckey", "cv".!,
    )
};

subtest "test creation of empty elements" => sub {
    xlog(
        $root, 'hash_a:foo',
        q!command 'hash_a:foo': Creating empty leaf 'hash_a:foo'.!
    );
};

subtest "test hash of loop" => sub {
    xlog(
        $root, 'hash_a:.clear',
        q!command 'hash_a:.clear': Running 'clear' on hash 'hash_a' with "".!
    );
    $root->load("hash_a:foo1=foov1_x hash_a:foo2=foov2_x hash_a:bar=barv_x");
    my $loop = 'hash_a:~/foo/=~s/_x//';
    xlog(
        $root, $loop,
        map {(
            qq!command '$loop': Running foreach_map loop on leaf 'hash_a:foo$_'.!,
            qq!command '$loop': Applying regexp 's/_x//' to leaf 'hash_a:foo$_' string. Result is 'foov$_'.!
        )} qw/1 2/
    );
};

done_testing;