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
|
#
# Copyright (c) ZeroC, Inc. All rights reserved.
#
import Ice, Test, TestI, sys
def MyValueFactory(type):
if type == '::Test::B':
return TestI.BI()
elif type == '::Test::C':
return TestI.CI()
elif type == '::Test::D':
return TestI.DI()
elif type == '::Test::E':
return TestI.EI()
elif type == '::Test::F':
return TestI.FI()
elif type == '::Test::I':
return TestI.II()
elif type == '::Test::J':
return TestI.JI()
elif type == '::Test::H':
return TestI.HI()
assert(False) # Should never be reached
class MyObjectFactory(Ice.ObjectFactory):
def create(self, type):
return None
def destroy():
pass
def test(b):
if not b:
raise RuntimeError('test assertion failed')
def allTests(helper, communicator):
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::B')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::C')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::D')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::E')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::F')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::I')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::J')
communicator.getValueFactoryManager().add(MyValueFactory, '::Test::H')
communicator.addObjectFactory(MyObjectFactory(), "TestOF")
sys.stdout.write("testing stringToProxy... ")
sys.stdout.flush()
ref = "initial:{0}".format(helper.getTestEndpoint())
base = communicator.stringToProxy(ref)
test(base)
print("ok")
sys.stdout.write("testing checked cast... ")
sys.stdout.flush()
initial = Test.InitialPrx.checkedCast(base)
test(initial)
test(initial == base)
print("ok")
sys.stdout.write("getting B1... ")
sys.stdout.flush()
b1 = initial.getB1()
test(b1)
print("ok")
sys.stdout.write("getting B2... ")
sys.stdout.flush()
b2 = initial.getB2()
test(b2)
print("ok")
sys.stdout.write("getting C... ")
sys.stdout.flush()
c = initial.getC()
test(c)
print("ok")
sys.stdout.write("getting D... ")
sys.stdout.flush()
d = initial.getD()
test(d)
print("ok")
sys.stdout.write("testing protected members... ")
sys.stdout.flush()
e = initial.getE()
test(e.checkValues())
test(e._i == 1)
test(e._s == "hello")
f = initial.getF()
test(f.checkValues())
test(f.e2.checkValues())
test(f._e1.checkValues())
print("ok")
sys.stdout.write("getting I, J, H... ")
sys.stdout.flush()
i = initial.getI()
test(i)
j = initial.getJ()
test(isinstance(j, TestI.JI))
h = initial.getH()
test(isinstance(h, Test.H))
print("ok")
sys.stdout.write("getting K... ")
sys.stdout.flush()
k = initial.getK()
test(isinstance(k.value, Test.L))
test(k.value.data == "l")
print("ok")
sys.stdout.write("testing Value as parameter... ")
sys.stdout.flush()
v1, v2 = initial.opValue(Test.L("l"))
test(v1.data == "l")
test(v2.data == "l")
v1, v2 = initial.opValueSeq([Test.L("l")])
test(v1[0].data == "l")
test(v2[0].data == "l")
v1, v2 = initial.opValueMap({"l":Test.L("l")})
test(v1["l"].data == "l")
test(v2["l"].data == "l")
print("ok")
sys.stdout.write("getting D1... ")
sys.stdout.flush()
d1 = initial.getD1(Test.D1(Test.A1("a1"), Test.A1("a2"), Test.A1("a3"), Test.A1("a4")))
test(d1.a1.name == "a1")
test(d1.a2.name == "a2")
test(d1.a3.name == "a3")
test(d1.a4.name == "a4")
print("ok")
sys.stdout.write("throw EDerived... ")
sys.stdout.flush()
try:
initial.throwEDerived()
test(False)
except Test.EDerived as e:
test(e.a1.name == "a1")
test(e.a2.name == "a2")
test(e.a3.name == "a3")
test(e.a4.name == "a4")
print("ok")
sys.stdout.write("setting G... ")
sys.stdout.flush()
try:
initial.setG(Test.G(Test.S("hello"), "g"))
except Ice.OperationNotExistException:
pass
print("ok")
sys.stdout.write("setting I... ")
sys.stdout.flush()
initial.setI(TestI.II())
initial.setI(TestI.JI())
initial.setI(TestI.HI())
print("ok")
sys.stdout.write("checking consistency... ")
sys.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 == None)
test(isinstance(b1.theA, 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 == None)
print("ok")
sys.stdout.write("getting B1, B2, C, and D all at once... ")
sys.stdout.flush()
b1, b2, c, d = initial.getAll()
test(b1)
test(b2)
test(c)
test(d)
print("ok")
sys.stdout.write("checking consistency... ")
sys.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 == None)
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 == None)
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)
print("ok")
sys.stdout.write("testing sequences... ")
try:
sys.stdout.flush()
initial.opBaseSeq([])
retS, outS = initial.opBaseSeq([Test.Base()])
test(len(retS) == 1 and len(outS) == 1)
except Ice.OperationNotExistException:
pass
print("ok")
sys.stdout.write("testing recursive type... ")
sys.stdout.flush()
top = Test.Recursive()
p = top;
depth = 0;
try:
while depth <= 700:
p.v = Test.Recursive()
p = p.v;
if (depth < 10 and (depth % 10) == 0) or \
(depth < 1000 and (depth % 100) == 0) or \
(depth < 10000 and (depth % 1000) == 0) or \
(depth % 10000) == 0:
initial.setRecursive(top)
depth += 1
test(not initial.supportsClassGraphDepthMax())
except Ice.UnknownLocalException:
# Expected marshal exception from the server (max class graph depth reached)
pass
except Ice.UnknownException:
# Expected stack overflow from the server (Java only)
pass
initial.setRecursive(Test.Recursive())
print("ok")
sys.stdout.write("testing compact ID... ")
sys.stdout.flush()
try:
r = initial.getCompact()
test(r)
except Ice.OperationNotExistException:
pass
print("ok")
sys.stdout.write("testing marshaled results...")
sys.stdout.flush()
b1 = initial.getMB()
test(b1 != None and b1.theB == b1)
b1 = initial.getAMDMBAsync().result()
test(b1 != None and b1.theB == b1)
print("ok")
# Don't run this test with collocation, this should work with collocation
# but the test isn't written to support it (we'd need support for the
# streaming interface)
if initial.ice_getConnection():
sys.stdout.write("testing UnexpectedObjectException... ")
sys.stdout.flush()
ref = "uoet:{0}".format(helper.getTestEndpoint())
base = communicator.stringToProxy(ref)
test(base)
uoet = Test.UnexpectedObjectExceptionTestPrx.uncheckedCast(base)
test(uoet)
try:
uoet.op()
test(False)
except Ice.UnexpectedObjectException as ex:
test(ex.type == "::Test::AlsoEmpty")
test(ex.expectedType == "::Test::Empty")
except Ice.Exception as ex:
print(ex)
test(False)
except:
print(sys.exc_info())
test(False)
print("ok")
sys.stdout.write("testing getting ObjectFactory... ")
sys.stdout.flush()
test(communicator.findObjectFactory("TestOF") != None)
print("ok")
sys.stdout.write("testing getting ObjectFactory as ValueFactory... ")
sys.stdout.flush()
test(communicator.getValueFactoryManager().find("TestOF") != None)
print("ok")
sys.stdout.write("testing class containing complex dictionary... ")
sys.stdout.flush()
m = Test.M()
m.v = {}
k1 = Test.StructKey(1, "1")
m.v[k1] = Test.L("one")
k2 = Test.StructKey(2, "2")
m.v[k2] = Test.L("two")
m1, m2 = initial.opM(m)
test(len(m1.v) == 2)
test(len(m2.v) == 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")
print("ok")
sys.stdout.write("testing forward declarations... ")
sys.stdout.flush()
f11, f12 = initial.opF1(Test.F1("F11"))
test(f11.name == "F11")
test(f12.name == "F12")
ref = "F21:{0}".format(helper.getTestEndpoint())
f21, f22 = initial.opF2(Test.F2Prx.uncheckedCast(communicator.stringToProxy(ref)))
test(f21.ice_getIdentity().name == "F21")
f21.op()
test(f22.ice_getIdentity().name == "F22")
if initial.hasF3():
f31, f32 = initial.opF3(Test.F3(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")
print("ok")
sys.stdout.write("testing sending class cycle... ")
sys.stdout.flush()
rec = Test.Recursive()
rec.v = rec
acceptsCycles = initial.acceptsClassCycles()
try:
initial.setCycle(rec)
test(acceptsCycles)
except Ice.UnknownLocalException:
test(not acceptsCycles)
print("ok")
return initial
|