Browse Source

Implements the EmClass::linked_type() method and add 2 new property method to EmField : em_class and fieldgroup

Associated tests has been added/updated
Yann Weber 9 years ago
parent
commit
baeff1f7e6

+ 6
- 1
EditorialModel/classes.py View File

@@ -97,10 +97,15 @@ class EmClass(EmComponent):
97 97
     ## Add a new EditorialModel.types.EmType that can ben linked to this class
98 98
     # @param  em_type EditorialModel.types.EmType: type to link
99 99
     # @return success bool: done or not
100
+    # @deprecated To do this add a rel2type field to any fieldtype of this EmClass
100 101
     def link_type(self, em_type):
101 102
         pass
102 103
 
103 104
     ## Retrieve list of EditorialModel.types.EmType that are linked to this class
104 105
     #  @return types [EditorialModel.types.EmType]:
105 106
     def linked_types(self):
106
-        pass
107
+        res = list()
108
+        for field in self.fields():
109
+            if field.fieldtype_instance().name == 'rel2type':
110
+                res.append(self.model.component(field.rel_to_type_id))
111
+        return res

+ 10
- 0
EditorialModel/fields.py View File

@@ -79,6 +79,16 @@ class EmField(EmComponent):
79 79
     def fieldtypes_list():
80 80
         return [f for f in EditorialModel.fieldtypes.__all__ if f != '__init__' and f != 'generic' ]
81 81
 
82
+    ##@brief Return the EmFieldgroup this EmField belongs to
83
+    @property
84
+    def fieldgroup(self):
85
+        return self.model.component(self.fieldgroup_id)
86
+    
87
+    ## @brief Returns the EmClass this EmField belongs to
88
+    @property
89
+    def em_class(self):
90
+        return self.fieldgroup.em_class
91
+
82 92
     ## @brief Get the fieldtype instance
83 93
     # @return a fieldtype instance
84 94
     def fieldtype_instance(self):

+ 4
- 27
EditorialModel/test/test_classes.py View File

@@ -219,7 +219,6 @@ class TestEmClassFields(ClassesTestCase):
219 219
 # Creating a new EmClass should :
220 220
 # - create a table named like the created EmClass
221 221
 # - insert a new line in em_classes
222
-@unittest.skip("Not implemented yet")
223 222
 class TestEmClassLinkType(ClassesTestCase):
224 223
 
225 224
     # create a new EmClass, then test on it
@@ -228,31 +227,9 @@ class TestEmClassLinkType(ClassesTestCase):
228 227
         ClassesTestCase.setUpClass()
229 228
         test_entity = EM_TEST_OBJECT.create_component(EmClass.__name__, {'name': 'testEntity', 'classtype': EmClassType.entity['name']})
230 229
         test_entry = EM_TEST_OBJECT.create_component(EmClass.__name__, {'name': 'testEntry', 'classtype': EmClassType.entry['name']})
231
-        keywords = EM_TEST_OBJECT.create_component(EmType.__name__, {'name': 'keywords', 'class_id': test_entry.uid})
232
-        test_entity.link_type(keywords)
233 230
 
234
-    '''
231
+    def testLinkedTypes(self):
232
+        """ Test the EmClass.linked_types() method """
233
+        for field, linked_type in [ (f, EM_TEST_OBJECT.component(f.rel_to_type_id)) for f in EM_TEST_OBJECT.components(EmField) if 'rel_to_type_id' in f.__dict__]:
234
+            self.assertIn(linked_type, field.em_class.linked_types())
235 235
 
236
-    # test if a table 'testEntity_keywords' was created
237
-    # should be able to select on the created table
238
-    def test_table_classes_types(self):
239
-        """ Test if a table 'testEntity_keywords' was created """
240
-        conn = sqlutils.get_engine().connect()
241
-        a = sqlutils.meta(conn)
242
-        try:
243
-            newtable = sqla.Table('testEntity_keywords', sqlutils.meta(conn))
244
-            req = sqla.sql.select([newtable])
245
-            res = conn.execute(req)
246
-            res = res.fetchall()
247
-            conn.close()
248
-        except:
249
-            self.fail("unable to select table testEntity_keywords")
250
-        self.assertEqual(res, [])
251
-
252
-    # test if we can retrieve the linked type
253
-    def test_linked_types(self):
254
-        """ Test linked_types """
255
-        testEntity = EmClass('testEntity')
256
-        linked_types = testEntity.linked_types()
257
-        self.assertEqual(linked_types[0].name, 'keywords')
258
-    '''

+ 6
- 0
EditorialModel/test/test_field.py View File

@@ -83,3 +83,9 @@ class TestField(FieldTestCase):
83 83
             # We check that the field object is not in the EmField components list
84 84
             field_components_records = EM_TEST_OBJECT.components(EmField)
85 85
             self.assertNotIn(field, field_components_records)
86
+
87
+    def test_emclass(self):
88
+        """ Test if the EmField.em_class @property method is correct """
89
+        for field in EM_TEST_OBJECT.components(EmField):
90
+            self.assertIn(field, field.em_class.fields())
91
+            self.assertIn(field.fieldgroup, field.em_class.fieldgroups())

Loading…
Cancel
Save