PageRenderTime 34ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/runtime/esb-security/regress/regress_defs.ksh

https://bitbucket.org/openesb/openesb-core
Korn Shell | 75 lines | 20 code | 13 blank | 42 comment | 0 complexity | 837c9a4970fb091520440617b10b3e97 MD5 | raw file
  1. #
  2. # BEGIN_HEADER - DO NOT EDIT
  3. #
  4. # The contents of this file are subject to the terms
  5. # of the Common Development and Distribution License
  6. # (the "License"). You may not use this file except
  7. # in compliance with the License.
  8. #
  9. # You can obtain a copy of the license at
  10. # https://open-esb.dev.java.net/public/CDDLv1.0.html.
  11. # See the License for the specific language governing
  12. # permissions and limitations under the License.
  13. #
  14. # When distributing Covered Code, include this CDDL
  15. # HEADER in each file and include the License file at
  16. # https://open-esb.dev.java.net/public/CDDLv1.0.html.
  17. # If applicable add the following below this CDDL HEADER,
  18. # with the fields enclosed by brackets "[]" replaced with
  19. # your own identifying information: Portions Copyright
  20. # [year] [name of copyright owner]
  21. #
  22. #
  23. # @(#)regress_defs.ksh
  24. # Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
  25. #
  26. # END_HEADER - DO NOT EDIT
  27. #
  28. #Definitions required by the Security regression tests:
  29. my_test_domain=domain1
  30. #use global regress setup:
  31. . $SRCROOT/antbld/regress/common_defs.ksh
  32. #Port for HTTP Listener 1
  33. JBITest_HTTP_LISTENER_1=$DOMAIN_HTTP_PORT
  34. #Port for HTTP Listener 2
  35. JBITest_HTTP_LISTENER_2=$DOMAIN_HTTP_PORT2
  36. #Port for HTTP Listener 3
  37. JBITest_HTTP_LISTENER_3=$DOMAIN_HTTP_PORT3
  38. #JBI build Library directory
  39. JBILIB=$SRCROOT/antbld/lib
  40. # The localhost name
  41. #HOSTNAME=`hostname`
  42. HOSTNAME=${HOST_NAME}
  43. # Security Regress Dirs
  44. export SEC_BLD_DIR SEC_BLD_REGRESS_DIR SEC_REGRESS_DIR TEST_SVLT_WAR
  45. SEC_BLD_DIR=$JV_SVC_BLD
  46. SEC_BLD_REGRESS_DIR=$JV_SVC_TEST_CLASSES
  47. SEC_REGRESS_DIR=$JV_SVC_REGRESS
  48. TEST_SVLT_WAR="TestSecurityServlet.war"
  49. # Server.policy backup and append files
  50. SERVER_POLICY_BAK=server.policy.bak
  51. SERVER_POLICY_APPEND=server.policy.append
  52. # Login Conf file
  53. LOGIN_CONF_BAK=login.conf.bak
  54. LOGIN_CONF_APPEND=login.conf.append
  55. # User data file required by File Logi Module
  56. USER_FILE=JbiUsers.xml
  57. #in order to use the certutil reliably, we have to set
  58. #the PATH and LD_LIBRARY_PATH to the appserver lib, where the shlib's
  59. #live. RT 3/31/05
  60. export LD_LIBRARY_PATH PATH
  61. LD_LIBRARY_PATH=$AS8BASE/lib
  62. PATH="$AS8BASE/lib${PS}$PATH"