Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zodb
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
zodb
Commits
6c6d032e
Commit
6c6d032e
authored
Jan 17, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tests for runsvr.
parent
5a8f1c58
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
149 deletions
+0
-149
src/ZEO/tests/testRunsvr.py
src/ZEO/tests/testRunsvr.py
+0
-149
No files found.
src/ZEO/tests/testRunsvr.py
deleted
100644 → 0
View file @
5a8f1c58
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################
"""Test suite for ZEO.runsvr."""
import
os
import
sys
import
tempfile
import
unittest
from
StringIO
import
StringIO
import
ZEO.runsvr
class
TestOptions
(
unittest
.
TestCase
):
OptionsClass
=
ZEO
.
runsvr
.
Options
def
save_streams
(
self
):
self
.
save_stdout
=
sys
.
stdout
self
.
save_stderr
=
sys
.
stderr
sys
.
stdout
=
self
.
stdout
=
StringIO
()
sys
.
stderr
=
self
.
stderr
=
StringIO
()
def
restore_streams
(
self
):
sys
.
stdout
=
self
.
save_stdout
sys
.
stderr
=
self
.
save_stderr
input_args
=
[
"arg1"
,
"arg2"
]
output_opts
=
[]
output_args
=
[
"arg1"
,
"arg2"
]
def
test_basic
(
self
):
progname
=
"progname"
doc
=
"doc"
options
=
self
.
OptionsClass
(
self
.
input_args
,
progname
,
doc
)
self
.
assertEqual
(
options
.
progname
,
"progname"
)
self
.
assertEqual
(
options
.
doc
,
"doc
\
n
"
)
self
.
assertEqual
(
options
.
options
,
self
.
output_opts
)
self
.
assertEqual
(
options
.
args
,
self
.
output_args
)
def
test_configure
(
self
):
class
MyOptions
(
self
.
OptionsClass
):
def
load_configuration
(
self
):
pass
for
arg
in
"-C"
,
"--c"
,
"--configure"
:
options
=
MyOptions
([
"-C"
,
"foobar"
])
self
.
assertEqual
(
options
.
configuration
,
"foobar"
)
def
test_help
(
self
):
for
arg
in
"-h"
,
"--h"
,
"--help"
:
try
:
self
.
save_streams
()
try
:
options
=
self
.
OptionsClass
([
arg
])
finally
:
self
.
restore_streams
()
except
SystemExit
,
err
:
self
.
assertEqual
(
err
.
code
,
0
)
else
:
self
.
fail
(
"%s didn't call sys.exit()"
%
repr
(
arg
))
class
TestZEOOptions
(
TestOptions
):
OptionsClass
=
ZEO
.
runsvr
.
ZEOOptions
input_args
=
[
"-f"
,
"Data.fs"
,
"-a"
,
"5555"
]
output_opts
=
[(
"-f"
,
"Data.fs"
),
(
"-a"
,
"5555"
)]
output_args
=
[]
configdata
=
"""
<zeo>
address 5555
</zeo>
<filestorage fs>
path Data.fs
</filestorage>
"""
def
setUp
(
self
):
self
.
tempfilename
=
tempfile
.
mktemp
()
f
=
open
(
self
.
tempfilename
,
"w"
)
f
.
write
(
self
.
configdata
)
f
.
close
()
def
tearDown
(
self
):
try
:
os
.
remove
(
self
.
tempfilename
)
except
os
.
error
:
pass
def
test_configure
(
self
):
# Hide the base class test_configure
pass
def
test_defaults_with_schema
(
self
):
options
=
self
.
OptionsClass
([
"-C"
,
self
.
tempfilename
])
self
.
assertEqual
(
options
.
address
,
(
""
,
5555
))
import
ZODB.config
opener
=
options
.
storages
[
"fs"
]
self
.
assertEqual
(
opener
.
__class__
,
ZODB
.
config
.
FileStorage
)
self
.
assertEqual
(
options
.
read_only
,
0
)
self
.
assertEqual
(
options
.
transaction_timeout
,
None
)
self
.
assertEqual
(
options
.
invalidation_queue_size
,
100
)
def
test_defaults_without_schema
(
self
):
options
=
self
.
OptionsClass
([
"-a"
,
"5555"
,
"-f"
,
"Data.fs"
])
self
.
assertEqual
(
options
.
address
,
(
""
,
5555
))
import
ZODB.config
opener
=
options
.
storages
[
"1"
]
self
.
assertEqual
(
opener
.
__class__
,
ZODB
.
config
.
FileStorage
)
self
.
assertEqual
(
opener
.
config
.
path
,
"Data.fs"
)
self
.
assertEqual
(
options
.
read_only
,
0
)
self
.
assertEqual
(
options
.
transaction_timeout
,
None
)
self
.
assertEqual
(
options
.
invalidation_queue_size
,
100
)
def
test_commandline_overrides
(
self
):
options
=
self
.
OptionsClass
([
"-C"
,
self
.
tempfilename
,
"-a"
,
"6666"
,
"-f"
,
"Wisdom.fs"
])
self
.
assertEqual
(
options
.
address
,
(
""
,
6666
))
import
ZODB.config
opener
=
options
.
storages
[
"1"
]
self
.
assertEqual
(
opener
.
__class__
,
ZODB
.
config
.
FileStorage
)
self
.
assertEqual
(
opener
.
config
.
path
,
"Wisdom.fs"
)
self
.
assertEqual
(
options
.
read_only
,
0
)
self
.
assertEqual
(
options
.
transaction_timeout
,
None
)
self
.
assertEqual
(
options
.
invalidation_queue_size
,
100
)
def
test_suite
():
suite
=
unittest
.
TestSuite
()
for
cls
in
TestOptions
,
TestZEOOptions
:
suite
.
addTest
(
unittest
.
makeSuite
(
cls
))
return
suite
if
__name__
==
"__main__"
:
unittest
.
main
(
defaultTest
=
'test_suite'
)
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