blob: 2896f61d371639b8396f5b2416ea6954694cc69a (
plain)
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Ice
import PromiseKit
import TestCommon
class Collocated: TestHelperI {
public override func run(args: [String]) throws {
var properties = try createTestProperties(args)
properties.setProperty(key: "Ice.RetryIntervals", value: "0 1 10 1")
//
// This test kills connections, so we don't want warnings.
//
properties.setProperty(key: "Ice.Warn.Connections", value: "0")
properties.setProperty(key: "Ice.Warn.Dispatch", value: "0")
properties.setProperty(key: "TestAdapter.AdapterId", value: "RetryAdapter")
let communicator = try initialize(properties)
defer {
communicator.destroy()
}
//
// Configure a second communicator for the invocation timeout
// + retry test, we need to configure a large retry interval
// to avoid time-sensitive failures.
//
properties = communicator.getProperties().clone()
properties.setProperty(key: "Ice.RetryIntervals", value: "0 1 10000")
let communicator2 = try self.initialize(properties)
defer {
communicator2.destroy()
}
try communicator.createObjectAdapter("TestAdapter").add(servant: RetryDisp(RetryI()),
id: Ice.stringToIdentity("retry"))
try communicator2.createObjectAdapter("TestAdapter").add(servant: RetryDisp(RetryI()),
id: Ice.stringToIdentity("retry"))
//try adapter.activate() // Don't activate OA to ensure collocation is used.
_ = try allTests(helper: self, communicator2: communicator2, ref: "retry@RetryAdapter")
}
}
|