Sha256: 0d84743fb17a7ffff02fdfc8574e14eb86c3f2f493afccf7b4057a7b13694c86

Contents?: true

Size: 1.27 KB

Versions: 20

Compression:

Stored size: 1.27 KB

Contents

require 'xml'
require 'test/unit'

class CDataCommentTest < Test::Unit::TestCase
  def setup
    xp = XML::Parser.new()
    str = '<root></root>'
    assert_equal(str, xp.string = str)
    @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_raise(ArgumentError) do
      cnode['attr'] = '123'
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
libxml-ruby-0.8.2 test/tc_node_cdata.rb
libxml-ruby-0.8.2-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.1-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.2 test/tc_node_cdata.rb
libxml-ruby-0.8.3 test/tc_node_cdata.rb
libxml-ruby-0.8.3-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.0 test/tc_node_cdata.rb
libxml-ruby-0.9.0-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.1 test/tc_node_cdata.rb
libxml-ruby-0.9.2-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.3-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.5 test/tc_node_cdata.rb
libxml-ruby-0.9.6-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.6 test/tc_node_cdata.rb
libxml-ruby-0.9.5-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.3 test/tc_node_cdata.rb
libxml-ruby-0.9.4 test/tc_node_cdata.rb
libxml-ruby-0.9.4-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.7-x86-mswin32-60 test/tc_node_cdata.rb
libxml-ruby-0.9.7 test/tc_node_cdata.rb