Sha256: fd7b7dfeeda12764a98ddc93e2657e4cfdd5898a9da7ad1689095a53348c1fea

Contents?: true

Size: 1.36 KB

Versions: 16

Compression:

Stored size: 1.36 KB

Contents

require "xml"
require 'test/unit'

class TestRelaxNG < Test::Unit::TestCase
  def setup
    xp = XML::Parser.new
    @doc = XML::Document.file(File.join(File.dirname(__FILE__), 'model/shiporder.xml'))
  end
  
  def teardown
    @doc = nil
  end
  
  def relaxng
    document = XML::Document.file(File.join(File.dirname(__FILE__), 'model/shiporder.rng'))
    relaxng = XML::RelaxNG.document(document)
  end

  def test_from_doc
    assert_instance_of(XML::RelaxNG, relaxng)
  end
  
  def test_valid
    assert(@doc.validate_relaxng(relaxng))
  end
  
  def test_invalid
    new_node = XML::Node.new('invalid', 'this will mess up validation')
    @doc.root.child_add(new_node)
    
    error = assert_raise(XML::Error) do
      @doc.validate_relaxng(relaxng)
    end

    assert_not_nil(error)
    assert_kind_of(XML::Error, error)
    assert(error.message.match(/Error: Did not expect element invalid there at/))
    assert_equal(XML::Error::RELAXNGV, error.domain)
    assert_equal(XML::Error::LT_IN_ATTRIBUTE, error.code)
    assert_equal(XML::Error::ERROR, error.level)
    assert(error.file.match(/shiporder\.xml/))
    assert_nil(error.line)
    assert_equal('invalid', error.str1)
    assert_nil(error.str2)
    assert_nil(error.str3)
    assert_equal(0, error.int1)
    assert_equal(0, error.int2)
    assert_not_nil(error.node)
    assert_equal('invalid', error.node.name)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

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