2014-02-23 04:01:32 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
require_relative "../rexml_test_utils"
|
|
|
|
|
|
|
|
require "rexml/document"
|
|
|
|
|
2014-05-27 08:07:40 -04:00
|
|
|
module REXMLTests
|
2014-02-23 04:01:32 -05:00
|
|
|
class TestXPathNode < Test::Unit::TestCase
|
|
|
|
def matches(xml, xpath)
|
|
|
|
document = REXML::Document.new(xml)
|
|
|
|
REXML::XPath.each(document, xpath).collect(&:to_s)
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestQName < self
|
|
|
|
def test_ascii
|
|
|
|
xml = <<-XML
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<root>
|
|
|
|
<ascii>
|
|
|
|
<child>child</child>
|
|
|
|
</ascii>
|
|
|
|
</root>
|
|
|
|
XML
|
|
|
|
assert_equal(["<child>child</child>"],
|
|
|
|
matches(xml, "/root/ascii/child"))
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_non_ascii
|
|
|
|
xml = <<-XML
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<root>
|
|
|
|
<non-àscii>
|
|
|
|
<child>child</child>
|
|
|
|
</non-àscii>
|
|
|
|
</root>
|
|
|
|
XML
|
|
|
|
assert_equal(["<child>child</child>"],
|
|
|
|
matches(xml, "/root/non-àscii/child"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-05-27 06:21:10 -04:00
|
|
|
end
|