blob: ce7e92de49654f526cb8b88b661540c241a43a84 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/**
25 *
26 */
27import java.io.File;
28
29/**
30 * Setup static variables to represent properties in test environment.
31 */
32public class TestParams {
33
34 /** variables that hold value property values */
35 public static String testSrc = null;
36 public static String testClasses = null;
37
38 /** name of default security policy */
39 public static String defaultPolicy = null;
40
41 /** name of default security policy for RMID */
42 public static String defaultRmidPolicy = null;
43
44 /** name of default security policy for activation groups */
45 public static String defaultGroupPolicy = null;
46
47 /** name of default security manager */
48 public static String defaultSecurityManager =
49 "java.rmi.RMISecurityManager";
50
51
52 /* Initalize commonly used strings */
53 static {
54 try {
55 testSrc = TestLibrary.
56 getProperty("test.src", ".");
57 testClasses = TestLibrary.
58 getProperty("test.classes", ".");
59
60 // if policy file already set use it
61 defaultPolicy = TestLibrary.
62 getProperty("java.security.policy",
63 defaultPolicy);
64 if (defaultPolicy == null) {
65 defaultPolicy = testSrc + File.separatorChar +
66 "security.policy";
67 }
68
69 // if manager prop set use it
70 defaultSecurityManager = TestLibrary.
71 getProperty("java.security.manager",
72 defaultSecurityManager);
73
74 defaultRmidPolicy =
75 testSrc + File.separatorChar + "rmid.security.policy";
76
77 defaultGroupPolicy = testSrc +
78 File.separatorChar + "group.security.policy";
79
80 } catch (SecurityException se) {
81 TestLibrary.bomb("Security exception received" +
82 " during test initialization:",
83 se);
84 }
85 }
86}