server/test/unittest_undo.py
author Rémi Cardona <remi.cardona@logilab.fr>
Wed, 19 Nov 2014 12:13:32 +0100
changeset 10090 0aebb1c0f849
parent 10000 4352b7ccde04
child 10207 5ec5d17b5e5b
permissions -rw-r--r--
[utils] Add a '_cwtracehtml' GET parameter to trace self._cw.w() calls (closes #4601327) The core of this patch is in UStringIO.write(). When tracing is enabled, write() doesn't just append the 'value' argument to the underlying list. Instead, a stack trace is recorded and a special HTML "source" is formatted. The output with tracing enabled is an HTML page, with the original HTML escaped, and made clickable to show the stack trace when the write() call was done. This allows answering the recurring question: "who wrote this tag here?!"
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:
9996
65bb21409292 [server] hold connection to the db in tx_actions
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
    78
            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
    79
            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
    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_info, '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.transaction_actions, 'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    84
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    85
                              cnx.undo_transaction, 'hop')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    86
            txinfo = cnx.transaction_info(self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    87
            self.assertTrue(txinfo.datetime)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    88
            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
    89
            self.assertEqual(txinfo.user().login, 'admin')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    90
            actions = txinfo.actions_list()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    91
            self.assertEqual(len(actions), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    92
            actions = txinfo.actions_list(public=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    93
            self.assertEqual(len(actions), 6)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    94
            a1 = actions[0]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    95
            self.assertEqual(a1.action, 'C')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    96
            self.assertEqual(a1.eid, self.totoeid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    97
            self.assertEqual(a1.etype,'CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    98
            self.assertEqual(a1.ertype, 'CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
    99
            self.assertEqual(a1.changes, None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   100
            self.assertEqual(a1.public, True)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   101
            self.assertEqual(a1.order, 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   102
            a4 = actions[3]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   103
            self.assertEqual(a4.action, 'A')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   104
            self.assertEqual(a4.rtype, 'in_group')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   105
            self.assertEqual(a4.ertype, 'in_group')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   106
            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
   107
            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
   108
            self.assertEqual(a4.order, 4)
9948
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   109
            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
   110
                a = actions[i]
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   111
                self.assertEqual(a.action, 'A')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   112
                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
   113
                self.assertEqual(a.rtype, rtype)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   114
                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
   115
            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
   116
                             set(('in_state', 'created_by')))
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   117
            for i in (4, 5):
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   118
                a = actions[i]
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   119
                self.assertEqual(a.action, 'A')
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   120
                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
   121
                self.assertEqual(a.order, i+1)
798ab1216523 [test] Make test_undo_api less random
Julien Cristau <julien.cristau@logilab.fr>
parents: 9786
diff changeset
   122
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   123
            # test undoable_transactions
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   124
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   125
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   126
            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
   127
            # test transaction_info / undoable_transactions security
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   128
        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
   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_info, 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.transaction_actions, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   133
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   134
                              cnx.undo_transaction, self.txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   135
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   136
            self.assertEqual(len(txs), 0)
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   137
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   138
    def test_undoable_transactions(self):
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   139
        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
   140
            toto = self.toto(cnx)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   141
            e = cnx.create_entity('EmailAddress',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   142
                                  address=u'toto@logilab.org',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   143
                                  reverse_use_email=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   144
            txuuid1 = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   145
            toto.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   146
            txuuid2 = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   147
            undoable_transactions = cnx.undoable_transactions
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   148
            txs = undoable_transactions(action='D')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   149
            self.assertEqual(len(txs), 1, txs)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   150
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   151
            txs = undoable_transactions(action='C')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   152
            self.assertEqual(len(txs), 2, txs)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   153
            self.assertEqual(txs[0].uuid, txuuid1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   154
            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
   155
            txs = undoable_transactions(eid=toto.eid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   156
            self.assertEqual(len(txs), 3)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   157
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   158
            self.assertEqual(txs[1].uuid, txuuid1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   159
            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
   160
            txs = undoable_transactions(etype='CWUser')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   161
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   162
            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
   163
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   164
            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
   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
            self.assertEqual(len(txs), 0)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   167
            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
   168
                                        public=False)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   169
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   170
            self.assertEqual(txs[0].uuid, txuuid2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   171
            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
   172
            self.assertEqual(len(txs), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   173
            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
   174
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   175
    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
   176
        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
   177
            toto = self.toto(cnx)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   178
            e = cnx.create_entity('EmailAddress',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   179
                                  address=u'toto@logilab.org',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   180
                                  reverse_use_email=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   181
            # entity with inlined relation
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   182
            p = cnx.create_entity('CWProperty',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   183
                                  pkey=u'ui.default-text-format',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   184
                                  value=u'text/rest',
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   185
                                  for_user=toto)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   186
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   187
            txs = cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   188
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   189
            toto.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   190
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   191
            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
   192
            self.assertEqual(len(actions), 1)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   193
            toto.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   194
            e.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   195
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   196
            undotxuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   197
            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
   198
            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
   199
            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
   200
            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
   201
            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
   202
            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
   203
            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
   204
                              [('ui.default-text-format', 'text/rest')])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   205
            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
   206
                              ['users'])
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.related('is', entities=True)],
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
            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
   210
                              ['CWUser'])
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   211
            # 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
   212
            # transaction should be removed
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   213
            txs = self.cnx.undoable_transactions()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   214
            self.assertEqual(len(txs), 2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   215
            self.assertRaises(NoSuchTransaction,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   216
                              self.cnx.transaction_info, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   217
        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
   218
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   219
                self.check_transaction_deleted(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   220
            # 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
   221
        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
   222
            pass
4913
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   223
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   224
    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
   225
        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
   226
            # 'Personne fiche Card with' '??' cardinality
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   227
            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
   228
            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
   229
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   230
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   231
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   232
            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
   233
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   234
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   235
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   236
                "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
   237
                "%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
   238
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   239
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   240
            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
   241
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   242
    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
   243
        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
   244
            # 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
   245
            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
   246
            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
   247
            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
   248
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   249
            self.toto(cnx).cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   250
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   251
            g.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   252
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   253
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   254
                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
   255
                "%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
   256
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   257
                cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   258
            cm.exception.translate(unicode)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   259
            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
   260
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   261
                              {'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
   262
                               '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
   263
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   264
    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
   265
        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
   266
            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
   267
            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
   268
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   269
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   270
            cnx.commit()
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': c.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 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
   273
            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
   274
        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
   275
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   276
                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
   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 * 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
   279
                    self.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   280
                        '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
   281
                    # 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
   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_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.assertFalse(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   285
                        '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
   286
                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
   287
5076
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   288
    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
   289
        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
   290
            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
   291
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   292
            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
   293
            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
   294
                                     value=u'text/html')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   295
            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
   296
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   297
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   298
                cnx.undo_transaction(txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   299
            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
   300
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   301
                             {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
   302
b0e6134b4324 [undo] basic support for undoing of entity creation / relation addition
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 4913
diff changeset
   303
    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
   304
        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
   305
            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
   306
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   307
            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
   308
            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
   309
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   310
            with self.assertRaises(ValidationError) as cm:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   311
                cnx.undo_transaction(txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   312
            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
   313
            self.assertEqual(cm.exception.errors,
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   314
                             {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
   315
        # 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
   316
        #                   [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
   317
        #                   "%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
   318
        # 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
   319
        # 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
   320
        # 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
   321
        #                   {'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
   322
        #                    '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
   323
083b4d454192 server/web api for accessing to deleted_entites
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
diff changeset
   324
    # test implicit 'replacement' of an inlined relation
5760
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   325
8265
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   326
    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
   327
        """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
   328
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   329
        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
   330
        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
   331
            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
   332
            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
   333
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   334
            p.cw_set(fiche=None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   335
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   336
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   337
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   338
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   339
            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
   340
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   341
    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
   342
        """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
   343
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   344
        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
   345
        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
   346
            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
   347
            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
   348
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   349
            p.cw_set(fiche=None)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   350
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   351
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   352
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   353
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   354
                "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
   355
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   356
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   357
            self.assertFalse(p.fiche)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   358
        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
   359
            with cnx.ensure_cnx_set:
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   360
                self.assertIsNone(cnx.system_sql(
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   361
                    '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
   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
    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
   364
        """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
   365
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   366
        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
   367
        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
   368
            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
   369
            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
   370
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   371
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   372
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   373
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   374
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   375
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   376
            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
   377
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   378
    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
   379
        """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
   380
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   381
        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
   382
        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
   383
            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
   384
            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
   385
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   386
            p.cw_set(fiche=c)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   387
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   388
            c.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   389
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   390
            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
   391
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   392
    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
   393
        """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
   394
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   395
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   396
        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
   397
            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
   398
            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
   399
            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
   400
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   401
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   402
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   403
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   404
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   405
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   406
            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
   407
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   408
    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
   409
        """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
   410
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   411
        Caution processed by `_undo_u` """
9786
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   412
        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
   413
            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
   414
            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
   415
            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
   416
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   417
            p.cw_set(fiche=c2)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   418
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   419
            c1.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   420
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   421
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   422
                "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
   423
                " 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
   424
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   425
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   426
            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
   427
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   428
    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
   429
        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
   430
            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
   431
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   432
            p.cw_set(nom=u'titi')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   433
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   434
            self.assertUndoTransaction(cnx, txuuid)
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   435
            p.cw_clear_all_caches()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   436
            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
   437
9747ab9230ad [repo, undo] Finish repository-side implementation of the undo feature (closes #893940)
Anthony Truchet <anthony.truchet@logilab.fr>
parents: 7791
diff changeset
   438
    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
   439
        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
   440
            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
   441
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   442
            p.cw_set(nom=u'titi')
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   443
            txuuid = cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   444
            p.cw_delete()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   445
            cnx.commit()
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   446
            self.assertUndoTransaction(cnx, txuuid, [
57dbd4450373 [tests/undo] use the new connection api
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents: 9020
diff changeset
   447
                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
   448
7530
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
class UndoExceptionInUnicode(CubicWebTC):
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   451
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   452
    # 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
   453
    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
   454
        u = _UndoException(u"voilĂ ")
7530
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   455
        self.assertIsInstance(unicode(u), unicode)
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   456
15178bf89fb6 [server] fix unicode conversion capability in UndoException
Julien Jehannet <julien.jehannet@logilab.fr>
parents: 7424
diff changeset
   457
5760
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   458
if __name__ == '__main__':
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   459
    from logilab.common.testlib import unittest_main
b6453e606d25 [test] miss main
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents: 5426
diff changeset
   460
    unittest_main()