Commit 5be1f6aa authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

add -d (--debug) option to specify not to use Xvfb.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26207 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 28017073
...@@ -22,6 +22,7 @@ Options: ...@@ -22,6 +22,7 @@ Options:
-s, --stdout prints the results on stdout instead of sending -s, --stdout prints the results on stdout instead of sending
results by email (unless email_to_address is also results by email (unless email_to_address is also
passed explictly) passed explictly)
-d, --debug run firefox on current DISPLAY instead of on Xvfb passed explictly)
--host the hostname of this ERP5 instance --host the hostname of this ERP5 instance
--port the port of this ERP5 instance --port the port of this ERP5 instance
--portal_name the ID of the ERP5 site --portal_name the ID of the ERP5 site
...@@ -40,6 +41,7 @@ user = 'ERP5TypeTestCase' ...@@ -40,6 +41,7 @@ user = 'ERP5TypeTestCase'
password = '' password = ''
send_mail = 0 send_mail = 0
stdout = 0 stdout = 0
debug = 0
email_to_address = 'erp5-report@erp5.org' email_to_address = 'erp5-report@erp5.org'
tests_framework_home = os.path.dirname(os.path.abspath(__file__)) tests_framework_home = os.path.dirname(os.path.abspath(__file__))
...@@ -68,13 +70,14 @@ def usage(stream, msg=None): ...@@ -68,13 +70,14 @@ def usage(stream, msg=None):
def parseArgs(): def parseArgs():
global send_mail global send_mail
global stdout global stdout
global debug
global email_to_address global email_to_address
global host global host
global port global port
global portal_name global portal_name
try: try:
opts, args = getopt.getopt(sys.argv[1:], opts, args = getopt.getopt(sys.argv[1:],
"hs", ["help", "stdout", "hsd", ["help", "stdout", "debug",
"email_to_address=", "host=", "port=", "portal_name="] ) "email_to_address=", "host=", "port=", "portal_name="] )
except getopt.GetoptError, msg: except getopt.GetoptError, msg:
usage(sys.stderr, msg) usage(sys.stderr, msg)
...@@ -83,6 +86,8 @@ def parseArgs(): ...@@ -83,6 +86,8 @@ def parseArgs():
for opt, arg in opts: for opt, arg in opts:
if opt in ("-s", "--stdout"): if opt in ("-s", "--stdout"):
stdout = 1 stdout = 1
elif opt in ("-d", "--debug"):
debug = 1
elif opt == '--email_to_address': elif opt == '--email_to_address':
email_to_address = arg email_to_address = arg
send_mail = 1 send_mail = 1
...@@ -106,6 +111,7 @@ def main(): ...@@ -106,6 +111,7 @@ def main():
xvfb_pid = None xvfb_pid = None
firefox_pid = None firefox_pid = None
try: try:
if not debug:
xvfb_pid = runXvfb() xvfb_pid = runXvfb()
firefox_pid = runFirefox() firefox_pid = runFirefox()
while True: while True:
...@@ -179,6 +185,7 @@ user_pref("capability.principal.codebase.p1.subjectName", "");""" % \ ...@@ -179,6 +185,7 @@ user_pref("capability.principal.codebase.p1.subjectName", "");""" % \
def runFirefox(): def runFirefox():
os.environ['MOZ_NO_REMOTE'] = '1' os.environ['MOZ_NO_REMOTE'] = '1'
if not debug:
os.environ['DISPLAY'] = ':123' os.environ['DISPLAY'] = ':123'
os.environ['HOME'] = profile_dir os.environ['HOME'] = profile_dir
prepareFirefox() prepareFirefox()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment