forked from xml4r/libxml-ruby
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtc_relaxng.rb
54 lines (44 loc) · 1.42 KB
/
tc_relaxng.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# encoding: UTF-8
require './test_helper'
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 << 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