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 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
# frozen_string_literal: true
#
# Some environment variables that are used to configure the test suite:
# - NOKOGIRI_TEST_FAIL_FAST: if set to anything, emit test failure messages immediately upon failure
# - NOKOGIRI_TEST_GC_LEVEL: (roughly in order of stress)
# - "normal" - normal GC functionality
# - "minor" - force a minor GC cycle after each test
# - "major" (default for Rubies without compaction) - force a major GC cycle after each test
# - "compact" (default for Rubies with compaction) - force a major GC after each test and GC compaction after every 20 tests
# - "verify" - force a major GC after each test and verify references-after-compaction after every 20 tests
# - "stress" - run tests with GC.stress set to true
# - NOKOGIRI_GC: read more in test/test_memory_leak.rb
#
# make sure we do one final major before the process exits (for valgrind)
at_exit { GC.start(full_mark: true) } unless ::RUBY_PLATFORM == "java"
require "simplecov"
SimpleCov.start do
add_filter "/test/"
end
$VERBOSE = true
require "minitest/autorun"
require "minitest/reporters"
NOKOGIRI_MINITEST_REPORTERS_OPTIONS = { color: true, slow_count: 10, detailed_skip: false }
NOKOGIRI_MINITEST_REPORTERS_OPTIONS[:fast_fail] = true if ENV["NOKOGIRI_TEST_FAIL_FAST"]
puts "Minitest::Reporters options: #{NOKOGIRI_MINITEST_REPORTERS_OPTIONS}"
Minitest::Reporters.use!(Minitest::Reporters::DefaultReporter.new(NOKOGIRI_MINITEST_REPORTERS_OPTIONS))
require "fileutils"
require "tempfile"
require "pp"
require "yaml"
require "nokogiri"
if ENV["TEST_NOKOGIRI_WITH_LIBXML_RUBY"]
#
# if you'd like to test with the libxml-ruby gem loaded, it's
# recommended that you set
#
# BUNDLE_GEMFILE=Gemfile-libxml-ruby
#
# which will a) bundle that gem, and b) set the appropriate env var to
# trigger this block
#
require "libxml"
warn "#{__FILE__}:#{__LINE__}: loaded libxml-ruby '#{LibXML::XML::VERSION}'"
end
warn "#{__FILE__}:#{__LINE__}: version info:"
warn Nokogiri::VERSION_INFO.to_yaml
module Nokogiri
class TestCase < MiniTest::Spec
ASSETS_DIR = File.expand_path(File.join(File.dirname(__FILE__), "files"))
ADDRESS_SCHEMA_FILE = File.join(ASSETS_DIR, "address_book.rlx")
ADDRESS_XML_FILE = File.join(ASSETS_DIR, "address_book.xml")
ENCODING_HTML_FILE = File.join(ASSETS_DIR, "encoding.html")
ENCODING_XHTML_FILE = File.join(ASSETS_DIR, "encoding.xhtml")
EXML_FILE = File.join(ASSETS_DIR, "exslt.xml")
EXSLT_FILE = File.join(ASSETS_DIR, "exslt.xslt")
HTML_FILE = File.join(ASSETS_DIR, "tlm.html")
METACHARSET_FILE = File.join(ASSETS_DIR, "metacharset.html")
NICH_FILE = File.join(ASSETS_DIR, "2ch.html")
NOENCODING_FILE = File.join(ASSETS_DIR, "noencoding.html")
PO_SCHEMA_FILE = File.join(ASSETS_DIR, "po.xsd")
PO_XML_FILE = File.join(ASSETS_DIR, "po.xml")
SHIFT_JIS_HTML = File.join(ASSETS_DIR, "shift_jis.html")
SHIFT_JIS_NO_CHARSET = File.join(ASSETS_DIR, "shift_jis_no_charset.html")
SHIFT_JIS_XML = File.join(ASSETS_DIR, "shift_jis.xml")
SNUGGLES_FILE = File.join(ASSETS_DIR, "snuggles.xml")
XML_FILE = File.join(ASSETS_DIR, "staff.xml")
XML_XINCLUDE_FILE = File.join(ASSETS_DIR, "xinclude.xml")
XML_ATOM_FILE = File.join(ASSETS_DIR, "atom.xml")
XSLT_FILE = File.join(ASSETS_DIR, "staff.xslt")
XPATH_FILE = File.join(ASSETS_DIR, "slow-xpath.xml")
unless Nokogiri.jruby?
GC_LEVEL = if ["stress", "major", "minor", "normal"].include?(ENV["NOKOGIRI_TEST_GC_LEVEL"])
ENV["NOKOGIRI_TEST_GC_LEVEL"]
elsif (ENV["NOKOGIRI_TEST_GC_LEVEL"] == "compact") && defined?(GC.compact)
"compact"
elsif (ENV["NOKOGIRI_TEST_GC_LEVEL"] == "verify") && defined?(GC.verify_compaction_references)
"verify"
else
defined?(GC.compact) ? "compact" : "major"
end
warn "#{__FILE__}:#{__LINE__}: NOKOGIRI_TEST_GC_LEVEL: #{GC_LEVEL}"
end
COMPACT_EVERY = 20
@@test_count = 0 # rubocop:disable Style/ClassVars
def setup
@@test_count += 1 # rubocop:disable Style/ClassVars
if Nokogiri.uses_libxml?
@fake_error_handler_called = false
Nokogiri::Test.__foreign_error_handler do
@fake_error_handler_called = true
end
end
unless Nokogiri.jruby?
if GC_LEVEL == "stress"
GC.stress = true
end
end
end
def teardown
unless Nokogiri.jruby?
case GC_LEVEL
when "minor"
GC.start(full_mark: false)
when "major"
GC.start(full_mark: true)
when "compact"
if @@test_count % COMPACT_EVERY == 0
begin
GC.compact
rescue NotImplementedError
end
else
GC.start(full_mark: true)
end
when "verify"
if @@test_count % COMPACT_EVERY == 0
# https://alanwu.space/post/check-compaction/
begin
GC.verify_compaction_references(double_heap: true, toward: :empty)
rescue NotImplementedError
end
end
GC.start(full_mark: true)
when "stress"
GC.stress = false
end
end
if Nokogiri.uses_libxml?
refute(@fake_error_handler_called, "the fake error handler should never get called")
end
end
def stress_memory_while(&block)
# force the test to explicitly declare a skip
raise "memory stress tests shouldn't be run on JRuby" if Nokogiri.jruby?
old_stress = GC.stress
begin
GC.stress = true
yield
ensure
GC.stress = old_stress
end
end
def skip_unless_libxml2(msg = "this test should only run with libxml2")
skip(msg) unless Nokogiri.uses_libxml?
end
def skip_unless_libxml2_patch(patch_name)
patch_dir = File.join(__dir__, "..", "patches", "libxml2")
if File.directory?(patch_dir) && !File.exist?(File.join(patch_dir, patch_name))
raise("checking for nonexistent patch file #{patch_name.inspect}")
end
unless Nokogiri.libxml2_patches.include?(patch_name)
skip("this test needs libxml2 patched with #{patch_name}")
end
end
def skip_unless_jruby(msg = "this test should only run with jruby")
skip(msg) unless Nokogiri.jruby?
end
def refute_valgrind_errors
# force the test to explicitly declare a skip
raise "memory stress tests shouldn't be run on JRuby" if Nokogiri.jruby?
yield.tap do
GC.start(full_mark: true) if GC_LEVEL == "minor"
end
end
def assert_indent(amount, doc, message = nil)
nodes = []
doc.traverse do |node|
nodes << node if node.text? && node.blank?
end
refute_empty(nodes)
nodes.each do |node|
len = node.content.gsub(/[\r\n]/, "").length
assert_equal(0, len % amount, message)
end
end
def util_decorate(document, decorator_module)
document.decorators(XML::Node) << decorator_module
document.decorators(XML::NodeSet) << decorator_module
document.decorate!
end
def assert_not_send(send_ary, m = nil)
recv, msg, *args = send_ary
m = message(m) do
"Expected #{mu_pp(recv)}.#{msg}(*#{mu_pp(args)}) to return false"
end
refute(recv.__send__(msg, *args), m)
end unless method_defined?(:assert_not_send)
def pending(msg)
begin
yield
rescue MiniTest::Assertion
skip("pending #{msg}")
end
flunk("pending test unexpectedly passed: #{msg}")
end
def pending_if(msg, pend_eh, &block)
return yield unless pend_eh
pending(msg, &block)
end
def i_am_ruby_matching(gem_version_requirement_string)
Gem::Requirement.new(gem_version_requirement_string).satisfied_by?(Gem::Version.new(RUBY_VERSION))
end
def i_am_in_a_systemd_container
File.exist?("/proc/self/cgroup") && File.read("/proc/self/cgroup") =~ %r(/docker/|/garden/)
end
def i_am_running_in_valgrind
# https://stackoverflow.com/questions/365458/how-can-i-detect-if-a-program-is-running-from-within-valgrind/62364698#62364698
ENV["LD_PRELOAD"] =~ /valgrind|vgpreload/
end
def i_am_running_with_asan
# https://stackoverflow.com/questions/35012059/check-whether-sanitizer-like-addresssanitizer-is-active
%x"ldd #{Gem.ruby}".include?("libasan.so")
rescue
false
end
end
module SAX
class TestCase < Nokogiri::TestCase
class Doc < XML::SAX::Document
attr_reader :start_elements, :start_document_called
attr_reader :end_elements, :end_document_called
attr_reader :data, :comments, :cdata_blocks, :start_elements_namespace
attr_reader :errors, :warnings, :end_elements_namespace
attr_reader :xmldecls
attr_reader :processing_instructions
def initialize
@errors = []
super
end
def xmldecl(version, encoding, standalone)
@xmldecls = [version, encoding, standalone].compact
super
end
def start_document
@start_document_called = true
super
end
def end_document
@end_document_called = true
super
end
def error(error)
(@errors ||= []) << error
super
end
def warning(warning)
(@warning ||= []) << warning
super
end
def start_element(*args)
(@start_elements ||= []) << args
super
end
def start_element_namespace(*args)
(@start_elements_namespace ||= []) << args
super
end
def end_element(*args)
(@end_elements ||= []) << args
super
end
def end_element_namespace(*args)
(@end_elements_namespace ||= []) << args
super
end
def characters(string)
@data ||= []
@data += [string]
super
end
def comment(string)
@comments ||= []
@comments += [string]
super
end
def cdata_block(string)
@cdata_blocks ||= []
@cdata_blocks += [string]
super
end
def processing_instruction(name, content)
@processing_instructions ||= []
@processing_instructions << [name, content]
end
end
# This document will help us to test the strict order of items.
class DocWithOrderedItems < XML::SAX::Document
attr_reader :items
def initialize
super
# [
# [ :method_1, argument_1, ... ],
# [ :method_2, argument_2, ... ],
# ...
# ]
@items = Items.new
end
[
:xmldecl,
:start_document, :end_document,
:start_element, :end_element,
:start_element_namespace, :end_element_namespace,
:characters, :comment, :cdata_block,
:processing_instruction,
:error, :warning,
].each do |name|
define_method name do |*arguments|
@items << [name, *arguments]
super(*arguments)
end
end
class Items < Array
def get_root_content(root_name)
items = clone
is_inside_root = false
items.select! do |item|
method_name = item[0]
element_name = item[1]
case method_name
when :start_element, :start_element_namespace
if element_name == root_name
is_inside_root = true
next false
end
when :end_element, :end_element_namespace
is_inside_root = false if (element_name == root_name) && is_inside_root
end
is_inside_root
end
items
end
def select_methods(names)
items = clone
items.select! do |item|
name = item[0]
names.include?(name)
end
items
end
def strip_text!(method_names)
each do |item|
method_name = item[0]
text = item[1]
text.strip! if method_names.include?(method_name)
end
nil
end
end
end
end
end
end
|