Parcourir la source

Merge branch 't11'

Roland Haroutiounian il y a 9 ans
Parent
révision
7b3c906c51
2 fichiers modifiés avec 21 ajouts et 11 suppressions
  1. 18
    10
      EditorialModel/fields.py
  2. 3
    1
      EditorialModel/test/test_field.py

+ 18
- 10
EditorialModel/fields.py Voir le fichier

@@ -40,25 +40,33 @@ class EmField(EmComponent):
40 40
     #
41 41
     # @static
42 42
     #
43
+    # @param name str: Name of the field
44
+    # @param fieldgroup EmFieldGroup: Field group in which the field is
45
+    # @param fieldtype EmFieldType: Type of the field
46
+    # @param optional int: is the field optional ? (default=0)
47
+    # @param internal int: is the field internal ? (default=0)
48
+    # @param rel_to_type_id int: default=0
49
+    # @param rel_field_id int: default=0
50
+    # @param icon int: default=0
43 51
     # @param kwargs dict: Dictionary of the values to insert in the field record
44 52
     #
45 53
     # @throw TypeError
46 54
     # @see EmComponent::__init__()
47 55
     # @staticmethod
48 56
     @classmethod
49
-    def create(c, **kwargs):
57
+    def create(c, name, fieldgroup, fieldtype, optional=0, internal=0, rel_to_type_id=0, rel_field_id=0, icon=0):
50 58
         try:
51
-            exists = EmField(kwargs['name'])
59
+            exists = EmField(name)
52 60
         except EmComponentNotExistError:
53 61
             values = {
54
-                'name' : kwargs['name'],
55
-                'fieldgroup_id' : kwargs['fieldgroup_id'],
56
-                'fieldtype' : kwargs['fieldtype'].name,
57
-                'optional' : 1 if 'optional' in kwargs else 0,
58
-                'internal' : 1 if 'internal' in kwargs else 0,
59
-                'rel_to_type_id': 0 if 'rel_to_type_id' not in kwargs else kwargs['rel_to_type_id'],
60
-                'rel_field_id': 0 if 'rel_field_id' not in kwargs else kwargs['rel_field_id'],
61
-                'icon': 0 if 'icon' not in kwargs else kwargs['icon']
62
+                'name' : name,
63
+                'fieldgroup_id' : fieldgroup.uid,
64
+                'fieldtype' : fieldtype.name,
65
+                'optional' : optional,
66
+                'internal' : internal,
67
+                'rel_to_type_id': rel_to_type_id,
68
+                'rel_field_id': rel_field_id,
69
+                'icon': icon
62 70
             }
63 71
 
64 72
             createdField = super(EmField,c).create(**values)

+ 3
- 1
EditorialModel/test/test_field.py Voir le fichier

@@ -136,13 +136,15 @@ class TestField(FieldTestCase):
136 136
     #
137 137
     # tests the creation process of a field
138 138
     def testCreate(self):
139
+        '''
139 140
         field_values = {
140 141
             'name':'testfield1',
141 142
             'fieldgroup_id' : self.testFieldgroup.uid,
142 143
             'fieldtype' : self.testFieldType,
143 144
             'rel_to_type_id': self.testType.uid
144 145
         }
145
-        field = EmField.create(**field_values)
146
+        '''
147
+        field = EmField.create(name='testfield1', fieldgroup=self.testFieldgroup, fieldtype=self.testFieldType, rel_to_type_id=self.testType.uid)
146 148
 
147 149
         # We check that the field has been added in the em_field table
148 150
         field_records = self.get_field_records(field)

Loading…
Annuler
Enregistrer