cubicweb/server/test/unittest_undo.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Fri, 20 Jan 2017 18:17:04 +0100
changeset 11919 3a6746dfc57f
parent 11200 8ddfed7a5981
child 12146 d540defa0591
permissions -rw-r--r--
Change hooks control (deny_all_hooks_but / allow_all_hooks_but) to be more predictable Prior to this, if one execute code like: with cnx.hooks.deny_all_hooks_but('metadata'): with cnx.hooks.deny_all_hooks_but(): # mycode 'metadata' hooks will be activated anyway in the inner block, which is rather unexpected (of course in real life you only see the latest hooks control statement, the former being higher in the call stack). This is due to the underlying usage of old `enable_hook_categories` / `disable_hook_categories` methods, which were introduced much before the now official context manager based API (with `cnx.[deny|all]_all_hooks_but(...)`). To move on, this patch drop the two legacy methods, rename and privatize related internal state on the connection (`hooks_mode` becomes `_hooks_mode`, `disabled_hook_cats` and `enabled_hook_cats` become `_hooks_categories`) and reimplement the `_hooks_control` context manager to simply update them. See the added unit test for details.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
     1
# -*- coding: utf-8 -*-
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
     2
# copyright 2003-2014 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: 5104
diff changeset
     3
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     4
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     5
# This file is part of CubicWeb.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     6
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     7
# CubicWeb is free software: you can redistribute it and/or modify it under the
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     8
# terms of the GNU Lesser General Public License as published by the Free
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
     9
# Software Foundation, either version 2.1 of the License, or (at your option)
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    10
# any later version.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    11
#
5424
8ecbcbff9777 replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5421
diff changeset
    12
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT
5421
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    13
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    14
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    15
# details.
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    16
#
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    17
# You should have received a copy of the GNU Lesser General Public License along
8167de96c523 proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5104
diff changeset
    18
# with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    19
10788
416840faf119 [server/test] unicode → six.text_type
Julien Cristau <julien.cristau@logilab.fr>
parents: 10365
diff changeset
    20
from six import text_type
416840faf119 [server/test] unicode → six.text_type
Julien Cristau <julien.cristau@logilab.fr>
parents: 10365
diff changeset
    21
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    22
from cubicweb import ValidationError
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    23
from cubicweb.devtools.testlib import CubicWebTC
11200
8ddfed7a5981 [session] fix super call in Connection.__init__
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 11057
diff changeset
    24
