blob: a54b9b6d53ffbe276bce1878cf254b083cdf8c5d (
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
using Test;
namespace Ice
{
namespace ami
{
public class Collocated : TestHelper
{
public override void run(string[] args)
{
Ice.Properties properties = createTestProperties(ref args);
properties.setProperty("Ice.Warn.AMICallback", "0");
//
// Limit the send buffer size, this test relies on the socket
// send() blocking after sending a given amount of data.
//
properties.setProperty("Ice.TCP.SndSize", "50000");
//
// We use a client thread pool with more than one thread to test
// that task inlining works.
//
properties.setProperty("Ice.ThreadPool.Client.Size", "5");
using(var communicator = initialize(properties))
{
communicator.getProperties().setProperty("TestAdapter.Endpoints", getTestEndpoint(0));
communicator.getProperties().setProperty("ControllerAdapter.Endpoints", getTestEndpoint(1));
communicator.getProperties().setProperty("ControllerAdapter.ThreadPool.Size", "1");
Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter");
Ice.ObjectAdapter adapter2 = communicator.createObjectAdapter("ControllerAdapter");
adapter.add(new TestI(), Ice.Util.stringToIdentity("test"));
adapter.add(new TestII(), Ice.Util.stringToIdentity("test2"));
//adapter.activate(); // Collocated test doesn't need to activate the OA
adapter2.add(new TestControllerI(adapter), Ice.Util.stringToIdentity("testController"));
//adapter2.activate(); // Collocated test doesn't need to activate the OA
AllTests.allTests(this, true);
}
}
public static int Main(string[] args)
{
return TestDriver.runTest<Collocated>(args);
}
}
}
}
|