blob: e7c73c146d1209d3501c197498d6d3c520b2b46c (
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
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
|
// **********************************************************************
//
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
public class AllTests
{
private static void
test(boolean b)
{
if(!b)
{
throw new RuntimeException();
}
}
public static Test.MyClassPrx
allTests(Ice.Communicator communicator, boolean collocated)
{
System.out.print("testing stringToProxy... ");
System.out.flush();
String ref = "test:default -p 12010 -t 10000";
Ice.ObjectPrx base = communicator.stringToProxy(ref);
test(base != null);
System.out.println("ok");
System.out.print("testing ice_communicator... ");
System.out.flush();
test(base.ice_communicator() == communicator);
System.out.println("ok");
System.out.print("testing checked cast... ");
System.out.flush();
Test.MyClassPrx cl = Test.MyClassPrxHelper.checkedCast(base);
test(cl != null);
Test.MyDerivedClassPrx derived = Test.MyDerivedClassPrxHelper.checkedCast(cl);
test(derived != null);
test(cl.equals(base));
test(derived.equals(base));
test(cl.equals(derived));
System.out.println("ok");
System.out.print("testing checked cast with context... ");
System.out.flush();
String cref = "context:default -p 12010 -t 10000";
Ice.ObjectPrx cbase = communicator.stringToProxy(cref);
test(cbase != null);
Test.TestCheckedCastPrx tccp = Test.TestCheckedCastPrxHelper.checkedCast(cbase);
java.util.Map c = tccp.getContext();
test(c == null || c.size() == 0);
c = new java.util.HashMap();
c.put("one", "hello");
c.put("two", "world");
tccp = Test.TestCheckedCastPrxHelper.checkedCast(cbase, c);
java.util.Map c2 = tccp.getContext();
test(c.equals(c2));
System.out.println("ok");
if(!collocated)
{
System.out.print("testing timeout... ");
System.out.flush();
try
{
Test.MyClassPrx clTimeout = Test.MyClassPrxHelper.uncheckedCast(cl.ice_timeout(500));
clTimeout.opSleep(1000);
test(false);
}
catch(Ice.TimeoutException ex)
{
}
System.out.println("ok");
}
System.out.print("testing twoway operations... ");
System.out.flush();
Twoways.twoways(communicator, cl);
Twoways.twoways(communicator, derived);
derived.opDerived();
System.out.println("ok");
if(!collocated)
{
System.out.print("testing twoway operations with AMI... ");
System.out.flush();
TwowaysAMI.twowaysAMI(communicator, cl);
TwowaysAMI.twowaysAMI(communicator, derived);
System.out.println("ok");
System.out.print("testing batch oneway operations... ");
System.out.flush();
BatchOneways.batchOneways(cl);
BatchOneways.batchOneways(derived);
System.out.println("ok");
}
return cl;
}
}
|