Sha256: 09686b3dc323826650a55b6b31b16b00e08e842a995c8eeed7936a53457c4927

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

# encoding: UTF-8

require File.expand_path('../test_helper', __FILE__)

class CDataCommentTest < Minitest::Test
  def setup
    xp = XML::Parser.string('<root></root>')
    @doc = xp.parse
    assert_instance_of(XML::Document, @doc)
    @root = @doc.root
  end

  def test_node_type
    cnode = XML::Node.new_cdata('test cdata')
    assert_equal(XML::Node::CDATA_SECTION_NODE, cnode.node_type)
  end

  def test_add_cdata
    @root << XML::Node.new_cdata('mycdata')
    assert_equal '<root><![CDATA[mycdata]]></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end

  def test_add_cdata_2
    @root << XML::Node.new_cdata('mycdata')
    assert_equal 'cdata',
    @root.child.node_type_name
  end

  def test_add_cdata_3
    @root << el = XML::Node.new_cdata('mycdata')
    el << "_this_is_added"
    assert_equal '<root><![CDATA[mycdata_this_is_added]]></root>',
      @root.to_s.gsub(/\n\s*/,'')
  end
  
  def test_attributes
    cnode = XML::Node.new_cdata('test cdata')
    assert_equal(0, cnode.attributes.length)
  end
  
  def test_set_cdata_attribute
    cnode = XML::Node.new_cdata('test cdata')
    
    # Can't create attributes on non-element nodes
    assert_raises(ArgumentError) do
      cnode['attr'] = '123'
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libxml-ruby-3.1.0-x64-mingw32 test/test_node_cdata.rb
libxml-ruby-3.1.0 test/test_node_cdata.rb