author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 05 Jul 2010 17:06:11 +0200 | |
branch | stable |
changeset 5886 | 00a78298d30d |
parent 5424 | 8ecbcbff9777 |
child 5890 | 141b935a38fc |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
2 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
3 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
4 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
5 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
6 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
7 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
8 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
9 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
10 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
11 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
12 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
13 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
14 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
15 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
16 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
17 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5093
diff
changeset
|
18 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5886 | 19 |
"""unit/functional tests for cubicweb.server.hook""" |
0 | 20 |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
21 |
from logilab.common.testlib import TestCase, unittest_main, mock_object |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
22 |
|
3413
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
23 |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
24 |
from cubicweb.devtools import TestServerConfiguration |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
25 |
from cubicweb.devtools.testlib import CubicWebTC |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
26 |
from cubicweb.selectors import implements |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
27 |
from cubicweb.server import hook |
3413
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
28 |
from cubicweb.hooks import integrity, syncschema |
0 | 29 |
|
30 |
||
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
31 |
def clean_session_ops(func): |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
32 |
def wrapper(self, *args, **kwargs): |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
33 |
try: |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
34 |
return func(self, *args, **kwargs) |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
35 |
finally: |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
36 |
self.session.pending_operations[:] = [] |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
37 |
return wrapper |
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
38 |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
39 |
class OperationsTC(CubicWebTC): |
1787 | 40 |
|
0 | 41 |
def setUp(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
42 |
CubicWebTC.setUp(self) |
0 | 43 |
self.hm = self.repo.hm |
1787 | 44 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
45 |
@clean_session_ops |
0 | 46 |
def test_late_operation(self): |
47 |
session = self.session |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
48 |
l1 = hook.LateOperation(session) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
49 |
l2 = hook.LateOperation(session) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
50 |
l3 = hook.Operation(session) |
0 | 51 |
self.assertEquals(session.pending_operations, [l3, l1, l2]) |
1787 | 52 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
53 |
@clean_session_ops |
0 | 54 |
def test_single_last_operation(self): |
55 |
session = self.session |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
56 |
l0 = hook.SingleLastOperation(session) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
57 |
l1 = hook.LateOperation(session) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
58 |
l2 = hook.LateOperation(session) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
59 |
l3 = hook.Operation(session) |
0 | 60 |
self.assertEquals(session.pending_operations, [l3, l1, l2, l0]) |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
61 |
l4 = hook.SingleLastOperation(session) |
0 | 62 |
self.assertEquals(session.pending_operations, [l3, l1, l2, l4]) |
1787 | 63 |
|
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2637
diff
changeset
|
64 |
@clean_session_ops |
0 | 65 |
def test_global_operation_order(self): |
66 |
session = self.session |
|
3413
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
67 |
op1 = integrity._DelayedDeleteOp(session) |
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
68 |
op2 = syncschema.MemSchemaRDefDel(session) |
0 | 69 |
# equivalent operation generated by op2 but replace it here by op3 so we |
70 |
# can check the result... |
|
3413
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
71 |
op3 = syncschema.MemSchemaNotifyChanges(session) |
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
72 |
op4 = integrity._DelayedDeleteOp(session) |
5cd27d2cc64f
update imports, rename test module
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2968
diff
changeset
|
73 |
op5 = integrity._CheckORelationOp(session) |
0 | 74 |
self.assertEquals(session.pending_operations, [op1, op2, op4, op5, op3]) |
1787 | 75 |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
76 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
77 |
class HookCalled(Exception): pass |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
78 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
79 |
config = TestServerConfiguration('data') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
80 |
config.bootstrap_cubes() |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
81 |
schema = config.load_schema() |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
82 |
|
4766
162b2b127b15
[test] get a chance to get proper garbage collection when running pytest on whole cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
83 |
def teardown_module(*args): |
162b2b127b15
[test] get a chance to get proper garbage collection when running pytest on whole cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
84 |
global config, schema |
162b2b127b15
[test] get a chance to get proper garbage collection when running pytest on whole cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
85 |
del config, schema |
162b2b127b15
[test] get a chance to get proper garbage collection when running pytest on whole cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
86 |
|
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
87 |
class AddAnyHook(hook.Hook): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
88 |
__regid__ = 'addany' |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
89 |
category = 'cat1' |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
90 |
events = ('before_add_entity',) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
91 |
def __call__(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
92 |
raise HookCalled() |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
93 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
94 |
|
5093
8d073d2e089d
[optimization] improve massive write performance by optimizing hooks selection
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5029
diff
changeset
|
95 |
class HooksRegistryTC(TestCase): |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
96 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
97 |
def setUp(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
98 |
""" called before each test from this class """ |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
99 |
self.vreg = mock_object(config=config, schema=schema) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
100 |
self.o = hook.HooksRegistry(self.vreg) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
101 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
102 |
def test_register_bad_hook1(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
103 |
class _Hook(hook.Hook): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
104 |
events = ('before_add_entiti',) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
105 |
ex = self.assertRaises(Exception, self.o.register, _Hook) |
5029
f7709d28fb79
[test] fixes when executed under apycot environment (also added ldap1 to test host /etc/hosts)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
106 |
self.assertEquals(str(ex), 'bad event before_add_entiti on %s._Hook' % __name__) |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
107 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
108 |
def test_register_bad_hook2(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
109 |
class _Hook(hook.Hook): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
110 |
events = None |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
111 |
ex = self.assertRaises(Exception, self.o.register, _Hook) |
5029
f7709d28fb79
[test] fixes when executed under apycot environment (also added ldap1 to test host /etc/hosts)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
112 |
self.assertEquals(str(ex), 'bad .events attribute None on %s._Hook' % __name__) |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
113 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
114 |
def test_register_bad_hook3(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
115 |
class _Hook(hook.Hook): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
116 |
events = 'before_add_entity' |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
117 |
ex = self.assertRaises(Exception, self.o.register, _Hook) |
5029
f7709d28fb79
[test] fixes when executed under apycot environment (also added ldap1 to test host /etc/hosts)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
118 |
self.assertEquals(str(ex), 'bad event b on %s._Hook' % __name__) |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
119 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
120 |
def test_call_hook(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
121 |
self.o.register(AddAnyHook) |
4834
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
122 |
dis = set() |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
123 |
cw = mock_object(vreg=self.vreg, |
4835
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4834
diff
changeset
|
124 |
set_read_security=lambda *a,**k: None, |
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4834
diff
changeset
|
125 |
set_write_security=lambda *a,**k: None, |
4834
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
126 |
is_hook_activated=lambda x, cls: cls.category not in dis) |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
127 |
self.assertRaises(HookCalled, |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
128 |
self.o.call_hooks, 'before_add_entity', cw) |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
129 |
dis.add('cat1') |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
130 |
self.o.call_hooks('before_add_entity', cw) # disabled hooks category, not called |
4834
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
131 |
dis.remove('cat1') |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
132 |
self.assertRaises(HookCalled, |
b718626a0e60
move hooks activation control on session object, so we can have a per transaction control. Added a new `hooks_control` context manager for usual modification of hooks activation.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4766
diff
changeset
|
133 |
self.o.call_hooks, 'before_add_entity', cw) |
3414
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
134 |
self.o.unregister(AddAnyHook) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
135 |
self.o.call_hooks('before_add_entity', cw) # nothing to call |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
136 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
137 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
138 |
class SystemHooksTC(CubicWebTC): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
139 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
140 |
def test_startup_shutdown(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
141 |
import hooks # cubicweb/server/test/data/hooks.py |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
142 |
self.assertEquals(hooks.CALLED_EVENTS['server_startup'], True) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
143 |
# don't actually call repository.shutdown ! |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
144 |
self.repo.hm.call_hooks('server_shutdown', repo=self.repo) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
145 |
self.assertEquals(hooks.CALLED_EVENTS['server_shutdown'], True) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
146 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
147 |
def test_session_open_close(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
148 |
import hooks # cubicweb/server/test/data/hooks.py |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
149 |
cnx = self.login('anon') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
150 |
self.assertEquals(hooks.CALLED_EVENTS['session_open'], 'anon') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
151 |
cnx.close() |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
152 |
self.assertEquals(hooks.CALLED_EVENTS['session_close'], 'anon') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
153 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
154 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
155 |
# class RelationHookTC(TestCase): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
156 |
# """testcase for relation hooks grouping""" |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
157 |
# def setUp(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
158 |
# """ called before each test from this class """ |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
159 |
# self.o = HooksManager(schema) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
160 |
# self.called = [] |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
161 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
162 |
# def test_before_add_relation(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
163 |
# """make sure before_xxx_relation hooks are called directly""" |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
164 |
# self.o.register(self._before_relation_hook, |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
165 |
# 'before_add_relation', 'concerne') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
166 |
# self.assertEquals(self.called, []) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
167 |
# self.o.call_hooks('before_add_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
168 |
# 1, 'concerne', 2) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
169 |
# self.assertEquals(self.called, [(1, 'concerne', 2)]) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
170 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
171 |
# def test_after_add_relation(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
172 |
# """make sure after_xxx_relation hooks are deferred""" |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
173 |
# self.o.register(self._after_relation_hook, |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
174 |
# 'after_add_relation', 'concerne') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
175 |
# self.assertEquals(self.called, []) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
176 |
# self.o.call_hooks('after_add_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
177 |
# 1, 'concerne', 2) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
178 |
# self.o.call_hooks('after_add_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
179 |
# 3, 'concerne', 4) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
180 |
# self.assertEquals(self.called, [(1, 'concerne', 2), (3, 'concerne', 4)]) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
181 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
182 |
# def test_before_delete_relation(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
183 |
# """make sure before_xxx_relation hooks are called directly""" |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
184 |
# self.o.register(self._before_relation_hook, |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
185 |
# 'before_delete_relation', 'concerne') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
186 |
# self.assertEquals(self.called, []) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
187 |
# self.o.call_hooks('before_delete_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
188 |
# 1, 'concerne', 2) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
189 |
# self.assertEquals(self.called, [(1, 'concerne', 2)]) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
190 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
191 |
# def test_after_delete_relation(self): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
192 |
# """make sure after_xxx_relation hooks are deferred""" |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
193 |
# self.o.register(self._after_relation_hook, |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
194 |
# 'after_delete_relation', 'concerne') |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
195 |
# self.o.call_hooks('after_delete_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
196 |
# 1, 'concerne', 2) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
197 |
# self.o.call_hooks('after_delete_relation', 'concerne', 'USER', |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
198 |
# 3, 'concerne', 4) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
199 |
# self.assertEquals(self.called, [(1, 'concerne', 2), (3, 'concerne', 4)]) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
200 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
201 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
202 |
# def _before_relation_hook(self, pool, subject, r_type, object): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
203 |
# self.called.append((subject, r_type, object)) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
204 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
205 |
# def _after_relation_hook(self, pool, subject, r_type, object): |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
206 |
# self.called.append((subject, r_type, object)) |
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
207 |
|
fe6c99b96701
no more HooksManager but a HooksRegistry: update test accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3413
diff
changeset
|
208 |
|
0 | 209 |
if __name__ == '__main__': |
210 |
unittest_main() |