Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joshua
erp5
Commits
872cb67c
Commit
872cb67c
authored
Aug 28, 2018
by
Jérome Perrin
Committed by
Rafael Monnerat
Oct 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
runUnitTest: new zserver_frontend_url to run zelenium tests behind http proxy
parent
09e794c2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
product/ERP5Type/tests/ERP5TypeFunctionalTestCase.py
product/ERP5Type/tests/ERP5TypeFunctionalTestCase.py
+11
-2
product/ERP5Type/tests/runUnitTest.py
product/ERP5Type/tests/runUnitTest.py
+7
-0
No files found.
product/ERP5Type/tests/ERP5TypeFunctionalTestCase.py
View file @
872cb67c
...
...
@@ -138,8 +138,17 @@ class FunctionalTestRunner:
return
self
.
portal
.
portal_tests
.
TestTool_getResults
(
self
.
run_only
)
def
_getTestURL
(
self
):
return
ZELENIUM_BASE_URL
%
(
self
.
portal
.
portal_url
(),
self
.
run_only
,
self
.
user
,
self
.
password
)
# Access the https proxy in front of runUnitTest's zserver
base_url
=
os
.
getenv
(
'zserver_frontend_url'
)
if
base_url
:
base_url
=
'%s%s'
%
(
base_url
,
self
.
portal
.
getId
())
else
:
base_url
=
self
.
portal
.
portal_url
()
return
ZELENIUM_BASE_URL
%
(
base_url
,
self
.
run_only
,
self
.
user
,
self
.
password
)
def
test
(
self
,
debug
=
0
):
xvfb
=
Xvfb
(
self
.
instance_home
)
...
...
product/ERP5Type/tests/runUnitTest.py
View file @
872cb67c
...
...
@@ -145,6 +145,10 @@ Options:
Make ZServer listen on given host:port
If used with --activity_node=, this can be a
comma-separated list of addresses.
--zserver_frontend_url=STRING
URL of an http proxy where the zserver is reachable.
When running zelenium tests, the zserver will be
accessed from this URL.
--neo_storage Use a NEO storage (SQLite) instead of FileStorage.
--products_path=path,path Comma-separated list of products paths locations
which shall be used in test environment.
...
...
@@ -727,6 +731,7 @@ def main(argument_list=None):
"zeo_client="
,
"zeo_server="
,
"zserver="
,
"zserver_frontend_url="
,
"neo_storage"
,
"products_path="
,
"sys_path="
,
...
...
@@ -839,6 +844,8 @@ def main(argument_list=None):
os
.
environ
[
"zeo_server"
]
=
arg
elif
opt
==
"--zserver"
:
os
.
environ
[
"zserver"
]
=
arg
elif
opt
==
"--zserver_frontend_url"
:
os
.
environ
[
"zserver_frontend_url"
]
=
arg
elif
opt
==
"--neo_storage"
:
os
.
environ
[
"neo_storage"
]
=
""
elif
opt
==
"--products_path"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment