blob: 1263397667e74197609555b9c8e86b5f30c0ec8f (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2017 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.
//
// **********************************************************************
using System;
using Test;
public class AllTests : TestCommon.AllTests
{
public static void allTests(TestCommon.Application app)
{
Ice.Communicator communicator = app.communicator();
TestIntfPrx service1 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:" +
app.getTestEndpoint(0)));
TestIntfPrx service2 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:" +
app.getTestEndpoint(1)));
TestIntfPrx service3 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:" +
app.getTestEndpoint(2)));
TestIntfPrx service4 = TestIntfPrxHelper.uncheckedCast(communicator.stringToProxy("test:" +
app.getTestEndpoint(3)));
if(service1.getProperty("IceBox.InheritProperties").Equals(""))
{
Console.Out.Write("testing service properties... ");
Console.Out.Flush();
test(service1.getProperty("Ice.ProgramName").Equals("IceBox-Service1"));
test(service1.getProperty("Service").Equals("1"));
test(service1.getProperty("Service1.Ovrd").Equals("2"));
test(service1.getProperty("Service1.Unset").Equals(""));
test(service1.getProperty("Arg").Equals("1"));
string[] args1 = {"-a", "--Arg=2"};
test(IceUtilInternal.Arrays.Equals(service1.getArgs(), args1));
test(service2.getProperty("Ice.ProgramName").Equals("Test"));
test(service2.getProperty("Service").Equals("2"));
test(service2.getProperty("Service1.ArgProp").Equals(""));
test(service2.getProperty("IceBox.InheritProperties").Equals("1"));
string[] args2 = {"--Service1.ArgProp=1"};
test(IceUtilInternal.Arrays.Equals(service2.getArgs(), args2));
Console.Out.WriteLine("ok");
Console.Out.Write("testing with shared communicator... ");
Console.Out.Flush();
test(service3.getProperty("Ice.ProgramName").Equals("IceBox-SharedCommunicator"));
test(service3.getProperty("Service").Equals("4"));
test(service3.getProperty("Prop").Equals(""));
test(service3.getProperty("Service3.Prop").Equals("1"));
test(service3.getProperty("Ice.Trace.Slicing").Equals("3"));
test(service4.getProperty("Ice.ProgramName").Equals("IceBox-SharedCommunicator"));
test(service4.getProperty("Service").Equals("4"));
test(service4.getProperty("Prop").Equals(""));
test(service4.getProperty("Service3.Prop").Equals("1"));
test(service4.getProperty("Ice.Trace.Slicing").Equals("3"));
string[] args4 = {"--Service3.Prop=2"};
test(IceUtilInternal.Arrays.Equals(service4.getArgs(), args4));
Console.Out.WriteLine("ok");
}
else
{
Console.Out.Write("testing property inheritance... ");
Console.Out.Flush();
test(service1.getProperty("Ice.ProgramName").Equals("IceBox2-Service1"));
test(service1.getProperty("ServerProp").Equals("1"));
test(service1.getProperty("OverrideMe").Equals("2"));
test(service1.getProperty("UnsetMe").Equals(""));
test(service1.getProperty("Service1.Prop").Equals("1"));
test(service1.getProperty("Service1.ArgProp").Equals("2"));
test(service2.getProperty("Ice.ProgramName").Equals("IceBox2-SharedCommunicator"));
test(service2.getProperty("ServerProp").Equals("1"));
test(service2.getProperty("OverrideMe").Equals("3"));
test(service2.getProperty("UnsetMe").Equals(""));
test(service2.getProperty("Service2.Prop").Equals("1"));
Console.Out.WriteLine("ok");
}
}
}
|