Sha256: 852ce3a1f6d5e1af51677f0eaf2366ee5f3ab0fc525be1f72f217516903a8c6b

Contents?: true

Size: 1.35 KB

Versions: 16

Compression:

Stored size: 1.35 KB

Contents

require "xml"
require 'test/unit'

class TestRelaxNG < Test::Unit::TestCase
  def setup
    file = File.join(File.dirname(__FILE__), 'model/shiporder.xml')
    @doc = XML::Document.file(file)
  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/))
    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 & 3 rubygems

Version Path
libxml-ruby-r19mingw-1.1.4 test/tc_relaxng.rb
libxml-ruby-1.1.4 test/tc_relaxng.rb
libxml-ruby-1.1.4-x86-mswin32-60 test/tc_relaxng.rb
coupa-libxml-ruby-1.1.4 test/tc_relaxng.rb
libxml-ruby-0.9.9 test/tc_relaxng.rb
libxml-ruby-0.9.9-x86-mswin32-60 test/tc_relaxng.rb
libxml-ruby-1.1.0 test/tc_relaxng.rb
libxml-ruby-1.0.0-x86-mswin32-60 test/tc_relaxng.rb
libxml-ruby-1.1.0-x86-mswin32-60 test/tc_relaxng.rb
libxml-ruby-1.0.0 test/tc_relaxng.rb
libxml-ruby-1.1.1 test/tc_relaxng.rb
libxml-ruby-1.1.2 test/tc_relaxng.rb
libxml-ruby-1.1.1-x86-mswin32-60 test/tc_relaxng.rb
libxml-ruby-1.1.2-x86-mswin32-60 test/tc_relaxng.rb
libxml-ruby-1.1.3 test/tc_relaxng.rb
libxml-ruby-1.1.3-x86-mswin32-60 test/tc_relaxng.rb