Sha256: 9ca0e24f1f86616b08db238d016260dea050dce5310b9716995ee085b10c8c90

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 KB

Contents

# $Id: tc_xml_html_parser.rb 111 2006-11-20 01:39:14Z roscopeco $
require "libxml_test"
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
    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_parser_context()
    doc = @xp.parse
    assert_instance_of(XML::Document, doc)
    assert_instance_of(XML::Parser::Context, @xp.parser_context)
	assert @xp.parser_context.html?
  end
end # TC_XML_HTMLParser

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libxml-ruby-0.5.0 tests/tc_xml_html_parser.rb
libxml-ruby-0.5.0.1 tests/tc_xml_html_parser.rb