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
|
use Test;
BEGIN { plan tests => 8 }
use XML::LibXSLT;
use XML::LibXML;
ok(1);
my $parser = XML::LibXML->new();
my $xslt = XML::LibXSLT->new();
my $source = $parser->parse_string(<<'EOF');
<?xml version="1.0" encoding="UTF-8" ?>
<top>
<next myid="next">NEXT</next>
<bottom myid="last">LAST</bottom>
</top>
EOF
ok($source);
my $style_doc = $parser->parse_string(<<'EOF');
<?xml version="1.0"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
>
<xsl:output method="xml" indent="yes"/>
<xsl:param name="incoming"/>
<xsl:template match="*">
<xsl:value-of select="$incoming"/>
<xsl:text>
</xsl:text>
<xsl:copy>
<xsl:apply-templates select="*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
EOF
ok($style_doc);
my $stylesheet = $xslt->parse_stylesheet($style_doc);
ok($stylesheet);
my $results = $stylesheet->transform($source,
'incoming' => "'INCOMINGTEXT'",
# 'incoming' => "'INCOMINGTEXT2'",
'outgoing' => "'OUTGOINGTEXT'",
);
ok($results);
ok($stylesheet->output_string($results));
my @params = XML::LibXSLT::xpath_to_string('empty' => undef);
$results = $stylesheet->transform($source, @params);
ok($results);
ok($stylesheet->output_string($results));
|