Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
transaction
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
transaction
Commits
b96d0999
Commit
b96d0999
authored
Dec 17, 2012
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean out module-scope imports: .tests.test_transaction
parent
2df3cf17
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
36 deletions
+45
-36
transaction/tests/test_transaction.py
transaction/tests/test_transaction.py
+45
-36
No files found.
transaction/tests/test_transaction.py
View file @
b96d0999
...
@@ -36,14 +36,13 @@ TODO
...
@@ -36,14 +36,13 @@ TODO
add in tests for objects which are modified multiple times,
add in tests for objects which are modified multiple times,
for example an object that gets modified in multiple sub txns.
for example an object that gets modified in multiple sub txns.
"""
"""
from
doctest
import
DocTestSuite
import
struct
import
unittest
import
unittest
import
transaction
_ADDRESS_MASK
=
256
**
struct
.
calcsize
(
'P'
)
def
positive_id
(
obj
):
def
positive_id
(
obj
):
"""Return id(obj) as a non-negative integer."""
"""Return id(obj) as a non-negative integer."""
import
struct
_ADDRESS_MASK
=
256
**
struct
.
calcsize
(
'P'
)
result
=
id
(
obj
)
result
=
id
(
obj
)
if
result
<
0
:
if
result
<
0
:
...
@@ -54,7 +53,8 @@ def positive_id(obj):
...
@@ -54,7 +53,8 @@ def positive_id(obj):
class
TransactionTests
(
unittest
.
TestCase
):
class
TransactionTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
def
setUp
(
self
):
mgr
=
self
.
transaction_manager
=
transaction
.
TransactionManager
()
from
transaction
import
TransactionManager
mgr
=
self
.
transaction_manager
=
TransactionManager
()
self
.
sub1
=
DataObject
(
mgr
)
self
.
sub1
=
DataObject
(
mgr
)
self
.
sub2
=
DataObject
(
mgr
)
self
.
sub2
=
DataObject
(
mgr
)
self
.
sub3
=
DataObject
(
mgr
)
self
.
sub3
=
DataObject
(
mgr
)
...
@@ -367,9 +367,10 @@ def test_join():
...
@@ -367,9 +367,10 @@ def test_join():
The argument to join must be a zodb4 data manager,
The argument to join must be a zodb4 data manager,
transaction.interfaces.IDataManager.
transaction.interfaces.IDataManager.
>>> from transaction import Transaction
>>> from transaction.tests.sampledm import DataManager
>>> from transaction.tests.sampledm import DataManager
>>> from transaction._transaction import DataManagerAdapter
>>> from transaction._transaction import DataManagerAdapter
>>> t =
transaction.
Transaction()
>>> t = Transaction()
>>> dm = DataManager()
>>> dm = DataManager()
>>> t.join(dm)
>>> t.join(dm)
...
@@ -400,9 +401,10 @@ def test_addBeforeCommitHook():
...
@@ -400,9 +401,10 @@ def test_addBeforeCommitHook():
Now register the hook with a transaction.
Now register the hook with a transaction.
>>> from transaction import begin
>>> from transaction.compat import func_name
>>> from transaction.compat import func_name
>>> import transaction
>>> import transaction
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addBeforeCommitHook(hook, '1')
>>> t.addBeforeCommitHook(hook, '1')
We can see that the hook is indeed registered.
We can see that the hook is indeed registered.
...
@@ -424,15 +426,16 @@ def test_addBeforeCommitHook():
...
@@ -424,15 +426,16 @@ def test_addBeforeCommitHook():
A hook's registration is consumed whenever the hook is called. Since
A hook's registration is consumed whenever the hook is called. Since
the hook above was called, it's no longer registered:
the hook above was called, it's no longer registered:
>>> from transaction import commit
>>> len(list(t.getBeforeCommitHooks()))
>>> len(list(t.getBeforeCommitHooks()))
0
0
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
[]
[]
The hook is only called for a full commit, not for a savepoint.
The hook is only called for a full commit, not for a savepoint.
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addBeforeCommitHook(hook, 'A', dict(kw1='B'))
>>> t.addBeforeCommitHook(hook, 'A', dict(kw1='B'))
>>> dummy = t.savepoint()
>>> dummy = t.savepoint()
>>> log
>>> log
...
@@ -444,12 +447,13 @@ def test_addBeforeCommitHook():
...
@@ -444,12 +447,13 @@ def test_addBeforeCommitHook():
If a transaction is aborted, no hook is called.
If a transaction is aborted, no hook is called.
>>> t = transaction.begin()
>>> from transaction import abort
>>> t = begin()
>>> t.addBeforeCommitHook(hook, ["OOPS!"])
>>> t.addBeforeCommitHook(hook, ["OOPS!"])
>>>
transaction.
abort()
>>> abort()
>>> log
>>> log
[]
[]
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
[]
[]
...
@@ -465,7 +469,7 @@ def test_addBeforeCommitHook():
...
@@ -465,7 +469,7 @@ def test_addBeforeCommitHook():
... def abort(self, txn):
... def abort(self, txn):
... pass
... pass
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.join(FailingDataManager())
>>> t.join(FailingDataManager())
>>> t.addBeforeCommitHook(hook, '2')
>>> t.addBeforeCommitHook(hook, '2')
...
@@ -479,7 +483,7 @@ def test_addBeforeCommitHook():
...
@@ -479,7 +483,7 @@ def test_addBeforeCommitHook():
Let's register several hooks.
Let's register several hooks.
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addBeforeCommitHook(hook, '4', dict(kw1='4.1'))
>>> t.addBeforeCommitHook(hook, '4', dict(kw1='4.1'))
>>> t.addBeforeCommitHook(hook, '5', dict(kw2='5.2'))
>>> t.addBeforeCommitHook(hook, '5', dict(kw2='5.2'))
...
@@ -509,9 +513,9 @@ def test_addBeforeCommitHook():
...
@@ -509,9 +513,9 @@ def test_addBeforeCommitHook():
... txn.addBeforeCommitHook(hook, '-')
... txn.addBeforeCommitHook(hook, '-')
... txn.addBeforeCommitHook(recurse, (txn, arg-1))
... txn.addBeforeCommitHook(recurse, (txn, arg-1))
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addBeforeCommitHook(recurse, (t, 3))
>>> t.addBeforeCommitHook(recurse, (t, 3))
>>>
transaction.
commit()
>>> commit()
>>> log #doctest: +NORMALIZE_WHITESPACE
>>> log #doctest: +NORMALIZE_WHITESPACE
['rec3',
['rec3',
"arg '-' kw1 'no_kw1' kw2 'no_kw2'",
"arg '-' kw1 'no_kw1' kw2 'no_kw2'",
...
@@ -538,9 +542,9 @@ def test_addAfterCommitHook():
...
@@ -538,9 +542,9 @@ def test_addAfterCommitHook():
Now register the hook with a transaction.
Now register the hook with a transaction.
>>> from transaction import begin
>>> from transaction.compat import func_name
>>> from transaction.compat import func_name
>>> import transaction
>>> t = begin()
>>> t = transaction.begin()
>>> t.addAfterCommitHook(hook, '1')
>>> t.addAfterCommitHook(hook, '1')
We can see that the hook is indeed registered.
We can see that the hook is indeed registered.
...
@@ -562,15 +566,16 @@ def test_addAfterCommitHook():
...
@@ -562,15 +566,16 @@ def test_addAfterCommitHook():
A hook's registration is consumed whenever the hook is called. Since
A hook's registration is consumed whenever the hook is called. Since
the hook above was called, it's no longer registered:
the hook above was called, it's no longer registered:
>>> from transaction import commit
>>> len(list(t.getAfterCommitHooks()))
>>> len(list(t.getAfterCommitHooks()))
0
0
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
[]
[]
The hook is only called after a full commit, not for a savepoint.
The hook is only called after a full commit, not for a savepoint.
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addAfterCommitHook(hook, 'A', dict(kw1='B'))
>>> t.addAfterCommitHook(hook, 'A', dict(kw1='B'))
>>> dummy = t.savepoint()
>>> dummy = t.savepoint()
>>> log
>>> log
...
@@ -582,12 +587,13 @@ def test_addAfterCommitHook():
...
@@ -582,12 +587,13 @@ def test_addAfterCommitHook():
If a transaction is aborted, no hook is called.
If a transaction is aborted, no hook is called.
>>> t = transaction.begin()
>>> from transaction import abort
>>> t = begin()
>>> t.addAfterCommitHook(hook, ["OOPS!"])
>>> t.addAfterCommitHook(hook, ["OOPS!"])
>>>
transaction.
abort()
>>> abort()
>>> log
>>> log
[]
[]
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
[]
[]
...
@@ -603,7 +609,7 @@ def test_addAfterCommitHook():
...
@@ -603,7 +609,7 @@ def test_addAfterCommitHook():
... def abort(self, txn):
... def abort(self, txn):
... pass
... pass
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.join(FailingDataManager())
>>> t.join(FailingDataManager())
>>> t.addAfterCommitHook(hook, '2')
>>> t.addAfterCommitHook(hook, '2')
...
@@ -617,7 +623,7 @@ def test_addAfterCommitHook():
...
@@ -617,7 +623,7 @@ def test_addAfterCommitHook():
Let's register several hooks.
Let's register several hooks.
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addAfterCommitHook(hook, '4', dict(kw1='4.1'))
>>> t.addAfterCommitHook(hook, '4', dict(kw1='4.1'))
>>> t.addAfterCommitHook(hook, '5', dict(kw2='5.2'))
>>> t.addAfterCommitHook(hook, '5', dict(kw2='5.2'))
...
@@ -647,9 +653,9 @@ def test_addAfterCommitHook():
...
@@ -647,9 +653,9 @@ def test_addAfterCommitHook():
... txn.addAfterCommitHook(hook, '-')
... txn.addAfterCommitHook(hook, '-')
... txn.addAfterCommitHook(recurse, (txn, arg-1))
... txn.addAfterCommitHook(recurse, (txn, arg-1))
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addAfterCommitHook(recurse, (t, 3))
>>> t.addAfterCommitHook(recurse, (t, 3))
>>>
transaction.
commit()
>>> commit()
>>> log #doctest: +NORMALIZE_WHITESPACE
>>> log #doctest: +NORMALIZE_WHITESPACE
['rec3',
['rec3',
"True arg '-' kw1 'no_kw1' kw2 'no_kw2'",
"True arg '-' kw1 'no_kw1' kw2 'no_kw2'",
...
@@ -664,18 +670,19 @@ def test_addAfterCommitHook():
...
@@ -664,18 +670,19 @@ def test_addAfterCommitHook():
message at error level so that if other hooks are registered they
message at error level so that if other hooks are registered they
can be executed. We don't support execution dependencies at this level.
can be executed. We don't support execution dependencies at this level.
>>> mgr = transaction.TransactionManager()
>>> from transaction import TransactionManager
>>> mgr = TransactionManager()
>>> do = DataObject(mgr)
>>> do = DataObject(mgr)
>>> def hookRaise(status, arg='no_arg', kw1='no_kw1', kw2='no_kw2'):
>>> def hookRaise(status, arg='no_arg', kw1='no_kw1', kw2='no_kw2'):
... raise TypeError("Fake raise")
... raise TypeError("Fake raise")
>>> t =
transaction.
begin()
>>> t = begin()
>>> t.addAfterCommitHook(hook, ('-', 1))
>>> t.addAfterCommitHook(hook, ('-', 1))
>>> t.addAfterCommitHook(hookRaise, ('-', 2))
>>> t.addAfterCommitHook(hookRaise, ('-', 2))
>>> t.addAfterCommitHook(hook, ('-', 3))
>>> t.addAfterCommitHook(hook, ('-', 3))
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
["True arg '-' kw1 1 kw2 'no_kw2'", "True arg '-' kw1 3 kw2 'no_kw2'"]
["True arg '-' kw1 1 kw2 'no_kw2'", "True arg '-' kw1 3 kw2 'no_kw2'"]
...
@@ -685,15 +692,15 @@ def test_addAfterCommitHook():
...
@@ -685,15 +692,15 @@ def test_addAfterCommitHook():
Test that the associated transaction manager has been cleanup when
Test that the associated transaction manager has been cleanup when
after commit hooks are registered
after commit hooks are registered
>>> mgr =
transaction.
TransactionManager()
>>> mgr = TransactionManager()
>>> do = DataObject(mgr)
>>> do = DataObject(mgr)
>>> t =
transaction.
begin()
>>> t = begin()
>>> t._manager._txn is not None
>>> t._manager._txn is not None
True
True
>>> t.addAfterCommitHook(hook, ('-', 1))
>>> t.addAfterCommitHook(hook, ('-', 1))
>>>
transaction.
commit()
>>> commit()
>>> log
>>> log
["True arg '-' kw1 1 kw2 'no_kw2'"]
["True arg '-' kw1 1 kw2 'no_kw2'"]
...
@@ -709,8 +716,9 @@ def bug239086():
...
@@ -709,8 +716,9 @@ def bug239086():
The original implementation of thread transaction manager made
The original implementation of thread transaction manager made
invalid assumptions about thread ids.
invalid assumptions about thread ids.
>>> import transaction.tests.savepointsample
>>> import transaction
>>> dm = transaction.tests.savepointsample.SampleSavepointDataManager()
>>> import transaction.tests.savepointsample as SPS
>>> dm = SPS.SampleSavepointDataManager()
>>> list(dm.keys())
>>> list(dm.keys())
[]
[]
...
@@ -745,7 +753,7 @@ def bug239086():
...
@@ -745,7 +753,7 @@ def bug239086():
>>> list(dm.keys())
>>> list(dm.keys())
['a']
['a']
>>> dm =
transaction.tests.savepointsample
.SampleSavepointDataManager()
>>> dm =
SPS
.SampleSavepointDataManager()
>>> list(dm.keys())
>>> list(dm.keys())
[]
[]
...
@@ -760,6 +768,7 @@ def bug239086():
...
@@ -760,6 +768,7 @@ def bug239086():
"""
"""
def
test_suite
():
def
test_suite
():
from
doctest
import
DocTestSuite
suite
=
unittest
.
TestSuite
((
suite
=
unittest
.
TestSuite
((
DocTestSuite
(),
DocTestSuite
(),
unittest
.
makeSuite
(
TransactionTests
),
unittest
.
makeSuite
(
TransactionTests
),
...
...
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