Sha256: 5a1ca2183f45af891d99fc46d75d3558c73691bab6b7851e41ec175b02bee60b

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

require "helper"

module Nokogiri
  module XML
    class TestCDATA < Nokogiri::TestCase
      def setup
        super
        @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
      end

      def test_cdata_node
        name = @xml.xpath('//employee[2]/name').first
        assert cdata = name.children[1]
        assert cdata.cdata?
        assert_equal '#cdata-section', cdata.name
      end

      def test_new
        node = CDATA.new(@xml, "foo")
        assert_equal "foo", node.content

        node = CDATA.new(@xml.root, "foo")
        assert_equal "foo", node.content
      end

      def test_new_with_nil
        node = CDATA.new(@xml, nil)
        assert_equal nil, node.content
      end

      def test_lots_of_new_cdata
        100.times {
          node = CDATA.new(@xml, "asdfasdf")
        }
      end

      def test_content=
        node = CDATA.new(@xml, 'foo')
        assert_equal('foo', node.content)

        node.content = '& <foo> &amp;'
        assert_equal('& <foo> &amp;', node.content)
        assert_equal('<![CDATA[& <foo> &amp;]]>', node.to_xml)

        node.content = 'foo ]]> bar'
        assert_equal('foo ]]> bar', node.content)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
glebm-nokogiri-1.4.2.1 test/xml/test_cdata.rb
nokogiri-1.5.0.beta.1 test/xml/test_cdata.rb
nokogiri-1.4.2.1-x86-mswin32 test/xml/test_cdata.rb
nokogiri-1.4.2.1-x86-mingw32 test/xml/test_cdata.rb
nokogiri-1.5.0.beta.1-java test/xml/test_cdata.rb
nokogiri-1.4.2-java test/xml/test_cdata.rb
nokogiri-1.4.2 test/xml/test_cdata.rb