1 """MyProxy Web Service Utilities unit test package
2 """
3 __author__ = "P J Kershaw"
4 __date__ = "25/05/10"
5 __copyright__ = "(C) 2010 Science and Technology Facilities Council"
6 __license__ = "BSD - see LICENSE file in top-level directory"
7 __contact__ = "Philip.Kershaw@stfc.ac.uk"
8 __revision__ = '$Id$'
9 import os
10
11 test_dir = os.path.dirname(__file__)
12 myproxy_ws_pkg_dir = os.path.dirname(test_dir)
13 test_ca_dir = os.path.join(test_dir, 'ca')
14 client_shell_scripts_dir = os.path.join(myproxy_ws_pkg_dir, 'client')
15 logon_shell_script = 'myproxy-ws-logon.sh'
16 get_trustroots_shell_script = 'myproxy-ws-get-trustroots.sh'
17 logon_shell_script_path = os.path.join(client_shell_scripts_dir,
18 logon_shell_script)
19 get_trustroots_shell_script_path = os.path.join(client_shell_scripts_dir,
20 get_trustroots_shell_script)
21