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
f262f5ca
Commit
f262f5ca
authored
Mar 27, 2001
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Acquisition unit tests (minimal).
parent
57f96f37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
293 additions
and
0 deletions
+293
-0
lib/Components/ExtensionClass/test/testAcquisition.py
lib/Components/ExtensionClass/test/testAcquisition.py
+293
-0
No files found.
lib/Components/ExtensionClass/test/testAcquisition.py
0 → 100644
View file @
f262f5ca
"""Acquisition unit tests."""
import
unittest
,
string
from
operator
import
truth
from
Acquisition
import
Implicit
from
Acquisition
import
Explicit
class
AcquisitionTests
(
unittest
.
TestCase
):
def
testImplicitTruthSemanticsDefault
(
self
):
"""Check wrapper truth semantics against those of python objects
without __len__ or __nonzero__ definitions."""
class
PyObject
:
# plain object, no __len__ or __nonzero__
pass
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testImplicitTruthSemanticsWithNonZero
(
self
):
"""Check wrapper truth semantics against those of python objects
with __nonzero__ defined."""
class
PyObject
:
def
__nonzero__
(
self
):
return
0
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
class
PyObject
:
def
__nonzero__
(
self
):
return
1
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testImplicitTruthSemanticsWithLen
(
self
):
"""Check wrapper truth semantics against those of python objects
with __len__ defined."""
class
PyObject
:
def
__len__
(
self
):
return
0
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
class
PyObject
:
def
__len__
(
self
):
return
1
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testImplicitTruthSemanticsWithNonZeroAndLen
(
self
):
"""Check wrapper truth semantics against those of python objects
with __nonzero__ and __len__ defined."""
class
PyObject
:
def
__nonzero__
(
self
):
return
0
def
__len__
(
self
):
return
1
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
assert
len
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
assert
len
(
object
)
==
1
class
PyObject
:
def
__nonzero__
(
self
):
return
1
def
__len__
(
self
):
return
0
class
AqObject
(
Implicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
assert
len
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
assert
len
(
object
)
==
0
def
testExplicitTruthSemanticsDefault
(
self
):
"""Check wrapper truth semantics against those of python objects
without __len__ or __nonzero__ definitions."""
class
PyObject
:
# plain object, no __len__ or __nonzero__
pass
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testExplicitTruthSemanticsWithNonZero
(
self
):
"""Check wrapper truth semantics against those of python objects
with __nonzero__ defined."""
class
PyObject
:
def
__nonzero__
(
self
):
return
0
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
class
PyObject
:
def
__nonzero__
(
self
):
return
1
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testExplicitTruthSemanticsWithLen
(
self
):
"""Check wrapper truth semantics against those of python objects
with __len__ defined."""
class
PyObject
:
def
__len__
(
self
):
return
0
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
class
PyObject
:
def
__len__
(
self
):
return
1
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
def
testExplicitTruthSemanticsWithNonZeroAndLen
(
self
):
"""Check wrapper truth semantics against those of python objects
with __nonzero__ and __len__ defined."""
class
PyObject
:
def
__nonzero__
(
self
):
return
0
def
__len__
(
self
):
return
1
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
0
assert
len
(
object
)
==
1
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
0
assert
len
(
object
)
==
1
class
PyObject
:
def
__nonzero__
(
self
):
return
1
def
__len__
(
self
):
return
0
class
AqObject
(
Explicit
,
PyObject
):
pass
object
=
PyObject
()
assert
truth
(
object
)
==
1
assert
len
(
object
)
==
0
parent
=
AqObject
()
parent
.
object
=
AqObject
()
object
=
parent
.
object
assert
truth
(
object
)
==
1
assert
len
(
object
)
==
0
def
test_suite
():
return
unittest
.
makeSuite
(
AcquisitionTests
)
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