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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
|
// **********************************************************************
//
// Copyright (c) 2003-2018 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.
//
// **********************************************************************
using System;
using System.Globalization;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Test;
class LoggerI : Ice.Logger
{
public LoggerI(string name)
{
_name = name;
}
public void start()
{
lock(this)
{
_started = true;
dump();
}
}
public void print(string msg)
{
lock(this)
{
_messages.Add(msg);
if(_started)
{
dump();
}
}
}
public void trace(string category, string message)
{
lock(this)
{
System.Text.StringBuilder s = new System.Text.StringBuilder(_name);
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_date, CultureInfo.CurrentCulture));
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_time, CultureInfo.CurrentCulture));
s.Append(' ');
s.Append("[");
s.Append(category);
s.Append("] ");
s.Append(message);
_messages.Add(s.ToString());
if(_started)
{
dump();
}
}
}
public void warning(string message)
{
lock(this)
{
System.Text.StringBuilder s = new System.Text.StringBuilder(_name);
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_date, CultureInfo.CurrentCulture));
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_time, CultureInfo.CurrentCulture));
s.Append(" warning : ");
s.Append(message);
_messages.Add(s.ToString());
if(_started)
{
dump();
}
}
}
public void error(string message)
{
lock(this)
{
System.Text.StringBuilder s = new System.Text.StringBuilder(_name);
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_date, CultureInfo.CurrentCulture));
s.Append(' ');
s.Append(System.DateTime.Now.ToString(_time, CultureInfo.CurrentCulture));
s.Append(" error : ");
s.Append(message);
_messages.Add(s.ToString());
if(_started)
{
dump();
}
}
}
public string getPrefix()
{
return "";
}
public Ice.Logger cloneWithPrefix(string prefix)
{
return this;
}
private void dump()
{
foreach(string line in _messages)
{
System.Console.Error.WriteLine(line);
}
_messages.Clear();
}
private string _name;
private bool _started;
private readonly static string _date = "d";
private readonly static string _time = "HH:mm:ss:fff";
private List<string> _messages = new List<string>();
}
abstract class TestCase
{
public TestCase(string name, RemoteCommunicatorPrx com)
{
_name = name;
_com = com;
_logger = new LoggerI(_name);
_clientACMTimeout = -1;
_clientACMClose = -1;
_clientACMHeartbeat = -1;
_serverACMTimeout = -1;
_serverACMClose = -1;
_serverACMHeartbeat = -1;
_heartbeat = 0;
_closed = false;
}
public void init()
{
_adapter = _com.createObjectAdapter(_serverACMTimeout, _serverACMClose, _serverACMHeartbeat);
Ice.InitializationData initData = new Ice.InitializationData();
initData.properties = _com.ice_getCommunicator().getProperties().ice_clone_();
initData.logger = _logger;
initData.properties.setProperty("Ice.ACM.Timeout", "2");
if(_clientACMTimeout >= 0)
{
initData.properties.setProperty("Ice.ACM.Client.Timeout", _clientACMTimeout.ToString());
}
if(_clientACMClose >= 0)
{
initData.properties.setProperty("Ice.ACM.Client.Close", _clientACMClose.ToString());
}
if(_clientACMHeartbeat >= 0)
{
initData.properties.setProperty("Ice.ACM.Client.Heartbeat", _clientACMHeartbeat.ToString());
}
//initData.properties.setProperty("Ice.Trace.Protocol", "2");
//initData.properties.setProperty("Ice.Trace.Network", "2");
_communicator = Ice.Util.initialize(initData);
_thread = new Thread(this.run);
}
public void start()
{
_thread.Start();
}
public void destroy()
{
_adapter.deactivate();
_communicator.destroy();
}
public void join()
{
System.Console.Out.Write("testing " + _name + "... ");
System.Console.Out.Flush();
_logger.start();
_thread.Join();
if(_msg == null)
{
System.Console.Out.WriteLine("ok");
}
else
{
System.Console.Out.WriteLine("failed! " + _msg);
throw new System.Exception();
}
}
public void run()
{
TestIntfPrx proxy = TestIntfPrxHelper.uncheckedCast(_communicator.stringToProxy(
_adapter.getTestIntf().ToString()));
try
{
proxy.ice_getConnection().setCloseCallback(_=>
{
lock(this)
{
_closed = true;
Monitor.Pulse(this);
}
});
proxy.ice_getConnection().setHeartbeatCallback(_=>
{
lock(this)
{
++_heartbeat;
}
});
runTestCase(_adapter, proxy);
}
catch(Exception ex)
{
_msg = "unexpected exception:\n" + ex.ToString();
}
}
public void waitForClosed()
{
lock(this)
{
long now = IceInternal.Time.currentMonotonicTimeMillis();
while(!_closed)
{
Monitor.Wait(this, 2000);
if(IceInternal.Time.currentMonotonicTimeMillis() - now > 2000)
{
System.Diagnostics.Debug.Assert(false); // Waited for more than 2s for close, something's wrong.
throw new System.Exception();
}
}
}
}
public abstract void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy);
public void setClientACM(int timeout, int close, int heartbeat)
{
_clientACMTimeout = timeout;
_clientACMClose = close;
_clientACMHeartbeat = heartbeat;
}
public void setServerACM(int timeout, int close, int heartbeat)
{
_serverACMTimeout = timeout;
_serverACMClose = close;
_serverACMHeartbeat = heartbeat;
}
private string _name;
private RemoteCommunicatorPrx _com;
private string _msg;
private LoggerI _logger;
private System.Threading.Thread _thread;
private Ice.Communicator _communicator;
private RemoteObjectAdapterPrx _adapter;
private int _clientACMTimeout;
private int _clientACMClose;
private int _clientACMHeartbeat;
private int _serverACMTimeout;
private int _serverACMClose;
private int _serverACMHeartbeat;
protected int _heartbeat;
protected bool _closed;
}
public class AllTests : TestCommon.AllTests
{
class InvocationHeartbeatTest : TestCase
{
public InvocationHeartbeatTest(RemoteCommunicatorPrx com) : base("invocation heartbeat", com)
{
setServerACM(1, -1, -1); // Faster ACM to make sure we receive enough ACM heartbeats
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
proxy.sleep(4);
lock(this)
{
test(_heartbeat >= 4);
}
}
}
class InvocationHeartbeatOnHoldTest : TestCase
{
public InvocationHeartbeatOnHoldTest(RemoteCommunicatorPrx com) :
base("invocation with heartbeat on hold", com)
{
// Use default ACM configuration.
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
try
{
// When the OA is put on hold, connections shouldn't
// send heartbeats, the invocation should therefore
// fail.
proxy.sleepAndHold(10);
test(false);
}
catch(Ice.ConnectionTimeoutException)
{
adapter.activate();
proxy.interruptSleep();
waitForClosed();
}
}
}
class InvocationNoHeartbeatTest : TestCase
{
public InvocationNoHeartbeatTest(RemoteCommunicatorPrx com) : base("invocation with no heartbeat", com)
{
setServerACM(2, 2, 0); // Disable heartbeat on invocations
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
try
{
// Heartbeats are disabled on the server, the
// invocation should fail since heartbeats are
// expected.
proxy.sleep(10);
test(false);
}
catch(Ice.ConnectionTimeoutException)
{
proxy.interruptSleep();
waitForClosed();
lock(this)
{
test(_heartbeat == 0);
}
}
}
}
class InvocationHeartbeatCloseOnIdleTest : TestCase
{
public InvocationHeartbeatCloseOnIdleTest(RemoteCommunicatorPrx com) :
base("invocation with no heartbeat and close on idle", com)
{
setClientACM(1, 1, 0); // Only close on idle.
setServerACM(1, 2, 0); // Disable heartbeat on invocations
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
// No close on invocation, the call should succeed this
// time.
proxy.sleep(3);
lock(this)
{
test(_heartbeat == 0);
test(!_closed);
}
}
}
class CloseOnIdleTest : TestCase
{
public CloseOnIdleTest(RemoteCommunicatorPrx com) : base("close on idle", com)
{
setClientACM(1, 1, 0); // Only close on idle
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
Thread.Sleep(3000); // Idle for 3 seconds
waitForClosed();
lock(this)
{
test(_heartbeat == 0);
}
}
}
class CloseOnInvocationTest : TestCase
{
public CloseOnInvocationTest(RemoteCommunicatorPrx com) : base("close on invocation", com)
{
setClientACM(1, 2, 0); // Only close on invocation
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
Thread.Sleep(3000); // Idle for 3 seconds
lock(this)
{
test(_heartbeat == 0);
test(!_closed);
}
}
}
class CloseOnIdleAndInvocationTest : TestCase
{
public CloseOnIdleAndInvocationTest(RemoteCommunicatorPrx com) : base("close on idle and invocation", com)
{
setClientACM(1, 3, 0); // Only close on idle and invocation
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
//
// Put the adapter on hold. The server will not respond to
// the graceful close. This allows to test whether or not
// the close is graceful or forceful.
//
adapter.hold();
Thread.Sleep(3000); // Idle for 3 seconds
lock(this)
{
test(_heartbeat == 0);
test(!_closed); // Not closed yet because of graceful close.
}
adapter.activate();
Thread.Sleep(1000);
waitForClosed();
}
}
class ForcefulCloseOnIdleAndInvocationTest : TestCase
{
public ForcefulCloseOnIdleAndInvocationTest(RemoteCommunicatorPrx com) :
base("forceful close on idle and invocation", com)
{
setClientACM(1, 4, 0); // Only close on idle and invocation
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
adapter.hold();
Thread.Sleep(3000); // Idle for 3 seconds
waitForClosed();
lock(this)
{
test(_heartbeat == 0);
}
}
}
class HeartbeatOnIdleTest : TestCase
{
public HeartbeatOnIdleTest(RemoteCommunicatorPrx com) : base("heartbeat on idle", com)
{
setServerACM(1, -1, 2); // Enable server heartbeats.
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
Thread.Sleep(3000);
lock(this)
{
test(_heartbeat >= 3);
}
}
}
class HeartbeatAlwaysTest : TestCase
{
public HeartbeatAlwaysTest(RemoteCommunicatorPrx com) : base("heartbeat always", com)
{
setServerACM(1, -1, 3); // Enable server heartbeats.
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
for(int i = 0; i < 10; i++)
{
proxy.ice_ping();
Thread.Sleep(300);
}
lock(this)
{
test(_heartbeat >= 3);
}
}
}
class HeartbeatManualTest : TestCase
{
public HeartbeatManualTest(RemoteCommunicatorPrx com) : base("manual heartbeats", com)
{
//
// Disable heartbeats.
//
setClientACM(10, -1, 0);
setServerACM(10, -1, 0);
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
proxy.startHeartbeatCount();
Ice.Connection con = proxy.ice_getConnection();
con.heartbeat();
con.heartbeat();
con.heartbeat();
con.heartbeat();
con.heartbeat();
proxy.waitForHeartbeatCount(5);
}
}
class SetACMTest : TestCase
{
public SetACMTest(RemoteCommunicatorPrx com) : base("setACM/getACM", com)
{
setClientACM(15, 4, 0);
}
public override void runTestCase(RemoteObjectAdapterPrx adapter, TestIntfPrx proxy)
{
Ice.Connection con = proxy.ice_getCachedConnection();
try
{
con.setACM(-19, Ice.Util.None, Ice.Util.None);
test(false);
}
catch(ArgumentException)
{
}
Ice.ACM acm;
acm = con.getACM();
test(acm.timeout == 15);
test(acm.close == Ice.ACMClose.CloseOnIdleForceful);
test(acm.heartbeat == Ice.ACMHeartbeat.HeartbeatOff);
con.setACM(Ice.Util.None, Ice.Util.None, Ice.Util.None);
acm = con.getACM();
test(acm.timeout == 15);
test(acm.close == Ice.ACMClose.CloseOnIdleForceful);
test(acm.heartbeat == Ice.ACMHeartbeat.HeartbeatOff);
con.setACM(1,
Ice.ACMClose.CloseOnInvocationAndIdle,
Ice.ACMHeartbeat.HeartbeatAlways);
acm = con.getACM();
test(acm.timeout == 1);
test(acm.close == Ice.ACMClose.CloseOnInvocationAndIdle);
test(acm.heartbeat == Ice.ACMHeartbeat.HeartbeatAlways);
proxy.startHeartbeatCount();
proxy.waitForHeartbeatCount(2);
var t1 = new TaskCompletionSource<object>();
con.setCloseCallback(_ => { t1.SetResult(null); });
con.close(Ice.ConnectionClose.Gracefully);
test(t1.Task.Result == null);
try
{
con.throwException();
test(false);
}
catch(Ice.ConnectionManuallyClosedException)
{
}
var t2 = new TaskCompletionSource<object>();
con.setCloseCallback(_ => { t2.SetResult(null); });
test(t2.Task.Result == null);
con.setHeartbeatCallback(_ => { test(false); });
}
}
public static void allTests(TestCommon.Application app)
{
Ice.Communicator communicator = app.communicator();
string @ref = "communicator:" + app.getTestEndpoint(0);
RemoteCommunicatorPrx com = RemoteCommunicatorPrxHelper.uncheckedCast(communicator.stringToProxy(@ref));
List<TestCase> tests = new List<TestCase>();
tests.Add(new InvocationHeartbeatTest(com));
tests.Add(new InvocationHeartbeatOnHoldTest(com));
tests.Add(new InvocationNoHeartbeatTest(com));
tests.Add(new InvocationHeartbeatCloseOnIdleTest(com));
tests.Add(new CloseOnIdleTest(com));
tests.Add(new CloseOnInvocationTest(com));
tests.Add(new CloseOnIdleAndInvocationTest(com));
tests.Add(new ForcefulCloseOnIdleAndInvocationTest(com));
tests.Add(new HeartbeatOnIdleTest(com));
tests.Add(new HeartbeatAlwaysTest(com));
tests.Add(new HeartbeatManualTest(com));
tests.Add(new SetACMTest(com));
foreach(TestCase test in tests)
{
test.init();
}
foreach(TestCase test in tests)
{
test.start();
}
foreach(TestCase test in tests)
{
test.join();
}
foreach(TestCase test in tests)
{
test.destroy();
}
Console.Out.Write("shutting down... ");
Console.Out.Flush();
com.shutdown();
Console.WriteLine("ok");
}
}
|