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
|
// **********************************************************************
//
// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
(function(module, require, exports)
{
var Ice = require("ice").Ice;
var Test = require("Test").Test;
var Promise = Ice.Promise;
var allTests = function(out, communicator, communicator2)
{
var ref, base1, base2, retry1, retry2;
var p = new Promise();
var test = function(b)
{
if(!b)
{
try
{
throw new Error("test failed");
}
catch(err)
{
p.fail(err);
throw err;
}
}
};
Promise.try(
function()
{
out.write("testing stringToProxy... ");
ref = "retry:default -p 12010";
base1 = communicator.stringToProxy(ref);
test(base1 !== null);
base2 = communicator.stringToProxy(ref);
test(base2 !== null);
out.writeLine("ok");
out.write("testing checked cast... ");
return Test.RetryPrx.checkedCast(base1);
}
).then(
function(obj)
{
retry1 = obj;
test(retry1 !== null);
test(retry1.equals(base1));
return Test.RetryPrx.checkedCast(base2);
}
).then(
function(obj)
{
retry2 = obj;
test(retry2 !== null);
test(retry2.equals(base2));
out.writeLine("ok");
out.write("calling regular operation with first proxy... ");
return retry1.op(false);
}
).then(
function()
{
out.writeLine("ok");
out.write("calling operation to kill connection with second proxy... ");
return retry2.op(true);
}
).then(
function()
{
test(false);
},
function(ex)
{
test((typeof(window) === undefined && ex instanceof Ice.ConnectionLostException) ||
(typeof(window) !== undefined && ex instanceof Ice.SocketException));
out.writeLine("ok");
out.write("calling regular operation with first proxy again... ");
return retry1.op(false);
}
).then(
function()
{
out.writeLine("ok");
out.write("testing idempotent operation... ");
return retry1.opIdempotent(4);
}
).then(
function(count)
{
test(count === 4);
out.writeLine("ok");
out.write("testing non-idempotent operation... ");
return retry1.opNotIdempotent();
}
).then(
function()
{
test(false);
},
function(ex)
{
out.writeLine("ok");
out.write("testing invocation timeout and retries... ");
retry2 = Test.RetryPrx.uncheckedCast(communicator2.stringToProxy(retry1.toString()));
return retry2.ice_invocationTimeout(500).opIdempotent(4);
}
).then(
function()
{
test(false);
},
function(ex)
{
test(ex instanceof Ice.InvocationTimeoutException);
return retry2.opIdempotent(-1);
}
).then(
function()
{
out.writeLine("ok");
return retry1.shutdown();
}
).then(
function()
{
p.succeed();
},
function(ex)
{
p.fail(ex);
}
);
return p;
};
var run = function(out, id)
{
//
// For this test, we want to disable retries.
//
id.properties.setProperty("Ice.RetryIntervals", "0 1 10 1");
//
// We don't want connection warnings because of the timeout
//
id.properties.setProperty("Ice.Warn.Connections", "0");
var c = Ice.initialize(id);
//
// Configure a second communicator for the invocation timeout
// + retry test, we need to configure a large retry interval
// to avoid time-sensitive failures.
//
var id2 = new Ice.InitializationData();
id2.properties = c.getProperties().clone();
id2.properties.setProperty("Ice.RetryIntervals", "0 1 10000");
var c2 = Ice.initialize(id2);
return Promise.try(
function()
{
return allTests(out, c, c2);
}
).finally(
function()
{
c2.destroy();
return c.destroy();
}
);
};
exports.__test__ = run;
exports.__runServer__ = true;
}
(typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? module : undefined,
typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? require : window.Ice.__require,
typeof(global) !== "undefined" && typeof(global.process) !== "undefined" ? exports : window));
|