author | Stephanie Marcu <stephanie.marcu@logilab.fr> |
Fri, 24 Sep 2010 18:38:24 +0200 | |
branch | stable |
changeset 6344 | 0cb0d8d83e4c |
parent 6301 | d9d6bdd814ba |
child 6471 | 6e0642346f80 |
permissions | -rw-r--r-- |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
1 |
.. -*- coding: utf-8 -*- |
5266
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
2 |
|
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
3 |
Tests |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
4 |
===== |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
5 |
|
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
6 |
Unit tests |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
7 |
---------- |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
8 |
|
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
9 |
The *CubicWeb* framework provides the |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
10 |
:class:`cubicweb.devtools.testlib.CubicWebTC` test base class . |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
11 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
12 |
Tests shall be put into the mycube/test directory. Additional test |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
13 |
data shall go into mycube/test/data. |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
14 |
|
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
15 |
It is much advised to write tests concerning entities methods, |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
16 |
actions, hooks and operations, security. The |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
17 |
:class:`~cubicweb.devtools.testlib.CubicWebTC` base class has |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
18 |
convenience methods to help test all of this. |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
19 |
|
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
20 |
In the realm of views, automatic tests check that views are valid |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
21 |
XHTML. See :ref:`automatic_views_tests` for details. Since 3.9, bases |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
22 |
for web functional testing using `windmill |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
23 |
<http://www.getwindmill.com/>`_ are set. See test cases in |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
24 |
cubicweb/web/test/windmill and python wrapper in |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
25 |
cubicweb/web/test_windmill/ if you want to use this in your own cube. |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
26 |
|
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
27 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
28 |
Most unit tests need a live database to work against. This is achieved |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
29 |
by CubicWeb using automatically sqlite (bundled with Python, see |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
30 |
http://docs.python.org/library/sqlite3.html) as a backend. |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
31 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
32 |
The database is stored in the mycube/test/tmpdb, |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
33 |
mycube/test/tmpdb-template files. If it does not (yet) exists, it will |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
34 |
be built automatically when the test suit starts. |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
35 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
36 |
.. warning:: |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
37 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
38 |
Whenever the schema changes (new entities, attributes, relations) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
39 |
one must delete these two files. Changes concerned only with entity |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
40 |
or relation type properties (constraints, cardinalities, |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
41 |
permissions) and generally dealt with using the |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
42 |
`sync_schema_props_perms()` fonction of the migration environment |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
43 |
need not a database regeneration step. |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
44 |
|
6344
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
45 |
.. _hook_test: |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
46 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
47 |
Unit test by example |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
48 |
```````````````````` |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
49 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
50 |
We start with an example extracted from the keyword cube (available |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
51 |
from http://www.cubicweb.org/project/cubicweb-keyword). |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
52 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
53 |
.. sourcecode:: python |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
54 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
55 |
from cubicweb.devtools.testlib import CubicWebTC |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
56 |
from cubicweb import ValidationError |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
57 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
58 |
class ClassificationHooksTC(CubicWebTC): |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
59 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
60 |
def setup_database(self): |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
61 |
req = self.request() |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
62 |
group_etype = req.execute('Any X WHERE X name "CWGroup"').get_entity(0,0) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
63 |
c1 = req.create_entity('Classification', name=u'classif1', |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
64 |
classifies=group_etype) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
65 |
user_etype = req.execute('Any X WHERE X name "CWUser"').get_entity(0,0) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
66 |
c2 = req.create_entity('Classification', name=u'classif2', |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
67 |
classifies=user_etype) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
68 |
self.kw1 = req.create_entity('Keyword', name=u'kwgroup', included_in=c1) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
69 |
self.kw2 = req.create_entity('Keyword', name=u'kwuser', included_in=c2) |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
70 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
71 |
def test_cannot_create_cycles(self): |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
72 |
# direct obvious cycle |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
73 |
self.assertRaises(ValidationError, self.kw1.set_relations, |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
74 |
subkeyword_of=self.kw1) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
75 |
# testing indirect cycles |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
76 |
kw3 = self.execute('INSERT Keyword SK: SK name "kwgroup2", SK included_in C, ' |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
77 |
'SK subkeyword_of K WHERE C name "classif1", K eid %s' |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
78 |
% self.kw1.eid).get_entity(0,0) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
79 |
self.kw1.set_relations(subkeyword_of=kw3) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
80 |
self.assertRaises(ValidationError, self.commit) |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
81 |
|
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
82 |
The test class defines a :meth:`setup_database` method which populates the |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
83 |
database with initial data. Each test of the class runs with this |
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
84 |
pre-populated database. A commit is done automatically after the |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
85 |
:meth:`setup_database` call. You don't have to call it explicitely. |
5186
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
86 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
87 |
The test case itself checks that an Operation does it job of |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
88 |
preventing cycles amongst Keyword entities. |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
89 |
|
6344
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
90 |
`create_entity` is a useful method, which easily allows to create an |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
91 |
entity. You can link this entity to others entities, by specifying as |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
92 |
argument, the relation name, and the entity to link, as value. In the |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
93 |
above example, the `Classification` entity is linked to a `CWEtype` |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
94 |
via the relation `classifies`. Conversely, if you are creating a |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
95 |
`CWEtype` entity, you can link it to a `Classification` entity, by |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
96 |
adding `reverse_classifies` as argument. |
0cb0d8d83e4c
[book] add a link in hooks section to test, talk about create_entity in tests section
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6301
diff
changeset
|
97 |
|
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
98 |
.. note:: |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
99 |
|
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
100 |
:meth:`commit` method is not called automatically in test_XXX |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
101 |
methods. You have to call it explicitely if needed (notably to test |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
102 |
operations). It is a good practice to call :meth:`clear_all_caches` |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
103 |
on entities after a commit to avoid request cache effects. |
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
104 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
105 |
You can see an example of security tests in the |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
106 |
:ref:`adv_tuto_security`. |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
107 |
|
5266
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
108 |
It is possible to have these tests run continuously using `apycot`_. |
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
109 |
|
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
110 |
.. _apycot: http://www.logilab.org/project/apycot |
5186
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
111 |
|
2953
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
112 |
Managing connections or users |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
113 |
+++++++++++++++++++++++++++++ |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
114 |
|
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
115 |
Since unit tests are done with the SQLITE backend and this does not |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
116 |
support multiple connections at a time, you must be careful when |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
117 |
simulating security, changing users. |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
118 |
|
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
119 |
By default, tests run with a user with admin privileges. This |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
120 |
user/connection must never be closed. |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
121 |
|
5186
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
122 |
Before a self.login, one has to release the connection pool in use |
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
123 |
with a self.commit, self.rollback or self.close. |
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
124 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
125 |
The `login` method returns a connection object that can be used as a |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
126 |
context manager: |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
127 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
128 |
.. sourcecode:: python |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
129 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
130 |
with self.login('user1') as user: |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
131 |
req = user.req |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
132 |
req.execute(...) |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
133 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
134 |
On exit of the context manager, either a commit or rollback is issued, |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
135 |
which releases the connection. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
136 |
|
5186
f3c2cb460ad9
[doc] note on pytestconf, fixlets
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5150
diff
changeset
|
137 |
When one is logged in as a normal user and wants to switch back to the |
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
138 |
admin user without committing, one has to use |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
139 |
self.restore_connection(). |
2953
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
140 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
141 |
Usage with restore_connection: |
2953
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
142 |
|
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
143 |
.. sourcecode:: python |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
144 |
|
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
145 |
# execute using default admin connection |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
146 |
self.execute(...) |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
147 |
# I want to login with another user, ensure to free admin connection pool |
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
148 |
# (could have used rollback but not close here |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
149 |
# we should never close defaut admin connection) |
2953
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
150 |
self.commit() |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
151 |
cnx = self.login('user') |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
152 |
# execute using user connection |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
153 |
self.execute(...) |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
154 |
# I want to login with another user or with admin user |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
155 |
self.commit(); cnx.close() |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
156 |
# restore admin connection, never use cnx = self.login('admin'), it will return |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
157 |
# the default admin connection and one may be tempted to close it |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
158 |
self.restore_connection() |
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
159 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
160 |
.. warning:: |
2953
e5bdf98be37f
[doc] important note about tests and connections/users
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2175
diff
changeset
|
161 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
162 |
Do not use the references kept to the entities created with a |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
163 |
connection from another ! |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
164 |
|
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
165 |
Email notifications tests |
6065
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
166 |
````````````````````````` |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
167 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
168 |
When running tests potentially generated e-mails are not really sent |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
169 |
but is found in the list `MAILBOX` of module |
6301
d9d6bdd814ba
imported patch doc_test_commit.diff
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6243
diff
changeset
|
170 |
:mod:`cubicweb.devtools.testlib`. |
2172
cf8f9180e63e
delete-trailing-whitespace
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1714
diff
changeset
|
171 |
|
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
172 |
You can test your notifications by analyzing the contents of this list, which |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
173 |
contains objects with two attributes: |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
174 |
|
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
175 |
* `recipients`, the list of recipients |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
176 |
* `msg`, object email.Message |
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
177 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
178 |
Let us look at simple example from the ``blog`` cube. |
1714
a721966779be
new book layout, do not compile yet
sylvain.thenault@logilab.fr
parents:
diff
changeset
|
179 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
180 |
.. sourcecode:: python |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
181 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
182 |
from cubicweb.devtools.testlib import CubicWebTC, MAILBOX |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
183 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
184 |
class BlogTestsCubicWebTC(CubicWebTC): |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
185 |
"""test blog specific behaviours""" |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
186 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
187 |
def test_notifications(self): |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
188 |
req = self.request() |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
189 |
cubicweb_blog = req.create_entity('Blog', title=u'cubicweb', |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
190 |
description=u'cubicweb is beautiful') |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
191 |
blog_entry_1 = req.create_entity('BlogEntry', title=u'hop', |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
192 |
content=u'cubicweb hop') |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
193 |
blog_entry_1.set_relations(entry_of=cubicweb_blog) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
194 |
blog_entry_2 = req.create_entity('BlogEntry', title=u'yes', |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
195 |
content=u'cubicweb yes') |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
196 |
blog_entry_2.set_relations(entry_of=cubicweb_blog) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
197 |
self.assertEquals(len(MAILBOX), 0) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
198 |
self.commit() |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
199 |
self.assertEquals(len(MAILBOX), 2) |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
200 |
mail = MAILBOX[0] |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
201 |
self.assertEquals(mail.subject, '[data] hop') |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
202 |
mail = MAILBOX[1] |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
203 |
self.assertEquals(mail.subject, '[data] yes') |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
204 |
|
6243
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
205 |
Visible actions tests |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
206 |
````````````````````` |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
207 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
208 |
It is easy to write unit tests to test actions which are visible to |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
209 |
user or to a category of users. Let's take an example in the |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
210 |
`conference cube`_. |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
211 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
212 |
.. _`conference cube`: http://www.cubicweb.org/project/cubicweb-conference |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
213 |
.. sourcecode:: python |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
214 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
215 |
class ConferenceActionsTC(CubicWebTC): |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
216 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
217 |
def setup_database(self): |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
218 |
self.conf = self.create_entity('Conference', |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
219 |
title=u'my conf', |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
220 |
url_id=u'conf', |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
221 |
start_on=date(2010, 1, 27), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
222 |
end_on = date(2010, 1, 29), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
223 |
call_open=True, |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
224 |
reverse_is_chair_at=chair, |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
225 |
reverse_is_reviewer_at=reviewer) |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
226 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
227 |
def test_admin(self): |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
228 |
req = self.request() |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
229 |
rset = req.execute('Any C WHERE C is Conference') |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
230 |
self.assertListEquals(self.pactions(req, rset), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
231 |
[('workflow', workflow.WorkflowActions), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
232 |
('edit', confactions.ModifyAction), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
233 |
('managepermission', actions.ManagePermissionsAction), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
234 |
('addrelated', actions.AddRelatedActions), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
235 |
('delete', actions.DeleteAction), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
236 |
('generate_badge_action', badges.GenerateBadgeAction), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
237 |
('addtalkinconf', confactions.AddTalkInConferenceAction) |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
238 |
]) |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
239 |
self.assertListEquals(self.action_submenu(req, rset, 'addrelated'), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
240 |
[(u'add Track in_conf Conference object', |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
241 |
u'http://testing.fr/cubicweb/add/Track' |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
242 |
u'?__linkto=in_conf%%3A%(conf)s%%3Asubject&' |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
243 |
u'__redirectpath=conference%%2Fconf&' |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
244 |
u'__redirectvid=' % {'conf': self.conf.eid}), |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
245 |
]) |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
246 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
247 |
You just have to execute a rql query corresponding to the view you want to test, |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
248 |
and to compare the result of |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
249 |
:meth:`~cubicweb.devtools.testlib.CubicWebTC.pactions` with the list of actions |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
250 |
that must be visible in the interface. This is a list of tuples. The first |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
251 |
element is the action's `__regid__`, the second the action's class. |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
252 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
253 |
To test actions in submenu, you just have to test the result of |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
254 |
:meth:`~cubicweb.devtools.testlib.CubicWebTC.action_submenu` method. The last |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
255 |
parameter of the method is the action's category. The result is a list of |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
256 |
tuples. The first element is the action's title, and the second element the |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
257 |
action's url. |
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
258 |
|
c0ee416040fa
[book - #1251780] add a section to explain how to write tests to test which actions are visible
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6242
diff
changeset
|
259 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
260 |
.. _automatic_views_tests: |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
261 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
262 |
Automatic views testing |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
263 |
----------------------- |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
264 |
|
6242
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
265 |
This is done automatically with the :class:`cubicweb.devtools.testlib.AutomaticWebTest` |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
266 |
class. At cube creation time, the mycube/test/test_mycube.py file |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
267 |
contains such a test. The code here has to be uncommented to be |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
268 |
usable, without further modification. |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
269 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
270 |
The ``auto_populate`` method uses a smart algorithm to create |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
271 |
pseudo-random data in the database, thus enabling the views to be |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
272 |
invoked and tested. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
273 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
274 |
Depending on the schema, hooks and operations constraints, it is not |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
275 |
always possible for the automatic auto_populate to proceed. |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
276 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
277 |
It is possible of course to completely redefine auto_populate. A |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
278 |
lighter solution is to give hints (fill some class attributes) about |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
279 |
what entities and relations have to be skipped by the auto_populate |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
280 |
mechanism. These are: |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
281 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
282 |
* `no_auto_populate`, may contain a list of entity types to skip |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
283 |
* `ignored_relations`, may contain a list of relation types to skip |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
284 |
* `application_rql`, may contain a list of rql expressions that |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
285 |
auto_populate cannot guess by itself; these must yield resultsets |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
286 |
against which views may be selected. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
287 |
|
6242
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
288 |
.. warning:: |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
289 |
|
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
290 |
Take care to not let the imported `AutomaticWebTest` in your test module |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
291 |
namespace, else both your subclass *and* this parent class will be run. |
d9ebb391782c
[book - #1251260] add a warning in automatic test when user redefine the base class
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
6167
diff
changeset
|
292 |
|
6167
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
293 |
Testing on a real-life database |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
294 |
------------------------------- |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
295 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
296 |
The ``CubicWebTC`` class uses the `cubicweb.devtools.ApptestConfiguration` |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
297 |
configuration class to setup its testing environment (database driver, |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
298 |
user password, application home, and so on). The `cubicweb.devtools` |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
299 |
module also provides a `RealDatabaseConfiguration` |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
300 |
class that will read a regular cubicweb sources file to fetch all |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
301 |
this information but will also prevent the database to be initalized |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
302 |
and reset between tests. |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
303 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
304 |
For a test class to use a specific configuration, you have to set |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
305 |
the `_config` class attribute on the class as in: |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
306 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
307 |
.. sourcecode:: python |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
308 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
309 |
from cubicweb.devtools import RealDatabaseConfiguration |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
310 |
from cubicweb.devtools.testlib import CubicWebTC |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
311 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
312 |
class BlogRealDatabaseTC(CubicWebTC): |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
313 |
_config = RealDatabaseConfiguration('blog', |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
314 |
sourcefile='/path/to/realdb_sources') |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
315 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
316 |
def test_blog_rss(self): |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
317 |
req = self.request() |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
318 |
rset = req.execute('Any B ORDERBY D DESC WHERE B is BlogEntry, ' |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
319 |
'B created_by U, U login "logilab", B creation_date D') |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
320 |
self.view('rss', rset) |
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
321 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
322 |
|
376e6c3d4002
[doc] add documentation on RealDatabaseConfiguration
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6065
diff
changeset
|
323 |
|
6065
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
324 |
Testing with other cubes |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
325 |
------------------------ |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
326 |
|
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
327 |
Sometimes a small component cannot be tested all by itself, so one |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
328 |
needs to specify other cubes to be used as part of the the unit test |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
329 |
suite. This is handled by the ``bootstrap_cubes`` file located under |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
330 |
``mycube\test\data``. One example from the `preview` cube:: |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
331 |
|
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
332 |
card, file, preview |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
333 |
|
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
334 |
The format is: |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
335 |
|
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
336 |
* possibly several empy lines or lines starting with ``#`` (comment lines) |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
337 |
* one line containing a coma separated list of cube names. |
eae118a84cc6
[doc/book] note about bootstrap_cubes file
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5394
diff
changeset
|
338 |
|
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
339 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
340 |
Test APIS |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
341 |
--------- |
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
342 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
343 |
Using Pytest |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
344 |
```````````` |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
345 |
|
5266
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
346 |
The `pytest` utility (shipping with `logilab-common`_, which is a |
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
347 |
mandatory dependency of CubicWeb) extends the Python unittest |
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
348 |
functionality and is the preferred way to run the CubicWeb test |
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
349 |
suites. Bare unittests also work the usual way. |
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
350 |
|
84f285d96363
[doc/book] regroup views chapters under common umbrella (in the development part) & some fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5255
diff
changeset
|
351 |
.. _logilab-common: http://www.logilab.org/project/logilab-common |
5255
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
352 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
353 |
To use it, you may: |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
354 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
355 |
* just launch `pytest` in your cube to execute all tests (it will |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
356 |
discover them automatically) |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
357 |
* launch `pytest unittest_foo.py` to execute one test file |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
358 |
* launch `pytest unittest_foo.py bar` to execute all test methods and |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
359 |
all test cases whose name contain `bar` |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
360 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
361 |
Additionally, the `-x` option tells pytest to exit at the first error |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
362 |
or failure. The `-i` option tells pytest to drop into pdb whenever an |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
363 |
exception occurs in a test. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
364 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
365 |
When the `-x` option has been used and the run stopped on a test, it |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
366 |
is possible, after having fixed the test, to relaunch pytest with the |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
367 |
`-R` option to tell it to start testing again from where it previously |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
368 |
failed. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
369 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
370 |
Using the `TestCase` base class |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
371 |
``````````````````````````````` |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
372 |
|
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
373 |
The base class of CubicWebTC is logilab.common.testlib.TestCase, which |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
374 |
provides a lot of convenient assertion methods. |
15ea2f3464a4
[doc/book] complete the unit tests chapter
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5229
diff
changeset
|
375 |
|
5229
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
376 |
.. autoclass:: logilab.common.testlib.TestCase |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
377 |
:members: |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
378 |
|
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
379 |
CubicWebTC API |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
380 |
`````````````` |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
381 |
.. autoclass:: cubicweb.devtools.testlib.CubicWebTC |
67dbd07a05f3
[doc/book] expand tesing material
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5186
diff
changeset
|
382 |
:members: |