blob: fbf3f27de642d32dec76e6f5b620c9dfaa200227 (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice-E is licensed to you under the terms described in the
// ICEE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceE/IceE.h>
#include <IceE/Locator.h>
#include <TestCommon.h>
#include <Test.h>
using namespace std;
Test::MyClassPrx
allTests(const Ice::CommunicatorPtr& communicator, const Ice::InitializationData& initData)
{
string ref = communicator->getProperties()->getPropertyWithDefault(
"Operations.Proxy", "test:default -p 12010 -t 10000");
Ice::ObjectPrx base = communicator->stringToProxy(ref);
Test::MyClassPrx cl = Test::MyClassPrx::checkedCast(base);
Test::MyDerivedClassPrx derived = Test::MyDerivedClassPrx::checkedCast(cl);
tprintf("testing timeout...");
Test::MyClassPrx clTimeout = Test::MyClassPrx::uncheckedCast(cl->ice_timeout(500));
try
{
clTimeout->opSleep(2000);
test(false);
}
catch(const Ice::TimeoutException&)
{
}
tprintf("ok\n");
tprintf("testing twoway operations... ");
void twoways(const Ice::CommunicatorPtr&, const Ice::InitializationData&, const Test::MyClassPrx&);
twoways(communicator, initData, cl);
twoways(communicator, initData, derived);
derived->opDerived();
tprintf("ok\n");
tprintf("testing batch oneway operations... ");
void batchOneways(const Test::MyClassPrx&);
batchOneways(cl);
batchOneways(derived);
tprintf("ok\n");
return cl;
}
|