1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/soap/marshal/test_digraph.rb
nahi db9445103c * lib/soap/* (29 files): SOAP4R added.
* lib/wsdl/* (42 files): WSDL4R added.

* lib/xsd/* (12 files): XSD4R added.

* test/soap/* (16 files): added.

* test/wsdl/* (2 files): added.

* test/xsd/* (3 files): added.

* sample/soap/* (27 files): added.

* sample/wsdl/* (13 files): added.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4591 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-09-24 15:18:44 +00:00

45 lines
1.1 KiB
Ruby

require 'test/unit'
require 'soap/marshal'
class Node; include SOAP::Marshallable
attr_reader :first, :second, :str
def initialize(*init_next)
@first = init_next[0]
@second = init_next[1]
end
end
class TestDigraph < Test::Unit::TestCase
def setup
@n9 = Node.new
@n81 = Node.new(@n9)
@n82 = Node.new(@n9)
@n7 = Node.new(@n81, @n82)
@n61 = Node.new(@n7)
@n62 = Node.new(@n7)
@n5 = Node.new(@n61, @n62)
@n41 = Node.new(@n5)
@n42 = Node.new(@n5)
@n3 = Node.new(@n41, @n42)
@n21 = Node.new(@n3)
@n22 = Node.new(@n3)
@n1 = Node.new(@n21, @n22)
end
def test_marshal
f = File.open("digraph_marshalled_string.soap", "wb")
SOAP::Marshal.dump(@n1, f)
f.close
str = File.open("digraph_marshalled_string.soap").read
newnode = SOAP::Marshal.unmarshal(str)
assert_equal(newnode.first.first.__id__, newnode.second.first.__id__)
assert_equal(newnode.first.first.first.first.__id__, newnode.second.first.second.first.__id__)
end
def teardown
if File.exist?("digraph_marshalled_string.soap")
File.unlink("digraph_marshalled_string.soap")
end
end
end