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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#import <objc/Ice.h>
#import <TestCommon.h>
#import <DefaultServantTest.h>
#import <defaultServant/TestI.h>
static int
run(id<ICECommunicator> communicator)
{
//
// Create OA
//
id<ICEObjectAdapter> oa = [communicator createObjectAdapterWithEndpoints:@"MyOA" endpoints:@"tcp -h localhost"];
[oa activate];
ICEObject* servant = [TestDefaultServantMyObjectI myObject];
//
// Register default servant with category "foo"
//
[oa addDefaultServant:servant category:@"foo"];
//
// Start test
//
tprintf("testing single category... ");
ICEObject* r = [oa findDefaultServant:@"foo"];
test(r == servant);
r = [oa findDefaultServant:@"bar"];
test(r == nil);
ICEIdentity* identity = [ICEIdentity identity:@"" category:@"foo"];
NSArray* stringArray = [NSArray arrayWithObjects:@"foo", @"bar", @"x", @"y", @"abcdefg", nil];
for(NSString* name in stringArray)
{
[identity setName:name];
id<TestDefaultServantMyObjectPrx> prx = [TestDefaultServantMyObjectPrx uncheckedCast:[oa createProxy:identity]];
[prx ice_ping];
test([[prx getName] isEqualToString:name]);
}
[identity setName:@"ObjectNotExist"];
id<TestDefaultServantMyObjectPrx> prx = [TestDefaultServantMyObjectPrx uncheckedCast:[oa createProxy:identity]];
@try
{
[prx ice_ping];
//test(NO);
}
@catch(ICEObjectNotExistException*)
{
// expected
}
@try
{
[prx getName];
test(NO);
}
@catch(ICEObjectNotExistException*)
{
// expected
}
[identity setName:@"FacetNotExist"];
prx = [TestDefaultServantMyObjectPrx uncheckedCast:[oa createProxy:identity]];
@try
{
[prx ice_ping];
test(NO);
}
@catch(ICEFacetNotExistException*)
{
// expected
}
@try
{
[prx getName];
test(NO);
}
@catch(ICEFacetNotExistException*)
{
// expected
}
[identity setCategory:@"bar"];
for(NSString* name in stringArray)
{
[identity setName:name];
prx = [TestDefaultServantMyObjectPrx uncheckedCast:[oa createProxy:identity]];
@try
{
[prx ice_ping];
test(NO);
}
@catch(ICEObjectNotExistException*)
{
}
@try
{
[prx getName];
test(NO);
}
@catch(ICEObjectNotExistException*)
{
}
}
tprintf("ok\n");
tprintf("testing default category... ");
[oa addDefaultServant:servant category:@""];
r = [oa findDefaultServant:@"bar"];
test(r == nil);
r = [oa findDefaultServant:@""];
test(r == servant);
for(NSString* name in stringArray)
{
[identity setName:name];
prx = [TestDefaultServantMyObjectPrx uncheckedCast:[oa createProxy:identity]];
[prx ice_ping];
test([[prx getName] isEqualToString:name]);
}
tprintf("ok\n");
return 0;
}
#if TARGET_OS_IPHONE
# define main defaultServantClient
int
defaultServantServer(int argc, char* argv[])
{
serverReady(nil);
return 0;
}
#endif
int
main(int argc, char* argv[])
{
#ifdef ICE_STATIC_LIBS
ICEregisterIceSSL(YES);
ICEregisterIceWS(YES);
#if TARGET_OS_IPHONE && !TARGET_IPHONE_SIMULATOR
ICEregisterIceIAP(YES);
#endif
#endif
int status;
@autoreleasepool
{
id<ICECommunicator> communicator = nil;
@try
{
ICEInitializationData* initData = [ICEInitializationData initializationData];
initData.properties = defaultClientProperties(&argc, argv);
#if TARGET_OS_IPHONE
initData.prefixTable_ = [NSDictionary dictionaryWithObjectsAndKeys:
@"TestDefaultServant", @"::Test",
nil];
#endif
communicator = [ICEUtil createCommunicator:&argc argv:argv initData:initData];
status = run(communicator);
}
@catch(ICEException* ex)
{
tprintf("%@\n", ex);
status = EXIT_FAILURE;
}
@catch(TestFailedException* ex)
{
status = EXIT_FAILURE;
}
if(communicator)
{
[communicator destroy];
}
}
return status;
}
|