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 193 194 195 196 197 198 199 200
|
# -*- cperl -*-
use ExtUtils::testlib;
use Test::More tests => 38;
use Test::Memory::Cycle;
use Config::Model;
use warnings;
no warnings qw(once);
use strict;
use vars qw/$model/;
$model = Config::Model -> new(legacy => 'ignore',) ;
my $arg = shift || '' ;
my $trace = $arg =~ /t/ ? 1 : 0 ;
$::verbose = 1 if $arg =~ /v/;
$::debug = 1 if $arg =~ /d/;
Config::Model::Exception::Any->Trace(1) if $arg =~ /e/;
use Log::Log4perl qw(:easy) ;
Log::Log4perl->easy_init($arg =~ /l/ ? $TRACE: $ERROR);
ok(1,"compiled");
my $inst = $model->instance (root_class_name => 'Master',
model_file => 't/dump_load_model.pm',
instance_name => 'test1');
ok($inst,"created dummy instance") ;
my $root = $inst -> config_root ;
ok($root,"Config root created") ;
my $step = '
std_id:ab X=Bv -
std_id:bc X=Av -
tree_macro=mXY
another_string="toto tata"
hash_a:toto=toto_value
hash_a:titi=titi_value
ordered_hash:z=1
ordered_hash:y=2
ordered_hash:x=3
lista=a,b,c,d
olist:0 X=Av -
olist:1 X=Bv -
my_check_list=toto my_reference="titi"
warp warp2 aa2="foo bar"
';
$step =~ s/\n/ /g;
ok( $root->load( step => $step, experience => 'advanced' ),
"set up data in tree with '$step'");
# load some values with undef
$root->fetch_element('hash_a')->fetch_with_id('undef_val') ;
$root->fetch_element('lista' )->fetch_with_id(6)->store('g');
$root->load_data({ listb => 'bb'}) ;
ok (1, "loaded single array element as listb => 'bb'") ;
my $data = $root->dump_as_data(full_dump => 0) ;
my $expect = {
'olist' => [{'X' => 'Av'}, {'X' => 'Bv'}],
'my_check_list' => ['toto'],
'tree_macro' => 'mXY',
'ordered_hash' => ['z', '1', 'y', '2', 'x', '3'],
'another_string' => 'toto tata',
'listb' => ['bb'],
'my_reference' => 'titi',
'hash_a' => {
'toto' => 'toto_value',
'titi' => 'titi_value',
},
'std_id' => {
'ab' => {'X' => 'Bv'},
'bc' => {'X' => 'Av'}
},
'lista' => [qw/a b c d g/],
'warp' => {
'warp2' => {
'aa2' => 'foo bar'
}
},
};
#use Data::Dumper; print Dumper $data ;
is_deeply($data, $expect, "check data dump") ;
# add default information provided by model to check full dump
$expect->{string_with_def} = 'yada yada';
$expect->{int_v} = 10 ;
$expect->{olist}[0]{DX} = 'Dv' ;
$expect->{olist}[1]{DX} = 'Dv' ;
$expect->{std_id}{ab}{DX} = 'Dv' ;
$expect->{std_id}{bc}{DX} = 'Dv' ;
$expect->{a_uniline} = 'yada yada';
my $full_data = $root->dump_as_data() ;
is_deeply($full_data, $expect, "check full data dump") ;
my $inst2 = $model->instance (root_class_name => 'Master',
instance_name => 'test2');
ok($inst,"created 2nd dummy instance") ;
my $root2 = $inst2 -> config_root ;
ok($root2,"Config root2 created") ;
$root2->load_data($data) ;
ok(1,"loaded perl data structure in 2nd instance") ;
my $dump1 = $root ->dump_tree ;
my $dump2 = $root2->dump_tree ;
is($dump2, $dump1,
"check that dump of 2nd tree is identical to dump of the first tree") ;
# try partial dumps
my @tries = ( [ 'olist' => $expect->{olist} ],
[ 'olist:0' => $expect->{olist}[0] ],
[ 'olist:0 DX' => $expect->{olist}[0]{DX} ],
[ 'string_with_def' => $expect->{string_with_def} ],
[ 'ordered_hash' => $expect->{ordered_hash} ],
[ 'hash_a' => $expect->{hash_a} ],
[ 'std_id:ab' => $expect->{std_id}{ab} ],
[ 'my_check_list' => $expect->{my_check_list} ],
);
foreach my $test ( @tries ) {
my ($path, $expect) = @$test ;
my $obj = $root->grab($path) ;
my $dump = $obj->dump_as_data();
is_deeply($dump, $expect, "check data dump for '$path'") ;
}
# try dump of ordered hash as hash
my $ohah_dump = $root->grab('ordered_hash')
-> dump_as_data(ordered_hash_as_list => 0);
is_deeply($ohah_dump, { __order => [qw/z y x/],'z', '1', 'y', '2', 'x', '3'},
"check dump of ordered hash as hash") ;
# test ordered hash load with hash ref instead of array ref
my $inst3 = $model->instance (root_class_name => 'Master',
instance_name => 'test3');
ok($inst,"created 3rd dummy instance") ;
my $root3= $inst3->config_root ;
$data->{ordered_hash} = { @{$expect->{ordered_hash}}} ;
$root3->load_data($data);
@tries = ( [ 'olist' => $expect->{olist} ],
[ 'olist:0' => $expect->{olist}[0] ],
[ 'olist:0 DX' => $expect->{olist}[0]{DX} ],
[ 'string_with_def' => $expect->{string_with_def} ],
[ 'ordered_hash' => [qw/x 3 y 2 z 1/] ],
[ 'hash_a' => $expect->{hash_a} ],
[ 'std_id:ab' => $expect->{std_id}{ab} ],
[ 'my_check_list' => $expect->{my_check_list} ],
);
foreach my $test ( @tries ) {
my ($path, $expect) = @$test ;
my $obj = $root3->grab($path) ;
my $dump = $obj->dump_as_data();
is_deeply($dump, $expect, "check data dump for '$path'") ;
}
# test dump of annotations as pod
my %notes =
map { ( $_ => $_ ? "$_ annotation\nwith long text" : "root annotation") ;}
( '','olist' , 'olist:0' , 'olist:0 DX' , 'hash_a' , 'std_id:ab' , 'my_check_list' );
foreach (keys %notes) {
$root->grab($_)->annotation($notes{$_}) ;
}
print $root->dump_tree if $trace ;
my $pod_notes = $root->dump_annotations_as_pod ;
print $pod_notes if $trace ;
foreach (keys %notes) {
my $v = $notes{$_} ;
like ($pod_notes, qr/$v/, "found note for $_ in pod notes");
}
$root2->load_pod_annotation($pod_notes) ;
my $pod_notes2 = $root2->dump_annotations_as_pod ;
is($pod_notes2,$pod_notes,"check 2nd pod notes" );
memory_cycle_ok($model);
|