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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Foundation
import Ice
import PromiseKit
import TestCommon
class LoggerI: Ice.Logger {
var _name: String
var _output: TextWriter
var _started: Bool
var _messages: [String]
var _dateFormat: DateFormatter
var _timeFormat: DateFormatter
var _lock = os_unfair_lock()
init(name: String, output: TextWriter) {
_name = name
_output = output
_started = false
_messages = [String]()
_dateFormat = DateFormatter()
_dateFormat.setLocalizedDateFormatFromTemplate("d")
_timeFormat = DateFormatter()
_timeFormat.setLocalizedDateFormatFromTemplate("HH:mm:ss:fff")
}
func start() {
withLock(&_lock) {
_started = true
dump()
}
}
func print(_ msg: String) {
withLock(&_lock) {
_messages.append(msg)
if _started {
dump()
}
}
}
func trace(category: String, message: String) {
withLock(&_lock) {
var s = _name
s += " "
s += _dateFormat.string(from: Date())
s += " "
s += _timeFormat.string(from: Date())
s += " "
s += "["
s += category
s += "] "
s += message
_messages.append(s)
if _started {
dump()
}
}
}
func warning(_ message: String) {
withLock(&_lock) {
var s = _name
s += " "
s += _dateFormat.string(from: Date())
s += " "
s += _timeFormat.string(from: Date())
s += " warning : "
s += message
_messages.append(s)
if _started {
dump()
}
}
}
func error(_ message: String) {
withLock(&_lock) {
var s = _name
s += " "
s += _dateFormat.string(from: Date())
s += " "
s += _timeFormat.string(from: Date())
s += " error : "
s += message
_messages.append(s)
if _started {
dump()
}
}
}
func getPrefix() -> String {
return ""
}
func cloneWithPrefix(_: String) -> Ice.Logger {
return self
}
func dump() {
for line in _messages {
_output.writeLine(line)
}
_messages = []
}
}
class TestCase {
var _name: String
var _com: RemoteCommunicatorPrx
var _msg: String!
var _output: TextWriter
var _logger: LoggerI
var _helper: TestHelper
var _clientACMTimeout: Int32
var _clientACMClose: Int32
var _clientACMHeartbeat: Int32
var _serverACMTimeout: Int32
var _serverACMClose: Int32
var _serverACMHeartbeat: Int32
var _heartbeat: Int32
var _closed: Bool
var _semaphore: DispatchSemaphore
var _lock = os_unfair_lock()
var _adapter: RemoteObjectAdapterPrx!
var _communicator: Ice.Communicator!
var _queue: DispatchQueue
var _group: DispatchGroup
init(name: String, com: RemoteCommunicatorPrx, helper: TestHelper) {
_name = name
_com = com
_output = helper.getWriter()
_logger = LoggerI(name: _name, output: _output)
_helper = helper
_clientACMTimeout = -1
_clientACMClose = -1
_clientACMHeartbeat = -1
_serverACMTimeout = -1
_serverACMClose = -1
_serverACMHeartbeat = -1
_heartbeat = 0
_closed = false
_semaphore = DispatchSemaphore(value: 0)
_queue = DispatchQueue(label: name)
_group = DispatchGroup()
}
func initialize() throws {
_adapter = try _com.createObjectAdapter(acmTimeout: _serverACMTimeout,
close: _serverACMClose,
heartbeat: _serverACMHeartbeat)
let properties = _com.ice_getCommunicator().getProperties().clone()
properties.setProperty(key: "Ice.ACM.Timeout", value: "2")
if _clientACMTimeout >= 0 {
properties.setProperty(key: "Ice.ACM.Client.Timeout", value: "\(_clientACMTimeout)")
}
if _clientACMClose >= 0 {
properties.setProperty(key: "Ice.ACM.Client.Close", value: "\(_clientACMClose)")
}
if _clientACMHeartbeat >= 0 {
properties.setProperty(key: "Ice.ACM.Client.Heartbeat", value: "\(_clientACMHeartbeat)")
}
//try properties.setProperty(key: "Ice.Trace.Protocol", value: "2")
//try properties.setProperty(key: "Ice.Trace.Network", value: "2")
var initData = Ice.InitializationData()
initData.properties = properties
initData.logger = _logger
_communicator = try _helper.initialize(initData)
}
func start() {
_group.enter()
_queue.async {
self.run()
self._group.leave()
}
}
func destroy() throws {
try _adapter.deactivate()
_communicator.destroy()
}
func join() throws {
_output.write("testing \(_name)... ")
_logger.start()
_group.wait()
if let msg = _msg {
_output.writeLine("failed! \(msg)")
throw Ice.RuntimeError(msg)
} else {
_output.writeLine("ok")
}
}
func run() {
do {
let str = try _adapter.getTestIntf()!.ice_toString()
let proxy = try uncheckedCast(prx: _communicator.stringToProxy(str)!,
type: TestIntfPrx.self)
try proxy.ice_getConnection()!.setCloseCallback { _ in
withLock(&self._lock) {
self._closed = true
self._semaphore.signal()
}
}
try proxy.ice_getConnection()!.setHeartbeatCallback { _ in
withLock(&self._lock) {
self._heartbeat += 1
}
}
try runTestCase(adapter: _adapter, proxy: proxy)
} catch let e {
_msg = "unexpected exception:\n\(e)"
}
}
func waitForClosed() {
do {
os_unfair_lock_lock(&_lock)
defer {
os_unfair_lock_unlock(&_lock)
}
if _closed {
return
}
}
if _semaphore.wait(timeout: .now() + Double(30)) == .timedOut {
precondition(false) // Waited for more than 30s for close, something's wrong.
}
precondition(_closed)
}
func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
precondition(false, "Abstract Method")
}
func setClientACM(timeout: Int32, close: Int32, heartbeat: Int32) {
_clientACMTimeout = timeout
_clientACMClose = close
_clientACMHeartbeat = heartbeat
}
func setServerACM(timeout: Int32, close: Int32, heartbeat: Int32) {
_serverACMTimeout = timeout
_serverACMClose = close
_serverACMHeartbeat = heartbeat
}
}
class InvocationHeartbeatTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "invocation heartbeat", com: com, helper: helper)
setServerACM(timeout: 1, close: -1, heartbeat: -1) // Faster ACM to make sure we receive enough ACM hearbeats
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
try proxy.sleep(4)
try withLock(&_lock) {
try _helper.test(self._heartbeat >= 4)
}
}
}
class InvocationHeartbeatOnHoldTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "invocation with heartbeat on hold", com: com, helper: helper)
// Use default ACM configuration.
}
override func runTestCase(adapter: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
do {
// When the OA is put on hold, connections shouldn't
// send heartbeats, the invocation should therefore
// fail.
try proxy.sleepAndHold(10)
try _helper.test(false)
} catch is Ice.ConnectionTimeoutException {
try adapter.activate()
try proxy.interruptSleep()
waitForClosed()
}
}
}
class InvocationNoHeartbeatTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "invocation with no heartbeat", com: com, helper: helper)
setServerACM(timeout: 2, close: 2, heartbeat: 0) // Disable heartbeat on invocations
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
do {
// Heartbeats are disabled on the server, the
// invocation should fail since heartbeats are
// expected.
try proxy.sleep(10)
try _helper.test(false)
} catch is Ice.ConnectionTimeoutException {
try proxy.interruptSleep()
waitForClosed()
try withLock(&_lock) {
try _helper.test(_heartbeat == 0)
}
}
}
}
class InvocationHeartbeatCloseOnIdleTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "invocation with no heartbeat and close on idle", com: com, helper: helper)
setClientACM(timeout: 1, close: 1, heartbeat: 0) // Only close on idle.
setServerACM(timeout: 1, close: 2, heartbeat: 0) // Disable heartbeat on invocations
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
// No close on invocation, the call should succeed this
// time.
try proxy.sleep(3)
try withLock(&_lock) {
try _helper.test(self._heartbeat == 0)
try _helper.test(!self._closed)
}
}
}
class CloseOnIdleTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "close on idle", com: com, helper: helper)
setClientACM(timeout: 1, close: 1, heartbeat: 0) // Only close on idle
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
waitForClosed()
try withLock(&_lock) {
try _helper.test(self._heartbeat == 0)
}
}
}
class CloseOnInvocationTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "close on invocation", com: com, helper: helper)
setClientACM(timeout: 1, close: 2, heartbeat: 0) // Only close on invocation
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
Thread.sleep(forTimeInterval: 3) // Idle for 3 seconds
try withLock(&_lock) {
try _helper.test(self._heartbeat == 0)
try _helper.test(!self._closed)
}
}
}
class CloseOnIdleAndInvocationTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "close on idle and invocation", com: com, helper: helper)
setClientACM(timeout: 3, close: 3, heartbeat: 0) // Only close on idle and invocation
}
override func runTestCase(adapter: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
//
// 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.
//
try adapter.hold()
Thread.sleep(forTimeInterval: 5) // Idle for 5 seconds
try withLock(&_lock) {
try _helper.test(self._heartbeat == 0)
try _helper.test(!self._closed) // Not closed yet because of graceful close.
}
try adapter.activate()
waitForClosed()
}
}
class ForcefulCloseOnIdleAndInvocationTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "forceful close on idle and invocation", com: com, helper: helper)
setClientACM(timeout: 1, close: 4, heartbeat: 0) // Only close on idle and invocation
}
override func runTestCase(adapter: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
try adapter.hold()
waitForClosed()
try withLock(&_lock) {
try _helper.test(self._heartbeat == 0)
}
}
}
class HeartbeatOnIdleTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "heartbeat on idle", com: com, helper: helper)
setServerACM(timeout: 1, close: -1, heartbeat: 2) // Enable server heartbeats.
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy _: TestIntfPrx) throws {
Thread.sleep(forTimeInterval: 3)
try withLock(&_lock) {
try _helper.test(_heartbeat >= 3)
}
}
}
class HeartbeatAlwaysTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "heartbeat always", com: com, helper: helper)
setServerACM(timeout: 1, close: -1, heartbeat: 3) // Enable server heartbeats.
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
for _ in 0 ..< 10 {
try proxy.ice_ping()
Thread.sleep(forTimeInterval: 0.3)
}
try withLock(&_lock) {
try _helper.test(self._heartbeat >= 3)
}
}
}
class HeartbeatManualTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "manual heartbeats", com: com, helper: helper)
//
// Disable heartbeats.
//
setClientACM(timeout: 10, close: -1, heartbeat: 0)
setServerACM(timeout: 10, close: -1, heartbeat: 0)
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
try proxy.startHeartbeatCount()
let con = try proxy.ice_getConnection()!
try con.heartbeat()
try con.heartbeat()
try con.heartbeat()
try con.heartbeat()
try con.heartbeat()
try proxy.waitForHeartbeatCount(5)
}
}
class SetACMTest: TestCase {
init(com: RemoteCommunicatorPrx, helper: TestHelper) {
super.init(name: "setACM/getACM", com: com, helper: helper)
setClientACM(timeout: 15, close: 4, heartbeat: 0)
}
override func runTestCase(adapter _: RemoteObjectAdapterPrx, proxy: TestIntfPrx) throws {
guard let con = proxy.ice_getCachedConnection() else {
fatalError()
}
var acm = con.getACM()
try _helper.test(acm.timeout == 15)
try _helper.test(acm.close == .CloseOnIdleForceful)
try _helper.test(acm.heartbeat == .HeartbeatOff)
con.setACM(timeout: nil, close: nil, heartbeat: nil)
acm = con.getACM()
try _helper.test(acm.timeout == 15)
try _helper.test(acm.close == .CloseOnIdleForceful)
try _helper.test(acm.heartbeat == .HeartbeatOff)
con.setACM(timeout: 1, close: .CloseOnInvocationAndIdle, heartbeat: .HeartbeatAlways)
acm = con.getACM()
try _helper.test(acm.timeout == 1)
try _helper.test(acm.close == .CloseOnInvocationAndIdle)
try _helper.test(acm.heartbeat == .HeartbeatAlways)
try proxy.startHeartbeatCount()
try proxy.waitForHeartbeatCount(2)
let p1 = Promise<Void> { seal in
do {
try con.setCloseCallback { _ in
seal.fulfill(())
}
} catch {
seal.reject(error)
}
}
try con.close(.Gracefully)
try p1.wait()
do {
try con.throwException()
try _helper.test(false)
} catch is Ice.ConnectionManuallyClosedException {}
try Promise<Void> { seal in
do {
try con.setCloseCallback { _ in
seal.fulfill(())
}
} catch {
seal.reject(error)
}
}.wait()
con.setHeartbeatCallback { _ in
precondition(false)
}
}
}
func allTests(helper: TestHelper) throws {
let writer = helper.getWriter()
let communicator = helper.communicator()
let com = try uncheckedCast(prx: communicator.stringToProxy("communicator:\(helper.getTestEndpoint(num: 0))")!,
type: RemoteCommunicatorPrx.self)
let tests: [TestCase] = [
InvocationHeartbeatTest(com: com, helper: helper),
InvocationHeartbeatOnHoldTest(com: com, helper: helper),
InvocationNoHeartbeatTest(com: com, helper: helper),
InvocationHeartbeatCloseOnIdleTest(com: com, helper: helper),
CloseOnIdleTest(com: com, helper: helper),
CloseOnInvocationTest(com: com, helper: helper),
CloseOnIdleAndInvocationTest(com: com, helper: helper),
ForcefulCloseOnIdleAndInvocationTest(com: com, helper: helper),
HeartbeatOnIdleTest(com: com, helper: helper),
HeartbeatAlwaysTest(com: com, helper: helper),
HeartbeatManualTest(com: com, helper: helper),
SetACMTest(com: com, helper: helper)
]
for t in tests {
try t.initialize()
}
for t in tests {
t.start()
}
for t in tests {
try t.join()
}
for t in tests {
try t.destroy()
}
writer.write("shutting down... ")
try com.shutdown()
writer.writeLine("ok")
}
|