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
|
// **********************************************************************
//
// Copyright (c) 2003-2014 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.
//
// **********************************************************************
package test.Ice.properties;
public class Client extends test.Util.Application
{
public static void
test(boolean b)
{
if(!b)
{
throw new RuntimeException();
}
}
class PropertiesClient extends Ice.Application
{
@Override
public int
run(String[] args)
{
Ice.Properties properties = communicator().getProperties();
test(properties.getProperty("Ice.Trace.Network").equals("1"));
test(properties.getProperty("Ice.Trace.Protocol").equals("1"));
test(properties.getProperty("Config.Path").equals(configPath));
test(properties.getProperty("Ice.ProgramName").equals("PropertiesClient"));
test(appName().equals(properties.getProperty("Ice.ProgramName")));
return 0;
};
};
@Override
public int run(String[] args)
{
{
System.out.print("testing load properties from UTF-8 path... ");
Ice.Properties properties = Ice.Util.createProperties();
properties.load(configPath);
test(properties.getProperty("Ice.Trace.Network").equals("1"));
test(properties.getProperty("Ice.Trace.Protocol").equals("1"));
test(properties.getProperty("Config.Path").equals(configPath));
test(properties.getProperty("Ice.ProgramName").equals("PropertiesClient"));
System.out.println("ok");
System.out.print("testing load properties from UTF-8 path using Ice::Application... ");
PropertiesClient c = new PropertiesClient();
c.main("", args, configPath);
System.out.println("ok");
}
{
//
// Try to load multiple config files.
//
System.out.print("testing using Ice.Config with multiple config files... ");
String[] args1 = new String[]{"--Ice.Config=config/config.1, config/config.2, config/config.3"};
Ice.Properties properties = Ice.Util.createProperties(args1);
test(properties.getProperty("Config1").equals("Config1"));
test(properties.getProperty("Config2").equals("Config2"));
test(properties.getProperty("Config3").equals("Config3"));
System.out.println("ok");
}
{
System.out.print("testing configuration file escapes... ");
String[] args1 = new String[]{"--Ice.Config=config/escapes.cfg"};
Ice.Properties properties = Ice.Util.createProperties(args1);
String[] props = new String[]{"Foo\tBar", "3",
"Foo\\tBar", "4",
"Escape\\ Space", "2",
"Prop1", "1",
"Prop2", "2",
"Prop3", "3",
"My Prop1", "1",
"My Prop2", "2",
"My.Prop1", "a property",
"My.Prop2", "a property",
"My.Prop3", " a property ",
"My.Prop4", " a property ",
"My.Prop5", "a \\ property",
"foo=bar", "1",
"foo#bar", "2",
"foo bar", "3",
"A", "1",
"B", "2 3 4",
"C", "5=#6",
"AServer", "\\\\server\\dir",
"BServer", "\\server\\dir",
""};
for(int i = 0; !props[i].isEmpty(); i += 2)
{
test(properties.getProperty(props[i]).equals(props[i + 1]));
}
System.out.println("ok");
}
return 0;
}
public static void main(String[] args)
{
Client c = new Client();
int status = c.main("Client", args);
System.gc();
System.exit(status);
}
private static String configPath = "./config/\u4E2D\u56FD_client.config";
}
|