Sha256: 4468b86e903ef9f6fffee709e2f7d7eb725899bc666133aa59a11c681769c5f8

Contents?: true

Size: 1.63 KB

Versions: 6

Compression:

Stored size: 1.63 KB

Contents

require "libxml"
require 'test/unit'

class TC_XML_HTMLParser < Test::Unit::TestCase
  def setup()
    @xp = XML::HTMLParser.new()
    assert_not_nil(@xp)
    str = '<html><head><meta name=keywords content=nasty></head><body>Hello<br>World</html>'
    @xp.string = str
    assert_equal(str, @xp.string)
  end

  def teardown()
    @xp = nil
  end

  def test_libxml_html_parser_parse()
    doc = @xp.parse

    assert_instance_of XML::Document, doc

    root = doc.root
    assert_instance_of XML::Node, root
    assert_equal 'html', root.name

    head = root.child
    assert_instance_of XML::Node, head
    assert_equal 'head', head.name

    meta = head.child
    assert_instance_of XML::Node, meta
    assert_equal 'meta', meta.name
    assert_equal 'keywords', meta[:name]
    assert_equal 'nasty', meta[:content]

    body = head.next
    assert_instance_of XML::Node, body
    assert_equal 'body', body.name

    hello = body.child
    # It appears that some versions of libxml2 add a layer of <p>
    # cant figure our why or how, so this skips it if there
    hello = hello.child if hello.name == "p"

    assert_instance_of XML::Node, hello
    assert_equal 'Hello', hello.content

    br = hello.next
    assert_instance_of XML::Node, br
    assert_equal 'br', br.name

    world = br.next
    assert_instance_of XML::Node, world
    assert_equal 'World', world.content
  end

  def test_libxml_html_parser_context()
    doc = @xp.parse
    assert_instance_of(XML::Document, doc)
    assert_instance_of(XML::Parser::Context, @xp.context)
  assert @xp.context.html?
  end
end # TC_XML_HTMLParser

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
libxml-ruby-0.7.0 test/tc_xml_html_parser.rb
libxml-ruby-0.7.0-x86-mswin32-60 test/tc_xml_html_parser.rb
libxml-ruby-0.8.0 test/tc_xml_html_parser.rb
libxml-ruby-0.8.0-x86-mswin32-60 test/tc_xml_html_parser.rb
libxml-ruby-0.8.1 test/tc_xml_html_parser.rb
libxml-ruby-0.8.1-x86-mswin32-60 test/tc_xml_html_parser.rb