summaryrefslogtreecommitdiff
path: root/test/rexml
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-17 12:36:07 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-17 12:36:07 +0000
commit4f0439617edfff2fa4dbc8b0c07a65bcf37cda53 (patch)
treed6f6610144a7dcc4aee4b91672cee41044ec7386 /test/rexml
parente1a08e4130ba1ac0652fafc5185c15683b794f8a (diff)
merge revision(s) 34419: [Backport #6307]
* lib/rexml/parsers/baseparser.rb, test/rexml/test_namespace.rb: fix the default xml namespace URI validation. [ruby-dev:45169] [Bug #5956] Reported by Miho Hiramatsu. Thanks!!! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@35365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rexml')
-rw-r--r--test/rexml/test_namespace.rb38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/rexml/test_namespace.rb b/test/rexml/test_namespace.rb
new file mode 100644
index 0000000000..6ab16b6342
--- /dev/null
+++ b/test/rexml/test_namespace.rb
@@ -0,0 +1,38 @@
+require "rexml_test_utils"
+
+require "rexml/document"
+
+class TestNamespace < Test::Unit::TestCase
+ include REXMLTestUtils
+ include REXML
+
+ def setup
+ @xsa_source = <<-EOL
+ <?xml version="1.0"?>
+ <?xsl stylesheet="blah.xsl"?>
+ <!-- The first line tests the XMLDecl, the second tests PI.
+ The next line tests DocType. This line tests comments. -->
+ <!DOCTYPE xsa PUBLIC
+ "-//LM Garshol//DTD XML Software Autoupdate 1.0//EN//XML"
+ "http://www.garshol.priv.no/download/xsa/xsa.dtd">
+
+ <xsa>
+ <vendor id="blah">
+ <name>Lars Marius Garshol</name>
+ <email>larsga@garshol.priv.no</email>
+ <url>http://www.stud.ifi.uio.no/~lmariusg/</url>
+ </vendor>
+ </xsa>
+ EOL
+ end
+
+ def test_xml_namespace
+ xml = <<-XML
+<?xml version="1.0" encoding="UTF-8"?>
+<root xmlns:xml="http://www.w3.org/XML/1998/namespace" />
+XML
+ document = Document.new(xml)
+ assert_equal("http://www.w3.org/XML/1998/namespace",
+ document.root.namespace("xml"))
+ end
+end