File: 600_MKDoc_XML_Dumper_Freeze.t

package info (click to toggle)
libmkdoc-xml-perl 0.75-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 404 kB
  • sloc: perl: 2,629; xml: 17; makefile: 2
file content (215 lines) | stat: -rw-r--r-- 7,036 bytes parent folder | download | duplicates (5)
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#!/usr/bin/perl
use lib qw (../lib lib);
use Test::More 'no_plan';
use strict;
use warnings;
use MKDoc::XML::Dumper;

local $MKDoc::XML::Dumper::IndentLevel = 0;


# perl_to_xml_litteral
{
    my $res = MKDoc::XML::Dumper->perl_to_xml_litteral ('Foo');
    like ($res, qr /<litteral>Foo<\/litteral>/);
}

{
    my $res = MKDoc::XML::Dumper->perl_to_xml_litteral ('');
    like ($res, qr/<litteral><\/litteral>/);
}

{
    my $res = MKDoc::XML::Dumper->perl_to_xml_litteral ('0');
    like ($res, qr/<litteral>0<\/litteral>/);
}

{
    my $res = MKDoc::XML::Dumper->perl_to_xml_litteral (undef);
    like ($res, qr/<litteral undef="true" \/>/);
}

# perl_to_xml_backref
{
    my $ref    = [];
    my $ref_id = $ref + 0;
    
    local *MKDoc::XML::Dumper::ref_to_id  = sub { 12 };
    local $MKDoc::XML::Dumper::BackRef    = { $ref_id => $ref };
    my $res = MKDoc::XML::Dumper->perl_to_xml_backref ( $ref );
    like ($res, qr/<backref id="\d+" \/>/);
}

{
    my $ref    = [];
    my $ref_id = $ref + 0;
    
    local *MKDoc::XML::Dumper::ref_to_id  = sub { 12 };
    local $MKDoc::XML::Dumper::BackRef    = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_backref ( $ref );
    ok (not defined $res);
}

# perl_to_xml_scalar
{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $var = 'ABCDEF';
    my $ref = bless \$var, 'Foo';
    my $res = MKDoc::XML::Dumper->perl_to_xml_scalar ($ref);
    like ($res, qr/<scalar id="\d+" bless="Foo">/);
    like ($res, qr/<\/scalar>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $var = 'ABCDEF';
    my $ref = \$var;
    my $res = MKDoc::XML::Dumper->perl_to_xml_scalar ($ref);
    like ($res, qr/<scalar id="\d+">/);
    like ($res, qr/<\/scalar>/);
}

# Quickly test the Indent methods
{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    MKDoc::XML::Dumper->indent_more();
    is ($MKDoc::XML::Dumper::IndentLevel, 1);
    MKDoc::XML::Dumper->indent_less();
    is ($MKDoc::XML::Dumper::IndentLevel, 0);
}

# perl_to_xml_hash
{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( bless {}, 'Foo' );
    like ($res, qr /<hash id="\d+" bless="Foo">/);
    like ($res, qr /<\/hash>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( bless { foo => 'bar' }, 'Foo' );
    like ($res, qr /<hash id="\d+" bless="Foo">/);
    like ($res, qr /<\/hash>/);
    like ($res, qr /<item key="foo">\s+<litteral>bar<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( bless { foo => 'bar', 'baz' => 'buz' }, 'Foo' );
    like ($res, qr /<hash id="\d+" bless="Foo">/);
    like ($res, qr /<\/hash>/);
    like ($res, qr /<item key="foo">\s+<litteral>bar<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="baz">\s+<litteral>buz<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( {} );
    like ($res, qr /<hash id="\d+">/);
    like ($res, qr /<\/hash>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;    
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( { foo => 'bar' } );
    like ($res, qr /<hash id="\d+">/);
    like ($res, qr /<\/hash>/);
    like ($res, qr /<item key="foo">\s+<litteral>bar<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_hash ( { foo => 'bar', 'baz' => 'buz' } );
    like ($res, qr /<hash id="\d+">/);
    like ($res, qr /<\/hash>/);
    like ($res, qr /<item key="foo">\s+<litteral>bar<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="baz">\s+<litteral>buz<\/litteral>\s+<\/item>/);
}

# perl_to_xml_array
{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( bless [], 'Foo' );
    like ($res, qr /<array id="\d+" bless="Foo">/);
    like ($res, qr /<\/array>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( bless [ qw /foo bar/ ], 'Foo' );
    like ($res, qr /<array id="\d+" bless="Foo">/);
    like ($res, qr /<\/array>/);
    like ($res, qr /<item key="0">\s+<litteral>foo<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="1">\s+<litteral>bar<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( bless [ qw /foo bar baz buz/ ], 'Foo' );
    like ($res, qr /<array id="\d+" bless="Foo">/);
    like ($res, qr /<\/array>/);
    like ($res, qr /<item key="0">\s+<litteral>foo<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="1">\s+<litteral>bar<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="2">\s+<litteral>baz<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="3">\s+<litteral>buz<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( [] );
    like ($res, qr /<array id="\d+">/);
    like ($res, qr /<\/array>/);
}


{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( [ qw /foo bar/ ] );
    like ($res, qr /<array id="\d+">/);
    like ($res, qr /<\/array>/);
    like ($res, qr /<item key="0">\s+<litteral>foo<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="1">\s+<litteral>bar<\/litteral>\s+<\/item>/);
}

{
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $res = MKDoc::XML::Dumper->perl_to_xml_array ( [ qw /foo bar baz buz/ ] );
    like ($res, qr /<array id="\d+">/);
    like ($res, qr /<\/array>/);
    like ($res, qr /<item key="0">\s+<litteral>foo<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="1">\s+<litteral>bar<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="2">\s+<litteral>baz<\/litteral>\s+<\/item>/);
    like ($res, qr /<item key="3">\s+<litteral>buz<\/litteral>\s+<\/item>/);
}

{
    # let's try some wicked stuff
    local $MKDoc::XML::Dumper::IndentLevel = 0;
    local $MKDoc::XML::Dumper::BackRef     = {};
    my $var = undef;
    $var = \"hello";
    $var = \$var;
    my $res = MKDoc::XML::Dumper->perl_to_xml ( $var );
    like ($res, qr /<ref id="\d+">\s+<backref\s+id="\d+"\s+\/>/);
}

1;


__END__