blob: 0773957eab7bca4643e239d1f81cea1fe2f5c39e (
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
48
49
50
51
52
53
54
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
import Dispatch
import Ice
import TestCommon
class Collocated: TestHelperI {
public override func run(args: [String]) throws {
let properties = try createTestProperties(args)
//
// Disable collocation optimization to test async/await dispatch.
//
properties.setProperty(key: "Ice.Default.CollocationOptimized", value: "0")
//
// This test kills connections, so we don't want warnings.
//
properties.setProperty(key: "Ice.Warn.Connections", value: "0")
//
// Limit the recv buffer size, this test relies on the socket
// send() blocking after sending a given amount of data.
//
properties.setProperty(key: "Ice.TCP.RcvSize", value: "50000")
let communicator = try initialize(args)
defer {
communicator.destroy()
}
communicator.getProperties().setProperty(key: "TestAdapter.Endpoints",
value: getTestEndpoint(num: 0))
communicator.getProperties().setProperty(key: "ControllerAdapter.Endpoints",
value: getTestEndpoint(num: 1))
communicator.getProperties().setProperty(key: "ControllerAdapter.ThreadPool.Size",
value: "1")
let adapter = try communicator.createObjectAdapter("TestAdapter")
let adapter2 = try communicator.createObjectAdapter("ControllerAdapter")
try adapter.add(servant: TestIntfDisp(TestI(helper: self)),
id: Ice.stringToIdentity("test"))
try adapter.add(servant: OuterInnerTestIntfDisp(TestII()),
id: Ice.stringToIdentity("test2"))
//try adapter.activate() // Don't activate OA to ensure collocation is used.
try adapter2.add(servant: TestIntfControllerDisp(TestControllerI(adapter: adapter)),
id: Ice.stringToIdentity("testController"))
//try adapter2.activate() // Don't activate OA to ensure collocation is used.
try allTests(self, collocated: true)
}
}
|