server/test/unittest_undo.py
author Julien Cristau <julien.cristau@logilab.fr>
Tue, 16 Sep 2014 18:01:51 +0200
changeset 9948 798ab1216523
parent 9786 57dbd4450373
child 10000 4352b7ccde04
permissions -rw-r--r--
[test] Make test_undo_api less random The order in which hooks are run is not predictable if they have the same 'order' attribute, which is the case for SetOwnershipHook and SetInitialStateHook. So don't assume in_state will be set before created_by.
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
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    20
from cubicweb import ValidationError
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    21
from cubicweb.devtools.testlib import CubicWebTC
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    22
import cubicweb.server.session
9020
cb87e831c183 rename server.session.transaction into server.session.connection
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8812
diff changeset
    23
from cubicweb.server.session import Connection as OldConnection
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    24
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    25
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
    26
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    27
from cubicweb.transaction import NoSuchTransaction
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
    28
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    29
class UndoableTransactionTC(CubicWebTC):
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    30
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    31
    def setup_database(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    32
        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
    33
            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
    34
                                            password='toto',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    35
                                            groups=('users',),
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    36
                                            commit=False).eid
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    37
            self.txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    38
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    39
    def toto(self, cnx):
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    40
        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
    41
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    42
    def setUp(self):
9020
cb87e831c183 rename server.session.transaction into server.session.connection
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8812
diff changeset
    43
        class Connection(OldConnection):
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    44
            """Force undo feature to be turned on in all case"""
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    45
            undo_actions = property(lambda tx: True, lambda x, y:None)
9020
cb87e831c183 rename server.session.transaction into server.session.connection
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8812
diff changeset
    46
        cubicweb.server.session.Connection = Connection
8812
52af67a2f0a5 [session/transaction] move most undo support into transaction
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8695
diff changeset
    47
        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
    48
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    49
    def tearDown(self):
9020
cb87e831c183 rename server.session.transaction into server.session.connection
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents: 8812
diff changeset
    50
        cubicweb.server.session.Connection = OldConnection
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    51
        self.restore_connection()
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    52
        super(UndoableTransactionTC, self).tearDown()
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    53
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    54
    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
    55
        # 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
    56
        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
    57
            "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
    58
        self.assertFalse(cu.fetchall())
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    59
        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
    60
            "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
    61
        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
    62
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    63
    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
    64
        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
    65
            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
    66
        try:
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    67
            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
    68
        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
    69
            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
    70
        else:
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    71
            errors = []
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
    72
        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
    73
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    74
    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
    75
        self.assertTrue(self.txuuid)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
    76
        # test transaction api
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    77
        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
    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
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   211
            txs = self.cnx.undoable_transactions()
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,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   214
                              self.cnx.transaction_info, txuuid)
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:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   216
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   217
                self.check_transaction_deleted(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   218
            # 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
   219
        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
   220
            pass
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   221
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   222
    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
   223
        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
   224
            # 'Personne fiche Card with' '??' cardinality
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   225
            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
   226
            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
   227
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   228
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   229
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   230
            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
   231
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   232
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   233
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   234
                "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
   235
                "%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
   236
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   237
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   238
            self.assertEqual(p.fiche[0].eid, c2.eid)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   239
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   240
    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
   241
        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
   242
            # 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
   243
            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
   244
            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
   245
            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
   246
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   247
            self.toto(cnx).cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   248
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   249
            g.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   250
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   251
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   252
                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
   253
                "%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
   254
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   255
                cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   256
            cm.exception.translate(unicode)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   257
            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
   258
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   259
                              {'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
   260
                               '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
   261
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   262
    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
   263
        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
   264
            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
   265
            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
   266
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   267
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   268
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   269
            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
   270
            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
   271
            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
   272
        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
   273
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   274
                for eid in (p.eid, c.eid):
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   275
                    self.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   276
                        'SELECT * FROM entities WHERE eid=%s' % eid).fetchall())
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   277
                    self.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   278
                        'SELECT 1 FROM owned_by_relation WHERE eid_from=%s' % eid).fetchall())
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   279
                    # added by sql in hooks (except when using dataimport)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   280
                    self.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   281
                        'SELECT 1 FROM is_relation WHERE eid_from=%s' % eid).fetchall())
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   282
                    self.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   283
                        'SELECT 1 FROM is_instance_of_relation WHERE eid_from=%s' % eid).fetchall())
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
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:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   357
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   358
                self.assertIsNone(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   359
                    '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
   360
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   361
    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
   362
        """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
   363
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   364
        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
   365
        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
   366
            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
   367
            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
   368
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   369
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   370
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   371
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   372
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   373
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   374
            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
   375
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   376
    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
   377
        """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
   378
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   379
        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
   380
        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
   381
            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
   382
            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
   383
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   384
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   385
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   386
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   387
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   388
            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
   389
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   390
    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
   391
        """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
   392
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   393
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   394
        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
   395
            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
   396
            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
   397
            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
   398
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   399
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   400
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   401
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   402
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   403
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   404
            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
   405
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   406
    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
   407
        """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
   408
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   409
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   410
        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
   411
            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
   412
            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
   413
            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
   414
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   415
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   416
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   417
            c1.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   418
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   419
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   420
                "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
   421
                " 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
   422
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   423
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   424
            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
   425
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   426
    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
   427
        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
   428
            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
   429
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   430
            p.cw_set(nom=u'titi')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   431
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   432
            self.assertUndoTransaction(cnx, txuuid)
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.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
   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_ko(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
            p.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   443
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   444
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   445
                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
   446
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   447
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   448
class UndoExceptionInUnicode(CubicWebTC):
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   449
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   450
    # 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
   451
    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
   452
        u = _UndoException(u"voilĂ ")
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   453
        self.assertIsInstance(unicode(u), unicode)
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   454
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   455
5760
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   456
if __name__ == '__main__':
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   457
    from logilab.common.testlib import unittest_main
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   458
    unittest_main()