File: using-quick-wrapper.t

package info (click to toggle)
libxml-libxslt-perl 2.003000-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 704 kB
  • sloc: xml: 2,181; perl: 1,227; ansic: 402; makefile: 24
file content (293 lines) | stat: -rw-r--r-- 7,384 bytes parent folder | download | duplicates (3)
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293

use strict;
use warnings;
use autodie;

use Test::More tests => 29;

use XML::LibXML         ();
use XML::LibXSLT        ();
use XML::LibXSLT::Quick ();

sub _raw_slurp
{
    my $filename = shift;

    open my $in, '<:raw', $filename;

    local $/;
    my $contents = <$in>;

    close($in);

    return $contents;
}

sub _utf8_slurp
{
    my $filename = shift;

    open my $in, '<:encoding(utf8)', $filename;

    local $/;
    my $contents = <$in>;

    close($in);

    return $contents;
}

my $parser = XML::LibXML->new();

# TEST
ok( $parser, 'parser was initialized' );

my $fn        = 'example/1.xml';
my $xml1_dom  = $parser->parse_file( $fn, );
my $xml1_text = _utf8_slurp($fn);

# TEST
ok( $xml1_dom, '$xml1_dom' );

{
    my $stylesheet =
        XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
    my $results = $stylesheet->transform($xml1_dom);
    my $out1    = $stylesheet->output_as_chars($results);

    # TEST
    ok( $out1, 'output' );
}

my $expected_output;
my $param_expected_output;
{
    my $xslt_parser = XML::LibXSLT->new();
    my $stylesheet  = XML::LibXSLT::Quick->new(
        {
            xslt_parser => $xslt_parser,
            location    => 'example/1.xsl',
        }
    );
    my $results = $stylesheet->transform($xml1_dom);
    my $out1    = $stylesheet->output_as_chars($results);

    $expected_output = $out1;

    # TEST
    ok( $out1, 'output' );
}
{
    my $xslt_parser = XML::LibXSLT->new();
    my $stylesheet  = XML::LibXSLT::Quick->new(
        {
            xslt_parser => $xslt_parser,
            location    => 'example/1.xsl',
        }
    );
    my $results = $stylesheet->transform( $xml1_dom, 'yearfrom' => "'1999'", );
    my $out1    = $stylesheet->output_as_chars($results);

    $param_expected_output = $out1;

    # TEST
    ok( $out1, 'output' );
}

# TEST
isnt( $expected_output, $param_expected_output, "non-identical", );

{
    my $stylesheet =
        XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
    my $out2 = $stylesheet->transform_into_chars($xml1_dom);

    # TEST
    is( $out2, $expected_output, 'transform_into_chars' );
}

foreach my $rec (
    +{
        name   => 'DOM object',
        source => $xml1_dom,
    },
    +{
        name   => 'text markup',
        source => $xml1_text,
    },
    +{
        name   => 'from file',
        source => +{
            type => 'file',
            path => $fn,
        }
    },
    +{
        name   => 'params from str',
        source => +{
            type   => 'string',
            string => $xml1_text,
        }
    },
    )
{
    # TEST*2
    # TEST:FILTER(MULT(4))
    my $name   = $rec->{name};
    my $source = $rec->{source};
    {
        my $stylesheet =
            XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
        my $out_str = '';
        open my $fh, '>', \$out_str;
        $stylesheet->generic_transform( $fh, $source, );

        $fh->flush();

        # TEST
        is( $out_str, $expected_output,
            "generic_transform() : ${name} -> filehandle" );
    }

    {
        my $stylesheet =
            XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
        my $out_str = '';
        $stylesheet->generic_transform( ( \$out_str ), $source, );

        # TEST
        is( $out_str, $expected_output,
            "generic_transform() : ${name} -> string ref" );
    }

    {
        my $stylesheet =
            XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
        my $out_fn = 'foo.xml';
        {
            $stylesheet->generic_transform(
                +{
                    type => 'file',
                    path => $out_fn,

                },
                $source,
            );

            my $out_str = _utf8_slurp($out_fn);

            # TEST
            is( $out_str, $expected_output,
                "generic_transform() : ${name} -> file path name" );
            unlink($out_fn);
        }
        if ( ( $name eq 'from file' ) or ( $name eq 'params from str' ) )
        {
            $out_fn = 'pppp0.xml';
            $stylesheet->generic_transform(
                +{
                    type => 'file',
                    path => $out_fn,
                },
                +{
                    %$source,
                    params => +{
                        'yearfrom' => "'1999'",
                    },
                },
            );

            my $out_str = _utf8_slurp($out_fn);

            is( $out_str, $param_expected_output,
                "generic_transform() : ${name} -> file path name" );
            unlink($out_fn);
        }
    }

    {
        my $stylesheet =
            XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
        my $out_str = $stylesheet->generic_transform(
            +{
                type => 'return',
            },
            $source,
        );

        # TEST
        is( $out_str, $expected_output,
            "generic_transform() : ${name} -> return" );
    }

    {
        my $stylesheet =
            XML::LibXSLT::Quick->new( { location => 'example/1.xsl', } );
        my $out_dom = $stylesheet->generic_transform(
            +{
                type => 'dom',
            },
            $source,
        );
        my $out_str = $stylesheet->output_as_chars($out_dom);

        # TEST
        is( $out_str, $expected_output,
            "generic_transform() : ${name} -> return" );
    }

    # TEST:ENDFILTER()

}
__END__

=encoding utf8

=head1 COPYRIGHT & LICENSE

B<NOTE!!! :> this licence applies to this file alone. The blanket licence
for the distribution is "same as Perl 5".

(I am not a lawyer (= "IANAL") / etc. )

For more information, consult:

=over 4

=item * L<https://www.shlomifish.org/philosophy/computers/open-source/foss-licences-wars/rev2/#which-licence-same-as-perl>

=item * L<https://github.com/shlomif/perl-XML-LibXSLT/issues/5>

=item * L<https://en.wikiquote.org/w/index.php?title=Rick_Cook&oldid=3060266>

“Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.”

=back

Copyright 2022 by Shlomi Fish

This program is distributed under the MIT / Expat License:
L<http://www.opensource.org/licenses/mit-license.php>

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

=cut