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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
require './TestI.rb'
class II < ::Ice::InterfaceByValue
def initialize()
super("::Test::I")
end
end
class JI < ::Ice::InterfaceByValue
def initialize()
super("::Test::J")
end
end
#
# Ice for Ruby behaves differently than Ice for C++, because
# collocated invocations are still sent "over the wire". Therefore
# we always need to install the factories, even for the collocated
# case.
#
class MyValueFactory
def create(type)
if type == '::Test::B'
return BI.new
elsif type == '::Test::C'
return CI.new
#
# We do not specialize D, instead we just re-open it to define
# its methods.
#
#elsif type == '::Test::D'
# return DI.new
elsif type == '::Test::E'
return EI.new
elsif type == '::Test::F'
return FI.new
elsif type == '::Test::I'
return II.new
elsif type == '::Test::J'
return JI.new
end
fail "unknown type"
end
end
class MyObjectFactory
def create(type)
return nil
end
def destroy
# Nothing to do
end
end
def test(b)
if !b
raise RuntimeError, 'test assertion failed'
end
end
def allTests(helper, communicator)
factory = MyValueFactory.new
communicator.getValueFactoryManager().add(factory, '::Test::B')
communicator.getValueFactoryManager().add(factory, '::Test::C')
#communicator.getValueFactoryManager().add(factory, '::Test::D')
communicator.getValueFactoryManager().add(factory, '::Test::E')
communicator.getValueFactoryManager().add(factory, '::Test::F')
communicator.getValueFactoryManager().add(factory, '::Test::I')
communicator.getValueFactoryManager().add(factory, '::Test::J')
communicator.addObjectFactory(MyObjectFactory.new, 'TestOF')
print "testing stringToProxy... "
STDOUT.flush
ref = "initial:#{helper.getTestEndpoint()}"
base = communicator.stringToProxy(ref)
test(base)
puts "ok"
print "testing checked cast... "
STDOUT.flush
initial = Test::InitialPrx::checkedCast(base)
test(initial)
test(initial == base)
puts "ok"
print "getting B1... "
STDOUT.flush
b1 = initial.getB1()
test(b1)
puts "ok"
print "getting B2... "
STDOUT.flush
b2 = initial.getB2()
test(b2)
puts "ok"
print "getting C... "
STDOUT.flush
c = initial.getC()
test(c)
puts "ok"
print "getting D... "
STDOUT.flush
d = initial.getD()
test(d)
puts "ok"
print "checking consistency... "
STDOUT.flush
test(b1 != b2)
test(b1 != c)
test(b1 != d)
test(b2 != c)
test(b2 != d)
test(c != d)
test(b1.theB == b1)
test(b1.theC == nil)
test(b1.theA.is_a?(Test::B))
test(b1.theA.theA == b1.theA)
test(b1.theA.theB == b1)
test(b1.theA.theC)
test(b1.theA.theC.theB == b1.theA)
test(b1.preMarshalInvoked)
test(b1.postUnmarshalInvoked)
test(b1.theA.preMarshalInvoked)
test(b1.theA.postUnmarshalInvoked)
test(b1.theA.theC.preMarshalInvoked)
test(b1.theA.theC.postUnmarshalInvoked)
# More tests possible for b2 and d, but I think this is already sufficient.
test(b2.theA == b2)
test(d.theC == nil)
puts "ok"
print "getting B1, B2, C, and D all at once... "
STDOUT.flush
b1, b2, c, d = initial.getAll()
test(b1)
test(b2)
test(c)
test(d)
puts "ok"
print "checking consistency... "
STDOUT.flush
test(b1 != b2)
test(b1 != c)
test(b1 != d)
test(b2 != c)
test(b2 != d)
test(c != d)
test(b1.theA == b2)
test(b1.theB == b1)
test(b1.theC == nil)
test(b2.theA == b2)
test(b2.theB == b1)
test(b2.theC == c)
test(c.theB == b2)
test(d.theA == b1)
test(d.theB == b2)
test(d.theC == nil)
test(d.preMarshalInvoked)
test(d.postUnmarshalInvoked)
test(d.theA.preMarshalInvoked)
test(d.theA.postUnmarshalInvoked)
test(d.theB.preMarshalInvoked)
test(d.theB.postUnmarshalInvoked)
test(d.theB.theC.preMarshalInvoked)
test(d.theB.theC.postUnmarshalInvoked)
puts "ok"
print "testing protected members... "
STDOUT.flush
e = initial.getE()
test(e.checkValues())
begin
e.i # Test that i is not accessible
test(false)
rescue NoMethodError
# Expected
end
begin
e.s # Test that s is not accessible
test(false)
rescue NoMethodError
# Expected
end
f = initial.getF()
test(f.checkValues())
test(f.e2.checkValues())
begin
f.e1 # Test that e1 is not accessible
test(false)
rescue NoMethodError
# Expected
end
puts "ok"
print "getting I, J, H... "
STDOUT.flush
i = initial.getI()
test(i)
j = initial.getJ()
test(i)
h = initial.getH()
test(i)
puts "ok"
print "getting K... "
STDOUT.flush
k = initial.getK()
test(k.value.data == "l")
puts "ok"
print "testing Value as parameter... "
STDOUT.flush
v1 = Test::L.new("l")
v2, v3 = initial.opValue(v1)
test(v2.data == "l")
test(v3.data == "l")
v1 = [Test::L.new("l")]
v2, v3 = initial.opValueSeq(v1)
test(v2[0].data == "l")
test(v3[0].data == "l")
v1 = {}
v1["l"] = Test::L.new("l")
v2, v3 = initial.opValueMap(v1)
test(v2["l"].data == "l")
test(v3["l"].data == "l")
puts "ok"
print "getting D1... "
STDOUT.flush
d1 = initial.getD1(Test::D1.new(Test::A1.new("a1"), Test::A1.new("a2"), Test::A1.new("a3"), Test::A1.new("a4")))
test(d1.a1.name == "a1")
test(d1.a2.name == "a2")
test(d1.a3.name == "a3")
test(d1.a4.name == "a4")
puts "ok"
print "throw EDerived... "
STDOUT.flush
begin
initial.throwEDerived()
test(false)
rescue Test::EDerived => e
test(e.a1.name == "a1")
test(e.a2.name == "a2")
test(e.a3.name == "a3")
test(e.a4.name == "a4")
end
puts "ok"
print "setting G... "
STDOUT.flush
begin
initial.setG(Test::G.new(Test::S.new("hello"), "g"))
rescue Ice::OperationNotExistException
end
puts "ok"
print "setting I... "
STDOUT.flush
initial.setI(i)
initial.setI(j)
initial.setI(h)
puts "ok"
print "testing sequences... "
STDOUT.flush
initial.opBaseSeq([])
retS, outS = initial.opBaseSeq([Test::Base.new])
test(retS.length == 1 && outS.length == 1)
puts "ok"
print "testing recursive type... "
STDOUT.flush
top = Test::Recursive.new
p = top;
depth = 0;
begin
while depth <= 700
p.v = Test::Recursive.new
p = p.v;
if (depth < 10 && (depth % 10) == 0) || \
(depth < 1000 && (depth % 100) == 0) || \
(depth < 10000 && (depth % 1000) == 0) || \
(depth % 10000) == 0
initial.setRecursive(top)
end
depth += 1
end
test(!initial.supportsClassGraphDepthMax())
rescue Ice::UnknownLocalException
# Expected marshal exception from the server (max class graph depth reached)
rescue Ice::UnknownException
# Expected stack overflow from the server (Java only)
end
initial.setRecursive(Test::Recursive.new)
puts "ok"
print "testing compact ID... "
STDOUT.flush
begin
r = initial.getCompact()
test(r != nil)
rescue Ice::OperationNotExistException
end
puts "ok"
print "testing marshaled results..."
STDOUT.flush
b1 = initial.getMB()
test(b1 != nil && b1.theB == b1);
b1 = initial.getAMDMB()
test(b1 != nil && b1.theB == b1);
puts "ok"
print "testing UnexpectedObjectException... "
STDOUT.flush
ref = "uoet:#{helper.getTestEndpoint()}"
base = communicator.stringToProxy(ref)
test(base)
uoet = Test::UnexpectedObjectExceptionTestPrx::uncheckedCast(base)
test(uoet)
begin
uoet.op()
test(false)
rescue Ice::UnexpectedObjectException => ex
test(ex.type == "::Test::AlsoEmpty")
test(ex.expectedType == "::Test::Empty")
rescue Ice::UnmarshalOutOfBoundsException => ex
# This test raises Ice::UnmarshalOutOfBoundsException on Windows when the
# server is compiled with VC6.
test(RUBY_PLATFORM =~ /(win|w)32$/)
rescue Ice::Exception => ex
puts $!
print ex.backtrace.join("\n")
test(false)
rescue => ex
puts $!
print ex.backtrace.join("\n")
test(false)
end
puts "ok"
print "testing getting ObjectFactory... "
STDOUT.flush
test(communicator.findObjectFactory('TestOF') != nil)
puts "ok"
print "testing getting ObjectFactory as ValueFactory... "
STDOUT.flush
test(communicator.getValueFactoryManager().find('TestOF') != nil)
puts "ok"
print "testing class containing complex dictionary... "
STDOUT.flush
m = Test::M.new
m.v = {}
k1 = Test::StructKey.new(1, "1")
m.v[k1] = Test::L.new("one")
k2 = Test::StructKey.new(2, "2")
m.v[k2] = Test::L.new("two")
m1, m2 = initial.opM(m)
test(m1.v.length == 2)
test(m2.v.length == 2)
test(m1.v[k1].data == "one")
test(m2.v[k1].data == "one")
test(m1.v[k2].data == "two")
test(m2.v[k2].data == "two")
puts "ok"
print "testing forward declarations... "
STDOUT.flush
f11, f12 = initial.opF1(Test::F1.new("F11"))
test(f11.name == "F11")
test(f12.name == "F12")
f21, f22 = initial.opF2(Test::F2Prx::uncheckedCast(communicator.stringToProxy("F21:#{helper.getTestEndpoint()}")))
test(f21.ice_getIdentity().name == "F21")
f21.op()
test(f22.ice_getIdentity().name == "F22")
if initial.hasF3() then
f31, f32 = initial.opF3(Test::F3.new(f11, f21))
test(f31.f1.name == "F11")
test(f31.f2.ice_getIdentity().name == "F21")
test(f32.f1.name == "F12")
test(f32.f2.ice_getIdentity().name == "F22")
end
puts "ok"
print "testing sending class cycle... "
STDOUT.flush
rec = Test::Recursive.new
rec.v = rec
acceptsCycles = initial.acceptsClassCycles()
begin
initial.setCycle(rec)
test(acceptsCycles)
rescue Ice::UnknownLocalException => ex
test(!acceptsCycles)
end
puts "ok"
print "testing class with interface by value member... "
STDOUT.flush
i = initial.getI()
n = Test::N.new(i);
n = initial.opN(n)
puts "ok"
return initial
end
|