Browse Source

Merge branch 't11'

Roland Haroutiounian 9 years ago
parent
commit
7b3c906c51
2 changed files with 21 additions and 11 deletions
  1. 18
    10
      EditorialModel/fields.py
  2. 3
    1
      EditorialModel/test/test_field.py

+ 18
- 10
EditorialModel/fields.py View File

40
     #
40
     #
41
     # @static
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
     # @param kwargs dict: Dictionary of the values to insert in the field record
51
     # @param kwargs dict: Dictionary of the values to insert in the field record
44
     #
52
     #
45
     # @throw TypeError
53
     # @throw TypeError
46
     # @see EmComponent::__init__()
54
     # @see EmComponent::__init__()
47
     # @staticmethod
55
     # @staticmethod
48
     @classmethod
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
         try:
58
         try:
51
-            exists = EmField(kwargs['name'])
59
+            exists = EmField(name)
52
         except EmComponentNotExistError:
60
         except EmComponentNotExistError:
53
             values = {
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
             createdField = super(EmField,c).create(**values)
72
             createdField = super(EmField,c).create(**values)

+ 3
- 1
EditorialModel/test/test_field.py View File

136
     #
136
     #
137
     # tests the creation process of a field
137
     # tests the creation process of a field
138
     def testCreate(self):
138
     def testCreate(self):
139
+        '''
139
         field_values = {
140
         field_values = {
140
             'name':'testfield1',
141
             'name':'testfield1',
141
             'fieldgroup_id' : self.testFieldgroup.uid,
142
             'fieldgroup_id' : self.testFieldgroup.uid,
142
             'fieldtype' : self.testFieldType,
143
             'fieldtype' : self.testFieldType,
143
             'rel_to_type_id': self.testType.uid
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
         # We check that the field has been added in the em_field table
149
         # We check that the field has been added in the em_field table
148
         field_records = self.get_field_records(field)
150
         field_records = self.get_field_records(field)

Loading…
Cancel
Save