cubicweb/server/test/datacomputed/schema.py
changeset 11057 0b59724cb3f2
parent 10799 ec97974b9010
equal deleted inserted replaced
11052:058bb3dc685f 11057:0b59724cb3f2
       
     1 # copyright 2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
       
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     3 #
       
     4 # This file is part of CubicWeb.
       
     5 #
       
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
       
     7 # terms of the GNU Lesser General Public License as published by the Free
       
     8 # Software Foundation, either version 2.1 of the License, or (at your option)
       
     9 # any later version.
       
    10 #
       
    11 # CubicWeb is distributed in the hope that it will be useful, but WITHOUT
       
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
       
    13 # FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
       
    14 # details.
       
    15 #
       
    16 # You should have received a copy of the GNU Lesser General Public License along
       
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
       
    18 
       
    19 from yams.buildobjs import EntityType, RelationDefinition, ComputedRelation, Int, Float
       
    20 
       
    21 
       
    22 class Employee(EntityType):
       
    23     pass
       
    24 
       
    25 
       
    26 class employees(RelationDefinition):
       
    27     subject = 'Company'
       
    28     object = 'Employee'
       
    29 
       
    30 
       
    31 class associates(RelationDefinition):
       
    32     subject = 'Company'
       
    33     object = 'Employee'
       
    34 
       
    35 
       
    36 class Company(EntityType):
       
    37     score100 = Float(formula='Any AVG(NN) WHERE X employees E, N concerns E, N note100 NN')
       
    38 
       
    39 
       
    40 class Note(EntityType):
       
    41     note = Int()
       
    42     note20 = Int(formula='Any N*20 WHERE X note N')
       
    43     note100 = Int(formula='Any N*20 WHERE X note N')
       
    44 
       
    45 
       
    46 class concerns(RelationDefinition):
       
    47     subject = 'Note'
       
    48     object = 'Employee'
       
    49 
       
    50 
       
    51 class notes(ComputedRelation):
       
    52     rule = 'S employees E, O concerns E'
       
    53 
       
    54 
       
    55 class whatever(ComputedRelation):
       
    56     rule = 'S employees E, O concerns E'
       
    57 
       
    58 
       
    59 class to_be_renamed(ComputedRelation):
       
    60     rule = 'S employees E, O concerns E'
       
    61 
       
    62 
       
    63 class perm_changes(ComputedRelation):
       
    64     __permissions__ = {'read': ('managers', 'users')}
       
    65     rule = 'S employees E, O concerns E'