Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
1c38c48e
Commit
1c38c48e
authored
Jan 18, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A few unit tests for zdaemo.zdoptons.ZDOptions and ZEO.runzeo.ZEOOptions.
parent
01ecdfc2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
107 additions
and
0 deletions
+107
-0
src/ZEO/tests/testZEOOptions.py
src/ZEO/tests/testZEOOptions.py
+107
-0
No files found.
src/ZEO/tests/testZEOOptions.py
0 → 100644
View file @
1c38c48e
##############################################################################
#
# 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.runzeo.ZEOOptions."""
import
os
import
sys
import
tempfile
import
unittest
from
StringIO
import
StringIO
import
ZODB.config
from
ZEO.runzeo
import
ZEOOptions
from
zdaemon.tests.testzdoptions
import
TestZDOptions
class
TestZEOOptions
(
TestZDOptions
):
OptionsClass
=
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
()
options
.
realize
([
"-C"
,
self
.
tempfilename
])
self
.
assertEqual
(
options
.
address
,
(
""
,
5555
))
self
.
assertEqual
(
len
(
options
.
storages
),
1
)
opener
=
options
.
storages
[
0
]
self
.
assertEqual
(
opener
.
name
,
"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
()
options
.
realize
([
"-a"
,
"5555"
,
"-f"
,
"Data.fs"
])
self
.
assertEqual
(
options
.
address
,
(
""
,
5555
))
self
.
assertEqual
(
len
(
options
.
storages
),
1
)
opener
=
options
.
storages
[
0
]
self
.
assertEqual
(
opener
.
name
,
"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
()
options
.
realize
([
"-C"
,
self
.
tempfilename
,
"-a"
,
"6666"
,
"-f"
,
"Wisdom.fs"
])
self
.
assertEqual
(
options
.
address
,
(
""
,
6666
))
self
.
assertEqual
(
len
(
options
.
storages
),
1
)
opener
=
options
.
storages
[
0
]
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
[
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