Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
7311c6f6
Commit
7311c6f6
authored
Sep 17, 2004
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add 'test' method to zopectl, to permit running unit tests within the instance.
parent
e9d15713
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
lib/python/Zope/Startup/zopectl.py
lib/python/Zope/Startup/zopectl.py
+46
-0
No files found.
lib/python/Zope/Startup/zopectl.py
View file @
7311c6f6
...
...
@@ -221,6 +221,52 @@ class ZopeCmd(ZDCmd):
def
help_adduser
(
self
):
print
"adduser <name> <password> -- add a Zope management user"
def
do_test
(
self
,
arg
):
args
=
filter
(
None
,
arg
.
split
(
' '
))
if
not
args
:
print
"usage: test [args]+"
return
# test.py lives in $ZOPE_HOME!
zope_home
=
os
.
getenv
(
'ZOPE_HOME'
)
if
zope_home
is
None
:
software_home
=
os
.
getenv
(
'SOFTWARE_HOME'
)
zope_home
=
os
.
path
.
abspath
(
'%s/../..'
%
software_home
)
if
not
os
.
path
.
isdir
(
zope_home
):
print
"Can't find test.py -- set ZOPE_HOME before running!"
return
script
=
os
.
path
.
join
(
zope_home
,
'test.py'
)
assert
os
.
path
.
exists
(
script
)
# Supply our config file by default.
if
'--config-file'
not
in
args
and
'-C'
not
in
args
:
args
.
insert
(
0
,
self
.
options
.
configfile
)
args
.
insert
(
0
,
'--config-file'
)
# Default to dots.
if
'-v'
not
in
args
and
'-q'
not
in
args
:
args
.
insert
(
0
,
'-v'
)
# If --libdir is not supplied, use $INSTANCE_HOME/Products
# (rather than $INSTANCE_HOME/lib/python)
if
'--libdir'
not
in
args
:
args
.
insert
(
0
,
'Products'
)
args
.
insert
(
0
,
'--libdir'
)
args
.
insert
(
0
,
script
)
cmdline
=
' '
.
join
([
self
.
options
.
python
]
+
args
)
print
'Running tests via: %s'
%
cmdline
os
.
system
(
cmdline
)
def
help_test
(
self
):
print
"test [args]+ -- run unit / functional tests."
print
" See $ZOPE_HOME/test.py for syntax."
def
main
(
args
=
None
):
# This is exactly like zdctl.main(), but uses ZopeCtlOptions and
...
...
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