test/data/rqlexpr_on_computedrel.py
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 10 Dec 2015 12:34:15 +0100
changeset 10960 9e64fddebc89
parent 10907 9ae707db5265
permissions -rw-r--r--
merge with 3.21.3 The change in unittest_serverctl.py is needed because of daef7ce08fea (from 3.20.11) and 3914388b2d0f (from the 3.22 branch). Due to both changes, CubicWebTC.config.repository no longer creates a new repository (and thus, a new connection). Since both DBDumpCommand and CubicWebTC.tearDown try to shutdown the repo, tearDown breaks apart. The solution is to temporarily disable ServerConfiguration's config cache. By forcing DBDumpCommand to get a new configuration object, it then gets its own Repo object, allowing tearDown and DBDumpCommand to work independently.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10554
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     1
from yams.buildobjs import ComputedRelation, EntityType, RelationDefinition
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     2
from cubicweb.schema import RRQLExpression
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     3
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     4
class Subject(EntityType):
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     5
    pass
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     6
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     7
class Object(EntityType):
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     8
    pass
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
     9
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    10
class relation(RelationDefinition):
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    11
    subject = 'Subject'
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    12
    object = 'Object'
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    13
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    14
class computed(ComputedRelation):
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    15
    rule = 'S relation O'
c39749d14c53 [test] check that we reject an rqlexpression in computed relation perms
Julien Cristau <julien.cristau@logilab.fr>
parents:
diff changeset
    16
    __permissions__ = {'read': (RRQLExpression('S is ET'),)}