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 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
require "helper"
class TestXsltTransforms < Nokogiri::TestCase
def setup
@doc = Nokogiri::XML(File.open(XML_FILE))
end
def test_class_methods
style = Nokogiri::XSLT(File.read(XSLT_FILE))
assert result = style.apply_to(@doc, ['title', '"Grandma"'])
assert_match %r{<h1>Grandma</h1>}, result
end
def test_transform
assert style = Nokogiri::XSLT.parse(File.read(XSLT_FILE))
assert result = style.apply_to(@doc, ['title', '"Booyah"'])
assert_match %r{<h1>Booyah</h1>}, result
assert_match %r{<th.*Employee ID</th>}, result
assert_match %r{<th.*Name</th>}, result
assert_match %r{<th.*Position</th>}, result
assert_match %r{<th.*Salary</th>}, result
assert_match %r{<td>EMP0003</td>}, result
assert_match %r{<td>Margaret Martin</td>}, result
assert_match %r{<td>Computer Specialist</td>}, result
assert_match %r{<td>100,000</td>}, result
assert_no_match %r{Dallas|Texas}, result
assert_no_match %r{Female}, result
assert result = style.apply_to(@doc, ['title', '"Grandma"'])
assert_match %r{<h1>Grandma</h1>}, result
assert result = style.apply_to(@doc)
assert_match %r{<h1></h1>|<h1/>}, result
end
def test_xml_declaration
input_xml = <<-EOS
<?xml version="1.0" encoding="utf-8"?>
<report>
<title>My Report</title>
</report>
EOS
input_xsl = <<-EOS
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="utf-8" indent="yes"/>
<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="report/title"/></title>
</head>
<body>
<h1><xsl:value-of select="report/title"/></h1>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
EOS
require 'nokogiri'
xml = ::Nokogiri::XML(input_xml)
xsl = ::Nokogiri::XSLT(input_xsl)
assert_includes xsl.apply_to(xml), '<?xml version="1.0" encoding="utf-8"?>'
end
def test_transform_with_output_style
xslt = ""
if Nokogiri.jruby?
xslt = Nokogiri::XSLT(<<-eoxslt)
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" version="1.0"
encoding="iso-8859-1" indent="yes"/>
<xsl:param name="title"/>
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="staff/employee">
<tr>
<td><xsl:value-of select="employeeId"/></td>
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="position"/></td>
<td><xsl:value-of select="salary"/></td>
</tr>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
eoxslt
else
xslt = Nokogiri::XSLT(<<-eoxslt)
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" version="1.0"
encoding="iso-8859-1" indent="yes"/>
<xsl:param name="title"/>
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="staff/employee">
<tr>
<td><xsl:value-of select="employeeId"/></td>
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="position"/></td>
<td><xsl:value-of select="salary"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
eoxslt
end
result = xslt.apply_to(@doc, ['title', 'foo'])
assert_no_match(/<td>/, result)
assert_match(/This is an adjacent/, result)
end
def test_transform_arg_error
assert style = Nokogiri::XSLT(File.read(XSLT_FILE))
assert_raises(TypeError) do
style.transform(@doc, :foo)
end
end
def test_transform_with_hash
assert style = Nokogiri::XSLT(File.read(XSLT_FILE))
result = style.transform(@doc, {'title' => '"Booyah"'})
assert result.html?
assert_equal "Booyah", result.at_css("h1").content
end
def test_transform2
assert style = Nokogiri::XSLT(File.open(XSLT_FILE))
assert result_doc = style.transform(@doc)
assert result_doc.html?
assert_equal "", result_doc.at_css("h1").content
assert style = Nokogiri::XSLT(File.read(XSLT_FILE))
assert result_doc = style.transform(@doc, ['title', '"Booyah"'])
assert result_doc.html?
assert_equal "Booyah", result_doc.at_css("h1").content
assert result_string = style.apply_to(@doc, ['title', '"Booyah"'])
assert_equal result_string, style.serialize(result_doc)
end
def test_transform_with_quote_params
assert style = Nokogiri::XSLT(File.open(XSLT_FILE))
assert result_doc = style.transform(@doc, Nokogiri::XSLT.quote_params(['title', 'Booyah']))
assert result_doc.html?
assert_equal "Booyah", result_doc.at_css("h1").content
assert style = Nokogiri::XSLT.parse(File.read(XSLT_FILE))
assert result_doc = style.transform(@doc, Nokogiri::XSLT.quote_params({'title' => 'Booyah'}))
assert result_doc.html?
assert_equal "Booyah", result_doc.at_css("h1").content
end
def test_quote_params
h = {
:sym => %{xxx},
'str' => %{"xxx"},
:sym2 => %{'xxx'},
'str2' => %{x'x'x},
:sym3 => %{x"x"x},
}
hh=h.dup
result_hash = Nokogiri::XSLT.quote_params(h)
assert_equal hh, h # non-destructive
a=h.to_a.flatten
result_array = Nokogiri::XSLT.quote_params(a)
assert_equal h.to_a.flatten, a #non-destructive
assert_equal result_array, result_hash
end
if Nokogiri.uses_libxml?
# By now, cannot get it working on JRuby, see:
# http://yokolet.blogspot.com/2010/10/pure-java-nokogiri-xslt-extension.html
def test_exslt
assert doc = Nokogiri::XML.parse(File.read(EXML_FILE))
assert doc.xml?
assert style = Nokogiri::XSLT.parse(File.read(EXSLT_FILE))
params = {
:p1 => 'xxx',
:p2 => "x'x'x",
:p3 => 'x"x"x',
:p4 => '"xxx"'
}
result_doc = Nokogiri::XML.parse(style.apply_to(doc,
Nokogiri::XSLT.quote_params(params)))
assert_equal 'func-result', result_doc.at('/root/function').content
assert_equal 3, result_doc.at('/root/max').content.to_i
assert_match(
/\d{4}-\d\d-\d\d([-|+]\d\d:\d\d)?/,
result_doc.at('/root/date').content
)
result_doc.xpath('/root/params/*').each do |p|
assert_equal p.content, params[p.name.intern]
end
check_params result_doc, params
result_doc = Nokogiri::XML.parse(style.apply_to(doc,
Nokogiri::XSLT.quote_params(params.to_a.flatten)))
check_params result_doc, params
end
def test_xslt_paramaters
xslt_str = <<-EOX
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="/">
<xsl:value-of select="$foo" />
</xsl:template>
</xsl:stylesheet>
EOX
xslt = Nokogiri::XSLT(xslt_str)
doc = Nokogiri::XML("<root />")
assert_match %r{bar}, xslt.transform(doc, Nokogiri::XSLT.quote_params('foo' => 'bar')).to_s
end
def test_xslt_transform_error
xslt_str = <<-EOX
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="/">
<xsl:value-of select="$foo" />
</xsl:template>
</xsl:stylesheet>
EOX
xslt = Nokogiri::XSLT(xslt_str)
doc = Nokogiri::XML("<root />")
assert_raises(RuntimeError) { xslt.transform(doc) }
end
end
def test_xslt_parse_error
xslt_str = <<-EOX
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- Not well-formed: -->
<xsl:template match="/"/>
<values>
<xsl:for-each select="//*">
<value>
<xsl:value-of select="@id"/>
</value>
</xsl:for-each>
</values>
</xsl:template>
</xsl:stylesheet>}
EOX
assert_raises(RuntimeError) { Nokogiri::XSLT.parse(xslt_str) }
end
def test_passing_a_non_document_to_transform
xsl = Nokogiri::XSLT('<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"></xsl:stylesheet>')
assert_raises(ArgumentError) { xsl.transform("<div></div>") }
assert_raises(ArgumentError) { xsl.transform(Nokogiri::HTML("").css("body")) }
end
def check_params result_doc, params
result_doc.xpath('/root/params/*').each do |p|
assert_equal p.content, params[p.name.intern]
end
end
def test_non_html_xslt_transform
xml = Nokogiri.XML(<<-EOXML)
<a>
<b>
<c>123</c>
</b>
</a>
EOXML
xsl = Nokogiri.XSLT(<<-EOXSL)
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output encoding="UTF-8" indent="yes" method="xml" />
<xsl:template match="/">
<a><xsl:value-of select="/a" /></a>
</xsl:template>
</xsl:stylesheet>
EOXSL
result = xsl.transform xml
assert !result.html?
end
end
|