from cubicweb.server.session import Connection
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    25
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    26
from cubicweb.server.sources.native import UndoTransactionException, _UndoException
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
    27
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    28
from cubicweb.transaction import NoSuchTransaction
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
    29
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    30
class UndoableTransactionTC(CubicWebTC):
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    31
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    32
    def setup_database(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    33
        with self.admin_access.repo_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    34
            self.totoeid = self.create_user(cnx, 'toto',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    35
                                            password='toto',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    36
                                            groups=('users',),
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    37
                                            commit=False).eid
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    38
            self.txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    39
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    40
    def toto(self, cnx):
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    41
        return cnx.entity_from_eid(self.totoeid)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    42
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    43
    def setUp(self):
11200
8ddfed7a5981 [session] fix super call in Connection.__init__
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 11057
diff changeset
    44
        # Force undo feature to be turned on
8ddfed7a5981 [session] fix super call in Connection.__init__
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 11057
diff changeset
    45
        Connection.undo_actions = property(lambda self: True, lambda self, v:None)
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    46
        super(UndoableTransactionTC, self).setUp()
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    47
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    48
    def tearDown(self):
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    49
        super(UndoableTransactionTC, self).tearDown()
11200
8ddfed7a5981 [session] fix super call in Connection.__init__
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 11057
diff changeset
    50
        del Connection.undo_actions
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    51
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    52
    def check_transaction_deleted(self, cnx, txuuid):
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
    53
        # also check transaction actions have been properly deleted
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    54
        cu = cnx.system_sql(
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
    55
            "SELECT * from tx_entity_actions WHERE tx_uuid='%s'" % txuuid)
7791
31bb51ea5485 [deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 7536
diff changeset
    56
        self.assertFalse(cu.fetchall())
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    57
        cu = cnx.system_sql(
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
    58
            "SELECT * from tx_relation_actions WHERE tx_uuid='%s'" % txuuid)
7791
31bb51ea5485 [deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 7536
diff changeset
    59
        self.assertFalse(cu.fetchall())
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
    60
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    61
    def assertUndoTransaction(self, cnx, txuuid, expected_errors=None):
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    62
        if expected_errors is None :
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    63
            expected_errors = []
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    64
        try:
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    65
            cnx.undo_transaction(txuuid)
8695
358d8bed9626 [toward-py3k] rewrite to "except AnException as exc:" (part of #2711624)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents: 8694
diff changeset
    66
        except UndoTransactionException as exn:
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    67
            errors = exn.errors
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    68
        else:
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    69
            errors = []
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    70
        self.assertEqual(errors, expected_errors)
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    71
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    72
    def test_undo_api(self):
7791
31bb51ea5485 [deprecation] fix unittest pending deprecation warnings on failIf/failUnless methods family
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 7536
diff changeset
    73
        self.assertTrue(self.txuuid)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    74
        # test transaction api
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    75
        with self.admin_access.client_cnx() as cnx:
9996
65bb21409292 [server] hold connection to the db in tx_actions
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
    76
            tx_actions = cnx.transaction_actions(self.txuuid)
65bb21409292 [server] hold connection to the db in tx_actions
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
    77
            self.assertEqual(len(tx_actions), 2, tx_actions)
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    78
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    79
                              cnx.transaction_info, 'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    80
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    81
                              cnx.transaction_actions, 'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    82
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    83
                              cnx.undo_transaction, 'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    84
            txinfo = cnx.transaction_info(self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    85
            self.assertTrue(txinfo.datetime)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    86
            self.assertEqual(txinfo.user_eid, cnx.user.eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    87
            self.assertEqual(txinfo.user().login, 'admin')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    88
            actions = txinfo.actions_list()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    89
            self.assertEqual(len(actions), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    90
            actions = txinfo.actions_list(public=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    91
            self.assertEqual(len(actions), 6)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    92
            a1 = actions[0]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    93
            self.assertEqual(a1.action, 'C')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    94
            self.assertEqual(a1.eid, self.totoeid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    95
            self.assertEqual(a1.etype,'CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    96
            self.assertEqual(a1.ertype, 'CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    97
            self.assertEqual(a1.changes, None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    98
            self.assertEqual(a1.public, True)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    99
            self.assertEqual(a1.order, 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   100
            a4 = actions[3]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   101
            self.assertEqual(a4.action, 'A')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   102
            self.assertEqual(a4.rtype, 'in_group')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   103
            self.assertEqual(a4.ertype, 'in_group')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   104
            self.assertEqual(a4.eid_from, self.totoeid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   105
            self.assertEqual(a4.eid_to, self.toto(cnx).in_group[0].eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   106
            self.assertEqual(a4.order, 4)
9948
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   107
            for i, rtype in ((1, 'owned_by'), (2, 'owned_by')):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   108
                a = actions[i]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   109
                self.assertEqual(a.action, 'A')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   110
                self.assertEqual(a.eid_from, self.totoeid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   111
                self.assertEqual(a.rtype, rtype)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   112
                self.assertEqual(a.order, i+1)
9948
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   113
            self.assertEqual(set((actions[4].rtype, actions[5].rtype)),
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   114
                             set(('in_state', 'created_by')))
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   115
            for i in (4, 5):
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   116
                a = actions[i]
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   117
                self.assertEqual(a.action, 'A')
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   118
                self.assertEqual(a.eid_from, self.totoeid)
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   119
                self.assertEqual(a.order, i+1)
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   120
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   121
            # test undoable_transactions
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   122
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   123
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   124
            self.assertEqual(txs[0].uuid, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   125
            # test transaction_info / undoable_transactions security
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   126
        with self.new_access('anon').client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   127
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   128
                              cnx.transaction_info, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   129
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   130
                              cnx.transaction_actions, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   131
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   132
                              cnx.undo_transaction, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   133
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   134
            self.assertEqual(len(txs), 0)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   135
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   136
    def test_undoable_transactions(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   137
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   138
            toto = self.toto(cnx)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   139
            e = cnx.create_entity('EmailAddress',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   140
                                  address=u'toto@logilab.org',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   141
                                  reverse_use_email=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   142
            txuuid1 = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   143
            toto.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   144
            txuuid2 = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   145
            undoable_transactions = cnx.undoable_transactions
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   146
            txs = undoable_transactions(action='D')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   147
            self.assertEqual(len(txs), 1, txs)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   148
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   149
            txs = undoable_transactions(action='C')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   150
            self.assertEqual(len(txs), 2, txs)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   151
            self.assertEqual(txs[0].uuid, txuuid1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   152
            self.assertEqual(txs[1].uuid, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   153
            txs = undoable_transactions(eid=toto.eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   154
            self.assertEqual(len(txs), 3)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   155
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   156
            self.assertEqual(txs[1].uuid, txuuid1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   157
            self.assertEqual(txs[2].uuid, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   158
            txs = undoable_transactions(etype='CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   159
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   160
            txs = undoable_transactions(etype='CWUser', action='C')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   161
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   162
            self.assertEqual(txs[0].uuid, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   163
            txs = undoable_transactions(etype='EmailAddress', action='D')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   164
            self.assertEqual(len(txs), 0)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   165
            txs = undoable_transactions(etype='EmailAddress', action='D',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   166
                                        public=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   167
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   168
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   169
            txs = undoable_transactions(eid=toto.eid, action='R', public=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   170
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   171
            self.assertEqual(txs[0].uuid, txuuid2)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   172
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   173
    def test_undo_deletion_base(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   174
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   175
            toto = self.toto(cnx)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   176
            e = cnx.create_entity('EmailAddress',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   177
                                  address=u'toto@logilab.org',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   178
                                  reverse_use_email=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   179
            # entity with inlined relation
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   180
            p = cnx.create_entity('CWProperty',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   181
                                  pkey=u'ui.default-text-format',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   182
                                  value=u'text/rest',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   183
                                  for_user=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   184
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   185
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   186
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   187
            toto.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   188
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   189
            actions = cnx.transaction_info(txuuid).actions_list()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   190
            self.assertEqual(len(actions), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   191
            toto.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   192
            e.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   193
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   194
            undotxuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   195
            self.assertEqual(undotxuuid, None) # undo not undoable
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   196
            self.assertTrue(cnx.execute('Any X WHERE X eid %(x)s', {'x': toto.eid}))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   197
            self.assertTrue(cnx.execute('Any X WHERE X eid %(x)s', {'x': e.eid}))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   198
            self.assertTrue(cnx.execute('Any X WHERE X has_text "toto@logilab"'))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   199
            self.assertEqual(toto.cw_adapt_to('IWorkflowable').state, 'activated')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   200
            self.assertEqual(toto.cw_adapt_to('IEmailable').get_email(), 'toto@logilab.org')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   201
            self.assertEqual([(p.pkey, p.value) for p in toto.reverse_for_user],
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   202
                              [('ui.default-text-format', 'text/rest')])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   203
            self.assertEqual([g.name for g in toto.in_group],
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   204
                              ['users'])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   205
            self.assertEqual([et.name for et in toto.related('is', entities=True)],
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   206
                              ['CWUser'])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   207
            self.assertEqual([et.name for et in toto.is_instance_of],
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   208
                              ['CWUser'])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   209
            # undoing shouldn't be visble in undoable transaction, and the undone
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   210
            # transaction should be removed
10260
0e61be7bff10 [server/test] kill remaining 3.19 deprecation warnings in undo tests
Julien Cristau <julien.cristau@logilab.fr>
parents: 10210
diff changeset
   211
            txs = cnx.undoable_transactions()
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   212
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   213
            self.assertRaises(NoSuchTransaction,
10260
0e61be7bff10 [server/test] kill remaining 3.19 deprecation warnings in undo tests
Julien Cristau <julien.cristau@logilab.fr>
parents: 10210
diff changeset
   214
                              cnx.transaction_info, txuuid)
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   215
        with self.admin_access.repo_cnx() as cnx:
10365
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   216
            self.check_transaction_deleted(cnx, txuuid)
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   217
            # the final test: check we can login with the previously deleted user
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   218
        with self.new_access('toto').client_cnx():
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   219
            pass
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   220
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   221
    def test_undo_deletion_integrity_1(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   222
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   223
            # 'Personne fiche Card with' '??' cardinality
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   224
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   225
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   226
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   227
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   228
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   229
            c2 = cnx.create_entity('Card', title=u'hip', content=u'hip')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   230
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   231
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   232
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   233
                "Can't restore object relation fiche to entity "
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   234
                "%s which is already linked using this relation." % p.eid])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   235
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   236
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   237
            self.assertEqual(p.fiche[0].eid, c2.eid)
10210
633d85ba9f72 [undo/test] check that the entity was restored even though the fiche relation wasn't
Julien Cristau <julien.cristau@logilab.fr>
parents: 10207
diff changeset
   238
            # we restored the card
633d85ba9f72 [undo/test] check that the entity was restored even though the fiche relation wasn't
Julien Cristau <julien.cristau@logilab.fr>
parents: 10207
diff changeset
   239
            self.assertTrue(cnx.entity_from_eid(c.eid))
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   240
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   241
    def test_undo_deletion_integrity_2(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   242
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   243
            # test validation error raised if we can't restore a required relation
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   244
            g = cnx.create_entity('CWGroup', name=u'staff')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   245
            cnx.execute('DELETE U in_group G WHERE U eid %(x)s', {'x': self.totoeid})
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   246
            self.toto(cnx).cw_set(in_group=g)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   247
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   248
            self.toto(cnx).cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   249
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   250
            g.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   251
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   252
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   253
                u"Can't restore relation in_group, object entity "
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   254
                "%s doesn't exist anymore." % g.eid])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   255
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   256
                cnx.commit()
10788
416840faf119 [server/test] unicode → six.text_type
Julien Cristau <julien.cristau@logilab.fr>
parents: 10365
diff changeset
   257
            cm.exception.translate(text_type)
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   258
            self.assertEqual(cm.exception.entity, self.totoeid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   259
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   260
                              {'in_group-subject': u'at least one relation in_group is '
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   261
                               'required on CWUser (%s)' % self.totoeid})
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   262
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   263
    def test_undo_creation_1(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   264
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   265
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   266
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   267
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   268
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   269
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   270
            self.assertFalse(cnx.execute('Any X WHERE X eid %(x)s', {'x': c.eid}))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   271
            self.assertFalse(cnx.execute('Any X WHERE X eid %(x)s', {'x': p.eid}))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   272
            self.assertFalse(cnx.execute('Any X,Y WHERE X fiche Y'))
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   273
        with self.admin_access.repo_cnx() as cnx:
10365
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   274
            for eid in (p.eid, c.eid):
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   275
                self.assertFalse(cnx.system_sql(
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   276
                    'SELECT * FROM entities WHERE eid=%s' % eid).fetchall())
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   277
                self.assertFalse(cnx.system_sql(
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   278
                    'SELECT 1 FROM owned_by_relation WHERE eid_from=%s' % eid).fetchall())
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   279
                # added by sql in hooks (except when using dataimport)
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   280
                self.assertFalse(cnx.system_sql(
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   281
                    'SELECT 1 FROM is_relation WHERE eid_from=%s' % eid).fetchall())
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   282
                self.assertFalse(cnx.system_sql(
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   283
                    'SELECT 1 FROM is_instance_of_relation WHERE eid_from=%s' % eid).fetchall())
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   284
            self.check_transaction_deleted(cnx, txuuid)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   285
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   286
    def test_undo_creation_integrity_1(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   287
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   288
            tutu = self.create_user(cnx, 'tutu', commit=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   289
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   290
            email = cnx.create_entity('EmailAddress', address=u'tutu@cubicweb.org')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   291
            prop = cnx.create_entity('CWProperty', pkey=u'ui.default-text-format',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   292
                                     value=u'text/html')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   293
            tutu.cw_set(use_email=email, reverse_for_user=prop)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   294
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   295
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   296
                cnx.undo_transaction(txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   297
            self.assertEqual(cm.exception.entity, tutu.eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   298
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   299
                             {None: 'some later transaction(s) touch entity, undo them first'})
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   300
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   301
    def test_undo_creation_integrity_2(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   302
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   303
            g = cnx.create_entity('CWGroup', name=u'staff')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   304
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   305
            cnx.execute('DELETE U in_group G WHERE U eid %(x)s', {'x': self.totoeid})
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   306
            self.toto(cnx).cw_set(in_group=g)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   307
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   308
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   309
                cnx.undo_transaction(txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   310
            self.assertEqual(cm.exception.entity, g.eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   311
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   312
                             {None: 'some later transaction(s) touch entity, undo them first'})
6340
470d8e828fda [test] update test to unittest2 api (still using lgc.testlib though)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5762
diff changeset
   313
        # self.assertEqual(errors,
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   314
        #                   [u"Can't restore relation in_group, object entity "
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   315
        #                   "%s doesn't exist anymore." % g.eid])
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   316
        # with self.assertRaises(ValidationError) as cm: cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   317
        # self.assertEqual(cm.exception.entity, self.totoeid)
6796
e70ca9abfc51 [unittest2] update to unittest2 assertRaises api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 6340
diff changeset
   318
        # self.assertEqual(cm.exception.errors,
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   319
        #                   {'in_group-subject': u'at least one relation in_group is '
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   320
        #                    'required on CWUser (%s)' % self.totoeid})
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   321
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   322
    # test implicit 'replacement' of an inlined relation
5760
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   323
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   324
    def test_undo_inline_rel_remove_ok(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   325
        """Undo remove relation  Personne (?) fiche (?) Card
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   326
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   327
        NB: processed by `_undo_r` as expected"""
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   328
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   329
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   330
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   331
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   332
            p.cw_set(fiche=None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   333
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   334
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   335
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   336
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   337
            self.assertEqual(p.fiche[0].eid, c.eid)
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   338
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   339
    def test_undo_inline_rel_remove_ko(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   340
        """Restore an inlined relation to a deleted entity, with an error.
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   341
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   342
        NB: processed by `_undo_r` as expected"""
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   343
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   344
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   345
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   346
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   347
            p.cw_set(fiche=None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   348
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   349
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   350
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   351
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   352
                "Can't restore relation fiche, object entity %d doesn't exist anymore." % c.eid])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   353
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   354
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   355
            self.assertFalse(p.fiche)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   356
        with self.admin_access.repo_cnx() as cnx:
10365
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   357
            self.assertIsNone(cnx.system_sql(
21461f80f348 [connection] remove ensure_cnx_set context manager uses
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 10260
diff changeset
   358
                'SELECT cw_fiche FROM cw_Personne WHERE cw_eid=%s' % p.eid).fetchall()[0][0])
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   359
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   360
    def test_undo_inline_rel_add_ok(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   361
        """Undo add relation  Personne (?) fiche (?) Card
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   362
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   363
        Caution processed by `_undo_u`, not `_undo_a` !"""
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   364
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   365
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   366
            p = cnx.create_entity('Personne', nom=u'louis')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   367
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   368
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   369
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   370
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   371
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   372
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   373
            self.assertFalse(p.fiche)
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   374
10207
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   375
    def test_undo_inline_rel_delete_ko(self):
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   376
        with self.admin_access.client_cnx() as cnx:
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   377
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   378
            txuuid = cnx.commit()
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   379
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c)
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   380
            cnx.commit()
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   381
            integrityerror = self.repo.sources_by_uri['system'].dbhelper.dbapi_module.IntegrityError
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   382
            with self.assertRaises(integrityerror):
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   383
                cnx.undo_transaction(txuuid)
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   384
5ec5d17b5e5b [undo/test] if we try to delete an entity referenced by an inline relation, we fail
Julien Cristau <julien.cristau@logilab.fr>
parents: 10000
diff changeset
   385
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   386
    def test_undo_inline_rel_add_ko(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   387
        """Undo add relation  Personne (?) fiche (?) Card
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   388
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   389
        Caution processed by `_undo_u`, not `_undo_a` !"""
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   390
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   391
            c = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   392
            p = cnx.create_entity('Personne', nom=u'louis')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   393
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   394
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   395
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   396
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   397
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   398
            self.assertUndoTransaction(cnx, txuuid)
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   399
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   400
    def test_undo_inline_rel_replace_ok(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   401
        """Undo changing relation  Personne (?) fiche (?) Card
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   402
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   403
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   404
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   405
            c1 = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   406
            c2 = cnx.create_entity('Card', title=u'hip', content=u'hip')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   407
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   408
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   409
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   410
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   411
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   412
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   413
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   414
            self.assertEqual(p.fiche[0].eid, c1.eid)
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   415
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   416
    def test_undo_inline_rel_replace_ko(self):
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   417
        """Undo changing relation  Personne (?) fiche (?) Card, with an error
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   418
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   419
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   420
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   421
            c1 = cnx.create_entity('Card', title=u'hop', content=u'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   422
            c2 = cnx.create_entity('Card', title=u'hip', content=u'hip')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   423
            p = cnx.create_entity('Personne', nom=u'louis', fiche=c1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   424
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   425
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   426
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   427
            c1.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   428
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   429
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   430
                "can't restore entity %s of type Personne, target of fiche (eid %s)"
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   431
                " does not exist any longer" % (p.eid, c1.eid)])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   432
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   433
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   434
            self.assertFalse(p.fiche)
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   435
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   436
    def test_undo_attr_update_ok(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   437
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   438
            p = cnx.create_entity('Personne', nom=u'toto')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   439
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   440
            p.cw_set(nom=u'titi')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   441
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   442
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   443
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   444
            self.assertEqual(p.nom, u'toto')
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   445
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   446
    def test_undo_attr_update_ko(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   447
        with self.admin_access.client_cnx() as cnx:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   448
            p = cnx.create_entity('Personne', nom=u'toto')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   449
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   450
            p.cw_set(nom=u'titi')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   451
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   452
            p.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   453
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   454
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   455
                u"can't restore state of entity %s, it has been deleted inbetween" % p.eid])
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   456
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   457
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   458
class UndoExceptionInUnicode(CubicWebTC):
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   459
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   460
    # problem occurs in string manipulation for python < 2.6
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   461
    def test___unicode__method(self):
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   462
        u = _UndoException(u"voilà")
10788
416840faf119 [server/test] unicode → six.text_type
Julien Cristau <julien.cristau@logilab.fr>
parents: 10365
diff changeset
   463
        self.assertIsInstance(text_type(u), text_type)
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   464
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   465
5760
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   466
if __name__ == '__main__':
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   467
    from logilab.common.testlib import unittest_main
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   468
    unittest_main()