author | Julien Cristau <julien.cristau@logilab.fr> |
Fri, 04 Oct 2013 15:29:20 +0200 | |
branch | stable |
changeset 9319 | a68b8f423a8b |
parent 9212 | 0d346a0a1451 |
child 9402 | 2c48c091b6a2 |
permissions | -rw-r--r-- |
9212
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
1 |
# copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5390
diff
changeset
|
2 |
# 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:
5390
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5390
diff
changeset
|
4 |
# 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:
5390
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5390
diff
changeset
|
6 |
# 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:
5390
diff
changeset
|
7 |
# 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:
5390
diff
changeset
|
8 |
# 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:
5390
diff
changeset
|
9 |
# 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:
5390
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# 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:
5390
diff
changeset
|
12 |
# 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:
5390
diff
changeset
|
13 |
# 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:
5390
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5390
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5390
diff
changeset
|
16 |
# 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:
5390
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
6776
eebe86b89285
[tests] use TextTestRunner from unittest, no more need to use SkipAwareTextRunner from lgc.testlib (which doesn't exist anymore in recent releases
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6341
diff
changeset
|
18 |
"""unittests for cw.devtools.testlib module""" |
0 | 19 |
|
20 |
from cStringIO import StringIO |
|
21 |
||
6776
eebe86b89285
[tests] use TextTestRunner from unittest, no more need to use SkipAwareTextRunner from lgc.testlib (which doesn't exist anymore in recent releases
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6341
diff
changeset
|
22 |
from unittest import TextTestRunner |
9212
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
23 |
|
6776
eebe86b89285
[tests] use TextTestRunner from unittest, no more need to use SkipAwareTextRunner from lgc.testlib (which doesn't exist anymore in recent releases
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6341
diff
changeset
|
24 |
from logilab.common.testlib import TestSuite, TestCase, unittest_main |
9212
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
25 |
from logilab.common.registry import yes |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
26 |
|
0 | 27 |
from cubicweb.devtools import htmlparser |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
28 |
from cubicweb.devtools.testlib import CubicWebTC |
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:
4473
diff
changeset
|
29 |
from cubicweb.pytestconf import clean_repo_test_cls |
0 | 30 |
|
6776
eebe86b89285
[tests] use TextTestRunner from unittest, no more need to use SkipAwareTextRunner from lgc.testlib (which doesn't exist anymore in recent releases
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6341
diff
changeset
|
31 |
|
0 | 32 |
class WebTestTC(TestCase): |
33 |
||
34 |
def setUp(self): |
|
35 |
output = StringIO() |
|
6776
eebe86b89285
[tests] use TextTestRunner from unittest, no more need to use SkipAwareTextRunner from lgc.testlib (which doesn't exist anymore in recent releases
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
6341
diff
changeset
|
36 |
self.runner = TextTestRunner(stream=output) |
5390
a40ffdce549d
cleanup debugging trace
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
5389
diff
changeset
|
37 |
|
0 | 38 |
def test_error_raised(self): |
2773
b2530e3e0afb
[testlib] #345052 and #344207: major test lib refactoring/cleanup + update usage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
39 |
class MyWebTest(CubicWebTC): |
0 | 40 |
|
41 |
def test_error_view(self): |
|
4472
d3b1d50fc29a
3.6 test api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
42 |
self.request().create_entity('Bug', title=u"bt") |
0 | 43 |
self.view('raising', self.execute('Bug B'), template=None) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
44 |
|
0 | 45 |
def test_correct_view(self): |
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
46 |
self.view('primary', self.execute('CWUser U'), template=None) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
47 |
|
0 | 48 |
tests = [MyWebTest('test_error_view'), MyWebTest('test_correct_view')] |
49 |
result = self.runner.run(TestSuite(tests)) |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
50 |
self.assertEqual(result.testsRun, 2) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
51 |
self.assertEqual(len(result.errors), 0) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
52 |
self.assertEqual(len(result.failures), 1) |
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:
4473
diff
changeset
|
53 |
clean_repo_test_cls(MyWebTest) |
0 | 54 |
|
55 |
||
56 |
HTML_PAGE = u"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
57 |
<html> |
|
58 |
<head><title>need a title</title></head> |
|
59 |
<body> |
|
60 |
<h1>Hello World !</h1> |
|
61 |
</body> |
|
62 |
</html> |
|
63 |
""" |
|
64 |
||
65 |
HTML_PAGE2 = u"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
66 |
<html> |
|
67 |
<head><title>need a title</title></head> |
|
68 |
<body> |
|
69 |
<h1>Test</h1> |
|
70 |
<h1>Hello <a href="http://www.google.com">world</a> !</h1> |
|
71 |
<h2>h2 title</h2> |
|
72 |
<h3>h3 title</h3> |
|
73 |
<h2>antoher h2 title</h2> |
|
74 |
<h4>h4 title</h4> |
|
75 |
<p><a href="http://www.logilab.org">Logilab</a> introduces CW !</p> |
|
76 |
</body> |
|
77 |
</html> |
|
78 |
""" |
|
79 |
||
80 |
HTML_PAGE_ERROR = u"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
81 |
<html> |
|
82 |
<head><title>need a title</title></head> |
|
83 |
<body> |
|
84 |
Logilab</a> introduces CW ! |
|
85 |
</body> |
|
86 |
</html> |
|
87 |
""" |
|
88 |
||
89 |
HTML_NON_STRICT = u"""<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
90 |
<html> |
|
91 |
<head><title>need a title</title></head> |
|
92 |
<body> |
|
93 |
<h1><a href="something.com">title</h1> |
|
94 |
</body> |
|
95 |
</html> |
|
96 |
""" |
|
97 |
||
98 |
||
99 |
class HTMLPageInfoTC(TestCase): |
|
100 |
"""test cases for PageInfo""" |
|
101 |
def setUp(self): |
|
8941
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8694
diff
changeset
|
102 |
parser = htmlparser.HTMLValidator() |
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8694
diff
changeset
|
103 |
# disable cleanup that would remove doctype |
7b26fe71404f
drop xhtml content-type support (closes #2065651)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
8694
diff
changeset
|
104 |
parser.preprocess_data = lambda data: data |
0 | 105 |
self.page_info = parser.parse_string(HTML_PAGE2) |
106 |
||
107 |
def test_source1(self): |
|
108 |
"""make sure source is stored correctly""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
109 |
self.assertEqual(self.page_info.source, HTML_PAGE2) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
110 |
|
0 | 111 |
def test_source2(self): |
112 |
"""make sure source is stored correctly - raise exception""" |
|
113 |
parser = htmlparser.DTDValidator() |
|
114 |
self.assertRaises(AssertionError, parser.parse_string, HTML_PAGE_ERROR) |
|
115 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
116 |
|
0 | 117 |
def test_has_title_no_level(self): |
118 |
"""tests h? tags information""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
119 |
self.assertEqual(self.page_info.has_title('Test'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
120 |
self.assertEqual(self.page_info.has_title('Test '), False) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
121 |
self.assertEqual(self.page_info.has_title('Tes'), False) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
122 |
self.assertEqual(self.page_info.has_title('Hello world !'), True) |
0 | 123 |
|
124 |
def test_has_title_level(self): |
|
125 |
"""tests h? tags information""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
126 |
self.assertEqual(self.page_info.has_title('Test', level = 1), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
127 |
self.assertEqual(self.page_info.has_title('Test', level = 2), False) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
128 |
self.assertEqual(self.page_info.has_title('Test', level = 3), False) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
129 |
self.assertEqual(self.page_info.has_title('Test', level = 4), False) |
0 | 130 |
self.assertRaises(IndexError, self.page_info.has_title, 'Test', level = 5) |
131 |
||
132 |
def test_has_title_regexp_no_level(self): |
|
133 |
"""tests has_title_regexp() with no particular level specified""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
134 |
self.assertEqual(self.page_info.has_title_regexp('h[23] title'), True) |
0 | 135 |
|
136 |
def test_has_title_regexp_level(self): |
|
137 |
"""tests has_title_regexp() with a particular level specified""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
138 |
self.assertEqual(self.page_info.has_title_regexp('h[23] title', 2), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
139 |
self.assertEqual(self.page_info.has_title_regexp('h[23] title', 3), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
140 |
self.assertEqual(self.page_info.has_title_regexp('h[23] title', 4), False) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
141 |
|
0 | 142 |
def test_appears(self): |
143 |
"""tests PageInfo.appears()""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
144 |
self.assertEqual(self.page_info.appears('CW'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
145 |
self.assertEqual(self.page_info.appears('Logilab'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
146 |
self.assertEqual(self.page_info.appears('Logilab introduces'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
147 |
self.assertEqual(self.page_info.appears('H2 title'), False) |
0 | 148 |
|
149 |
def test_has_link(self): |
|
150 |
"""tests has_link()""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
151 |
self.assertEqual(self.page_info.has_link('Logilab'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
152 |
self.assertEqual(self.page_info.has_link('logilab'), False) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
153 |
self.assertEqual(self.page_info.has_link('Logilab', 'http://www.logilab.org'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
154 |
self.assertEqual(self.page_info.has_link('Logilab', 'http://www.google.com'), False) |
0 | 155 |
|
156 |
def test_has_link_regexp(self): |
|
157 |
"""test has_link_regexp()""" |
|
6340
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
158 |
self.assertEqual(self.page_info.has_link_regexp('L[oi]gilab'), True) |
470d8e828fda
[test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
159 |
self.assertEqual(self.page_info.has_link_regexp('L[ai]gilab'), False) |
0 | 160 |
|
161 |
||
8460
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
162 |
class CWUtilitiesTC(CubicWebTC): |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
163 |
def test_temporary_permissions_eschema(self): |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
164 |
eschema = self.schema['CWUser'] |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
165 |
with self.temporary_permissions(CWUser={'read': ()}): |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
166 |
self.assertEqual(eschema.permissions['read'], ()) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
167 |
self.assertTrue(eschema.permissions['add']) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
168 |
self.assertTrue(eschema.permissions['read'], ()) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
169 |
|
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
170 |
def test_temporary_permissions_rdef(self): |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
171 |
rdef = self.schema['CWUser'].rdef('in_group') |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
172 |
with self.temporary_permissions((rdef, {'read': ()})): |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
173 |
self.assertEqual(rdef.permissions['read'], ()) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
174 |
self.assertTrue(rdef.permissions['add']) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
175 |
self.assertTrue(rdef.permissions['read'], ()) |
b1f6777fc839
[testlib] introduce temporary_permissions context manager
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6776
diff
changeset
|
176 |
|
9212
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
177 |
def test_temporary_appobjects_registered(self): |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
178 |
class AnAppobject(object): |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
179 |
__registries__ = ('hip',) |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
180 |
__regid__ = 'hop' |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
181 |
__select__ = yes() |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
182 |
registered = None |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
183 |
@classmethod |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
184 |
def __registered__(cls, reg): |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
185 |
cls.registered = reg |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
186 |
|
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
187 |
with self.temporary_appobjects(AnAppobject): |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
188 |
self.assertEqual(self.vreg['hip'], AnAppobject.registered) |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
189 |
self.assertIn(AnAppobject, self.vreg['hip']['hop']) |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
190 |
self.assertNotIn(AnAppobject, self.vreg['hip']['hop']) |
0d346a0a1451
[testlib] temporary_appobjects should call __registered__ if it exists. Closes #3064075
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8941
diff
changeset
|
191 |
|
0 | 192 |
if __name__ == '__main__': |
193 |
unittest_main() |