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
|
#============================================================= -*-perl-*-
#
# t/xpath.t
#
# Test the XML::XPath plugin.
#
# Written by Andy Wardley <abw@kfs.org>
#
# Copyright (C) 1996-2000 Andy Wardley. All Rights Reserved.
# Copyright (C) 1998-2000 Canon Research Centre Europe Ltd.
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
# $Id: xpath.t,v 2.10 2003/04/11 12:28:28 darren Exp $
#
#========================================================================
use strict;
use lib qw( ./lib ../lib );
use Template;
use Template::Test;
use Cwd qw( abs_path );
$^W = 1;
# I hate having to do this
my $shut_up_warnings = $XML::XPath::VERSION;
eval "use XML::XPath";
if ($@ || $XML::XPath::VERSION < 1.0) {
skip_all('XML::XPath v1.0 or later not installed');
}
# account for script being run in distribution root or 't' directory
my $file = abs_path( -d 't' ? 't/test/xml' : 'test/xml' );
$file .= '/testfile.xml';
test_expect(\*DATA, undef, { 'xmlfile' => $file });
__END__
-- test --
[% TRY;
USE xpath = XML.XPath('no_such_file');
xpath.find('/foo/bar');
CATCH;
"ok";
END
%]
-- expect --
ok
-- test --
[% USE xpath = XML.XPath(xmlfile) -%]
[% FOREACH page = xpath.findnodes('/website/section/page') -%]
page: [% page.getAttribute('title') %]
[% END %]
-- expect --
page: The Foo Page
page: The Bar Page
page: The Baz Page
-- test --
[% USE xpath = XML.XPath(file => xmlfile) -%]
[% FOREACH page = xpath.findnodes('/website/section/page') -%]
page: [% page.getAttribute('title') %]
[% END %]
-- expect --
page: The Foo Page
page: The Bar Page
page: The Baz Page
-- test --
[% USE xpath = XML.XPath(filename => xmlfile) -%]
[% FOREACH page = xpath.findnodes('/website/section/page') -%]
page: [% page.getAttribute('title') %]
[% END %]
-- expect --
page: The Foo Page
page: The Bar Page
page: The Baz Page
-- test --
[% xmltext = BLOCK %]
<html>
<body>
<section id="foo">
This is the foo section, here is some <b>bold</b> text.
</section>
<section id="foo">
This is the bar section, here is some <i>italic</i> text
</section>
</body>
</html>
[% END -%]
[% USE xpath = XML.XPath(xmltext) -%]
...
[% FOREACH section = xpath.findnodes('/html/body/section') -%]
[% section.string_value %]
[% END %]
-- expect --
...
This is the foo section, here is some bold text.
This is the bar section, here is some italic text
-- test --
[% xmltext = BLOCK -%]
<foo>
<bar baz="10">
<list>
<item>one</item>
<item>two</item>
</list>
</bar>
</foo>
[% END -%]
[% VIEW xview notfound='xmlstring' -%]
[% BLOCK foo -%]
FOO {
[%- item.content(view) -%]
}
[% END -%]
[% BLOCK bar -%]
BAR(baz="[% item.getAttribute('baz') %]") {
[%- item.content(view) -%]
}
[% END -%]
[% BLOCK list -%]
LIST:
[%- item.content(view) -%]
[% END -%]
[% BLOCK item -%]
* [% item.content(view) -%]
[% END -%]
[% BLOCK xmlstring; item.toString; END %]
[% BLOCK text; item; END %]
[% END -%]
[%- USE xpath = XML.XPath(xmltext);
foo = xpath.findnodes('/foo');
xview.print(foo);
-%]
-- expect --
FOO {
BAR(baz="10") {
LIST:
* one
* two
}
}
-- test --
[% xmltext = BLOCK -%]
<foo>
<bar baz="10" fud="11">
<list>
<item>one</item>
<item>two</item>
</list>
</bar>
</foo>
[% END -%]
[% VIEW xview notfound='xmlstring' -%]
[% BLOCK item -%]
* [% item.content(view) -%]
[% END -%]
[% BLOCK xmlstring; item.starttag; item.content(view); item.endtag; END %]
[% BLOCK text; item; END %]
[% END -%]
[%- USE xpath = XML.XPath(xmltext);
foo = xpath.findnodes('/foo');
xview.print(foo);
-%]
-- expect --
<foo>
<bar baz="10" fud="11">
<list>
* one
* two
</list>
</bar>
</foo>
-- test --
[% xmltext = BLOCK -%]
<greeting type="hello" what="world" />
[% END -%]
[% USE xp = XML.XPath(xml => xmltext);
xp.find("/greeting[@type='hello']/@what") %]
-- expect --
world
-- test --
[% xmltext = BLOCK -%]
<hello>world</hello>
[% END -%]
[% USE xp = XML.XPath(text => xmltext);
xp.find("/hello"); %]
-- expect --
world
|