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
|
# **********************************************************************
#
# Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
#
# **********************************************************************
def allTests(helper, communicator)
print "test same Slice type name in different scopes... "
STDOUT.flush
i1 = Test::IPrx::checkedCast(communicator.stringToProxy("i1:#{helper.getTestEndpoint()}"))
s1 = Test::S.new(0)
s2, s3 = i1.opS(s1)
test(s2 == s1)
test(s3 == s1)
sseq1 = [s1]
sseq2, sseq3 = i1.opSSeq(sseq1)
test(sseq2[0] == s1)
test(sseq3[0] == s1)
smap1 = {}
smap1["a"] = s1
smap2, smap3 = i1.opSMap(smap1)
test(smap2["a"] == s1)
test(smap3["a"] == s1)
c1 = Test::C.new(s1)
c2, c3 = i1.opC(c1)
test(c2.s == s1)
test(c3.s == s1)
cseq1 = [c1]
cseq2, cseq3 = i1.opCSeq(cseq1)
test(cseq2[0].s == s1)
test(cseq3[0].s == s1)
cmap1 = {}
cmap1["a"] = c1
cmap2, cmap3 = i1.opCMap(cmap1)
test(cmap2["a"].s == s1)
test(cmap3["a"].s == s1)
i2 = Test::Inner::Inner2::IPrx::checkedCast(communicator.stringToProxy("i2:#{helper.getTestEndpoint()}"))
s1 = Test::Inner::Inner2::S.new(0)
s2, s3 = i2.opS(s1)
test(s2 == s1)
test(s3 == s1)
sseq1 = [s1]
sseq2, sseq3 = i2.opSSeq(sseq1)
test(sseq2[0] == s1)
test(sseq3[0] == s1)
smap1 = {}
smap1["a"] = s1
smap2, smap3 = i2.opSMap(smap1)
test(smap2["a"] == s1)
test(smap3["a"] == s1)
c1 = Test::Inner::Inner2::C.new(s1)
c2, c3 = i2.opC(c1)
test(c2.s == s1)
test(c3.s == s1)
cseq1 = [c1]
cseq2, cseq3 = i2.opCSeq(cseq1)
test(cseq2[0].s == s1)
test(cseq3[0].s == s1)
cmap1 = {}
cmap1["a"] = c1
cmap2, cmap3 = i2.opCMap(cmap1)
test(cmap2["a"].s == s1)
test(cmap3["a"].s == s1)
i3 = Test::Inner::IPrx::checkedCast(communicator.stringToProxy("i3:#{helper.getTestEndpoint()}"))
s1 = Test::Inner::Inner2::S.new(0)
s2, s3 = i3.opS(s1)
test(s2 == s1)
test(s3 == s1)
sseq1 = [s1]
sseq2, sseq3 = i3.opSSeq(sseq1)
test(sseq2[0] == s1)
test(sseq3[0] == s1)
smap1 = {}
smap1["a"] = s1
smap2, smap3 = i3.opSMap(smap1)
test(smap2["a"] == s1)
test(smap3["a"] == s1)
c1 = Test::Inner::Inner2::C.new(s1)
c2, c3 = i3.opC(c1)
test(c2.s == s1)
test(c3.s == s1)
cseq1 = [c1]
cseq2, cseq3 = i3.opCSeq(cseq1)
test(cseq2[0].s == s1)
test(cseq3[0].s == s1)
cmap1 = {}
cmap1["a"] = c1
cmap2, cmap3 = i3.opCMap(cmap1)
test(cmap2["a"].s == s1)
test(cmap3["a"].s == s1)
i4 = Inner::Test::Inner2::IPrx::checkedCast(communicator.stringToProxy("i4:#{helper.getTestEndpoint()}"))
s1 = Test::S.new(0)
s2, s3 = i4.opS(s1)
test(s2 == s1)
test(s3 == s1)
sseq1 = [s1]
sseq2, sseq3 = i4.opSSeq(sseq1)
test(sseq2[0] == s1)
test(sseq3[0] == s1)
smap1 = {}
smap1["a"] = s1
smap2, smap3 = i4.opSMap(smap1)
test(smap2["a"] == s1)
test(smap3["a"] == s1)
c1 = Test::C.new(s1)
c2, c3 = i4.opC(c1)
test(c2.s == s1)
test(c3.s == s1)
cseq1 = [c1]
cseq2, cseq3 = i4.opCSeq(cseq1)
test(cseq2[0].s == s1)
test(cseq3[0].s == s1)
cmap1 = {}
cmap1["a"] = c1
cmap2, cmap3 = i4.opCMap(cmap1)
test(cmap2["a"].s == s1)
test(cmap3["a"].s == s1)
i1.shutdown()
puts "ok"
end
|