# encoding: UTF-8
require_relative './test_helper'
class TestNodeEdit < Minitest::Test
def setup
xp = LibXML::XML::Parser.string('onetwothree')
@doc = xp.parse
end
def teardown
@doc = nil
end
def first_node
@doc.root.child
end
def second_node
first_node.next
end
def third_node
second_node.next
end
def test_add_next_01
first_node.next = LibXML::XML::Node.new('num', 'one-and-a-half')
assert_equal('oneone-and-a-halftwothree',
@doc.root.to_s.gsub(/\n\s*/,''))
end
def test_add_next_02
second_node.next = LibXML::XML::Node.new('num', 'two-and-a-half')
assert_equal('onetwotwo-and-a-halfthree',
@doc.root.to_s.gsub(/\n\s*/,''))
end
def test_add_next_03
third_node.next = LibXML::XML::Node.new('num', 'four')
assert_equal 'onetwothreefour',
@doc.root.to_s.gsub(/\n\s*/,'')
end
def test_add_prev_01
first_node.prev = LibXML::XML::Node.new('num', 'half')
assert_equal 'halfonetwothree',
@doc.root.to_s.gsub(/\n\s*/,'')
end
def test_add_prev_02
second_node.prev = LibXML::XML::Node.new('num', 'one-and-a-half')
assert_equal 'oneone-and-a-halftwothree',
@doc.root.to_s.gsub(/\n\s*/,'')
end
def test_add_prev_03
third_node.prev = LibXML::XML::Node.new('num', 'two-and-a-half')
assert_equal 'onetwotwo-and-a-halfthree',
@doc.root.to_s.gsub(/\n\s*/,'')
end
def test_remove_node
first_node.remove!
assert_equal('twothree',
@doc.root.to_s.gsub(/\n\s*/,''))
end
def test_remove_node_gc
xp = LibXML::XML::Parser.string('onetwothree')
doc = xp.parse
doc.root.child.remove!
GC.start
refute_nil(doc)
end
def test_remove_node_iteration
nodes = Array.new
@doc.root.each_element do |node|
if node.name == 'num'
nodes << node
node.remove!
end
end
assert_equal(3, nodes.length)
end
def test_reuse_removed_node
# Remove the node
node = @doc.root.first.remove!
refute_nil(node)
# Add it to the end of the document
@doc.root.last.next = node
assert_equal('twothreeone',
@doc.root.to_s.gsub(/\n\s*/,''))
end
def test_append_existing_node
doc = LibXML::XML::Parser.string('abfirstsecondcd').parse
node1 = doc.find_first('//two')
doc.root << node1
assert_equal('abfirstcdsecond',
doc.root.to_s)
end
def test_wrong_doc
doc1 = LibXML::XML::Parser.string('').parse
doc2 = LibXML::XML::Parser.string('').parse
node = doc1.root.child
error = assert_raises(LibXML::XML::Error) do
doc2.root << node
end
GC.start
assert_equal(' Nodes belong to different documents. You must first import the node by calling LibXML::XML::Document.import.',
error.to_s)
end
# This test is to verify that an earlier reported bug has been fixed
def test_merge
documents = []
# Read in 500 documents
500.times do
documents << LibXML::XML::Parser.string(File.read(File.join(File.dirname(__FILE__), 'model', 'merge_bug_data.xml'))).parse
end
master_doc = documents.shift
documents.each do |child_doc|
master_body = master_doc.find("//body").first
child_body = child_doc.find("//body").first
child_element = child_body.detect do |node|
node.element?
end
master_body << child_element.copy(true)
end
end
def test_append_chain
node = LibXML::XML::Node.new('foo') << LibXML::XML::Node.new('bar') << "bars contents"
assert_equal('bars contents',
node.to_s)
end
def test_set_base
@doc.root.base_uri = 'http://www.rubynet.org/'
assert_equal("\n one\n two\n three\n",
@doc.root.to_s)
end
end