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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Ice/Ice.h>
#include <TestHelper.h>
#include <Test.h>
using namespace std;
class Client : public Test::TestHelper
{
public:
void run(int, char**);
};
void
Client::run(int argc, char** argv)
{
//
// In this test, we need at least two threads in the
// client side thread pool for nested AMI.
//
Ice::PropertiesPtr properties = createTestProperties(argc, argv);
properties->setProperty("Ice.ThreadPool.Client.Size", "2");
properties->setProperty("Ice.ThreadPool.Client.SizeWarn", "0");
properties->setProperty("Ice.BatchAutoFlushSize", "100");
Ice::CommunicatorHolder communicator = initialize(argc, argv, properties);
Test::MyClassPrxPtr allTests(Test::TestHelper*);
Test::MyClassPrxPtr myClass = allTests(this);
myClass->shutdown();
cout << "testing server shutdown... " << flush;
try
{
#ifdef _WIN32
myClass = myClass->ice_timeout(100); // Workaround to speed up testing
#endif
myClass->opVoid();
test(false);
}
catch(const Ice::LocalException&)
{
cout << "ok" << endl;
}
}
DEFINE_TEST(Client)
|