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
|
require 'test/unit'
require 'stringio'
# Test for issue JIRA-2506
# Fails with an EOF error in JRuby 1.1.1, works in MRI 1.8.6
# Author: steen.lehmann@gmail.com
class TestUnmarshal < Test::Unit::TestCase
def testUnmarshal
dump = ''
dump << Marshal.dump("hey")
dump << Marshal.dump("there")
result = "none"
StringIO.open(dump) do |f|
result = Marshal.load(f)
assert_equal "hey", result, "first string unmarshalled"
result = Marshal.load(f)
end
assert_equal "there", result, "second string unmarshalled"
rescue EOFError
flunk "Unmarshalling failed with EOF error at " + result + " string."
end
end
|