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
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
ZEO
Commits
acb378db
Commit
acb378db
authored
Jan 08, 2004
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
be more careful about not running tests for components that aren't
available
parent
81291b55
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
20 deletions
+36
-20
src/ZODB/tests/testConfig.py
src/ZODB/tests/testConfig.py
+36
-20
No files found.
src/ZODB/tests/testConfig.py
View file @
acb378db
...
...
@@ -21,7 +21,7 @@ import unittest
import
ZODB.config
import
ZODB.tests
from
ZODB.POSException
import
ReadOnlyError
from
ZEO.ClientStorage
import
ClientDisconnected
class
ConfigTestBase
(
unittest
.
TestCase
):
def
_opendb
(
self
,
s
):
...
...
@@ -84,12 +84,27 @@ class ZODBConfigTest(ConfigTestBase):
"""
%
path
self
.
assertRaises
(
ReadOnlyError
,
self
.
_test
,
cfg
)
def
test_demo_config
(
self
):
cfg
=
"""
<zodb unused-name>
<demostorage>
name foo
<mappingstorage/>
</demostorage>
</zodb>
"""
self
.
_test
(
cfg
)
class
ZEOConfigTest
(
ConfigTestBase
):
def
test_zeo_config
(
self
):
# We're looking for a port that doesn't exist so a connection attempt
# will fail. Instead of elaborate logic to loop over a port
# calculation, we'll just pick a simple "random", likely to not-exist
# port number and add an elaborate comment explaining this instead.
# Go ahead, grep for 9.
# We're looking for a port that doesn't exist so a
# connection attempt will fail. Instead of elaborate
# logic to loop over a port calculation, we'll just pick a
# simple "random", likely to not-exist port number and add
# an elaborate comment explaining this instead. Go ahead,
# grep for 9.
from
ZEO.ClientStorage
import
ClientDisconnected
cfg
=
"""
<zodb>
<zeoclient>
...
...
@@ -100,16 +115,6 @@ class ZODBConfigTest(ConfigTestBase):
"""
self
.
assertRaises
(
ClientDisconnected
,
self
.
_test
,
cfg
)
def
test_demo_config
(
self
):
cfg
=
"""
<zodb unused-name>
<demostorage>
name foo
<mappingstorage/>
</demostorage>
</zodb>
"""
self
.
_test
(
cfg
)
class
BDBConfigTest
(
ConfigTestBase
):
def
setUp
(
self
):
...
...
@@ -144,8 +149,19 @@ class BDBConfigTest(ConfigTestBase):
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
.
addTest
(
unittest
.
makeSuite
(
ZODBConfigTest
))
# Only run the Berkeley tests if they are available
# Only run the ZEO test if ZEO is available
try
:
import
ZEO
except
ImportError
:
pass
else
:
suite
.
addTest
(
unittest
.
makeSuite
(
ZEOConfigTest
))
# Only run the Berkeley tests if bsddb is available
try
:
import
BDBStorage
except
ImportError
:
pass
else
:
if
BDBStorage
.
is_available
:
suite
.
addTest
(
unittest
.
makeSuite
(
BDBConfigTest
))
return
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