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
|
# encoding: UTF-8
require './test_helper'
require 'test/unit'
class TestParserContext < Test::Unit::TestCase
def test_string
# UTF8
xml = <<-EOS
<bands>
<metal>m\303\266tley_cr\303\274e</metal>
</bands>
EOS
context = XML::Parser::Context.string(xml)
assert_instance_of(XML::Parser::Context, context)
assert_equal(XML::Encoding::NONE, context.encoding)
assert_nil(context.base_uri)
end
def test_encoding
# ISO_8859_1:
xml = <<-EOS
<bands>
<metal>m\366tley_cr\374e</metal>
</bands>
EOS
context = XML::Parser::Context.string(xml)
assert_equal(XML::Encoding::NONE, context.encoding)
context.encoding = XML::Encoding::ISO_8859_1
assert_equal(XML::Encoding::ISO_8859_1, context.encoding)
end
def test_invalid_encoding
# UTF8
xml = <<-EOS
<bands>
<metal>m\303\266tley_cr\303\274e</metal>
</bands>
EOS
context = XML::Parser::Context.string(xml)
error = assert_raise(ArgumentError) do
context.encoding = -999
end
assert_equal("Unknown encoding: -999", error.to_s)
end
def test_base_uri
# UTF8
xml = <<-EOS
<bands>
<metal>m\303\266tley_cr\303\274e</metal>
</bands>
EOS
context = XML::Parser::Context.string(xml)
assert_nil(context.base_uri)
context.base_uri = 'http://libxml.rubyforge.org'
assert_equal('http://libxml.rubyforge.org', context.base_uri)
end
def test_string_empty
error = assert_raise(TypeError) do
XML::Parser::Context.string(nil)
end
assert_equal("wrong argument type nil (expected String)", error.to_s)
error = assert_raise(ArgumentError) do
XML::Parser::Context.string('')
end
assert_equal("Must specify a string with one or more characters", error.to_s)
end
def test_well_formed
parser = XML::Parser.string("<abc/>")
parser.parse
assert(parser.context.well_formed?)
end
def test_not_well_formed
parser = XML::Parser.string("<abc>")
assert_raise(XML::Error) do
parser.parse
end
assert(!parser.context.well_formed?)
end
def test_version_info
file = File.expand_path(File.join(File.dirname(__FILE__), 'model/bands.utf-8.xml'))
parser = XML::Parser.file(file)
assert_nil(parser.context.version)
parser.parse
assert_equal("1.0", parser.context.version)
end
def test_depth
context = XML::Parser::Context.new
assert_instance_of(Fixnum, context.depth)
end
def test_disable_sax
context = XML::Parser::Context.new
assert(!context.disable_sax?)
end
def test_docbook
context = XML::Parser::Context.new
assert(!context.docbook?)
end
def test_html
context = XML::Parser::Context.new
assert(!context.html?)
end
def test_keep_blanks
context = XML::Parser::Context.new
if context.keep_blanks?
assert_instance_of(TrueClass, context.keep_blanks?)
else
assert_instance_of(FalseClass, context.keep_blanks?)
end
end
if ENV['NOTWORKING']
def test_num_chars
assert_equal(17, context.num_chars)
end
end
def test_replace_entities
context = XML::Parser::Context.new
assert(!context.replace_entities?)
# context.options = 1
# assert(context.replace_entities?)
context.options = 0
assert(!context.replace_entities?)
context.replace_entities = true
assert(context.replace_entities?)
end
def test_space_depth
context = XML::Parser::Context.new
assert_equal(1, context.space_depth)
end
def test_subset_external
context = XML::Parser::Context.new
assert(!context.subset_external?)
end
def test_data_directory_get
context = XML::Parser::Context.new
assert_nil(context.data_directory)
end
def test_parse_error
xp = XML::Parser.string('<foo><bar/></foz>')
assert_raise(XML::Error) do
xp.parse
end
# Now check context
context = xp.context
assert_equal(nil, context.data_directory)
assert_equal(0, context.depth)
assert_equal(true, context.disable_sax?)
assert_equal(false, context.docbook?)
assert_equal(XML::Encoding::NONE, context.encoding)
assert_equal(76, context.errno)
assert_equal(false, context.html?)
assert_equal(5, context.io_max_num_streams)
assert_equal(1, context.io_num_streams)
assert_equal(true, context.keep_blanks?)
assert_equal(1, context.io_num_streams)
assert_equal(nil, context.name_node)
assert_equal(0, context.name_depth)
assert_equal(10, context.name_depth_max)
assert_equal(17, context.num_chars)
assert_equal(false, context.replace_entities?)
assert_equal(1, context.space_depth)
assert_equal(10, context.space_depth_max)
assert_equal(false, context.subset_external?)
assert_equal(nil, context.subset_external_system_id)
assert_equal(nil, context.subset_external_uri)
assert_equal(false, context.subset_internal?)
assert_equal(nil, context.subset_internal_name)
assert_equal(false, context.stats?)
assert_equal(true, context.standalone?)
assert_equal(false, context.valid)
assert_equal(false, context.validate?)
assert_equal('1.0', context.version)
assert_equal(false, context.well_formed?)
end
end
|