blob: 0359303bc3502eccc9e44decaedd20423a046a5b (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#include <Ice/Ice.h>
#include <IceSSL/IceSSL.h>
#include <TestHelper.h>
#include <Test.h>
#if defined(ICE_USE_OPENSSL)
# include <IceSSL/OpenSSL.h>
#endif
using namespace std;
class Client : public Test::TestHelper
{
public:
Client() : Test::TestHelper(false)
{
}
void run(int, char**);
};
void
Client::run(int argc, char** argv)
{
//
// Explicitly register the IceSSL plugin to test registerIceSSL. The tests
// don't set Ice.Plugin.IceSSL to ensure the plugin is registered without
// the property setting.
//
#if !defined(ICE_USE_OPENSSL)
Ice::registerIceSSL();
#endif
#ifdef ICE_STATIC_LIBS
Ice::registerIceWS(true);
#endif
Ice::CommunicatorHolder communicator = initialize(argc, argv);
string testdir;
#if TARGET_OS_IPHONE == 0
if(argc < 2)
{
ostringstream os;
os << "Usage: " << argv[0] << " testdir";
throw std::invalid_argument(os.str());
}
testdir = argv[1];
#endif
Test::ServerFactoryPrxPtr allTests(Test::TestHelper*, const string&, bool);
cerr << "testing with PKCS12 certificates..." << endl;
Test::ServerFactoryPrxPtr factory = allTests(this, testdir, true);
#if TARGET_OS_IPHONE == 0 && !defined(ICE_OS_UWP)
cerr << "testing with PEM certificates..." << endl;
factory = allTests(this, testdir, false);
#endif
if(factory)
{
factory->shutdown();
}
}
DEFINE_TEST(Client)
|