瀏覽代碼

Add common_fields and make the differences between common fields and default fields

Yann Weber 9 年之前
父節點
當前提交
94d4967642
共有 4 個文件被更改,包括 46 次插入60 次删除
  1. 24
    57
      EditorialModel/classtypes.py
  2. 3
    0
      EditorialModel/fields.py
  3. 3
    1
      EditorialModel/model.py
  4. 16
    2
      EditorialModel/test/test_classes.py

+ 24
- 57
EditorialModel/classtypes.py 查看文件

@@ -1,6 +1,27 @@
1 1
 # -*- coding: utf-8 -*-
2 2
 
3 3
 
4
+common_fields = {
5
+    'lodel_id': {
6
+        'fieldtype': 'pk',
7
+        'internal': 'object',
8
+    },
9
+    'classid': {
10
+        'fieldtype': 'integer',
11
+        'internal': 'object',
12
+    },
13
+    'typeid': {
14
+        'fieldtype': 'integer',
15
+        'internal': 'object',
16
+    },
17
+    'string': {
18
+        'fieldtype': 'char',
19
+        'max_length': 128,
20
+        'internal': 'object',
21
+    },
22
+}
23
+
24
+
4 25
 ## EmNature (Class)
5 26
 #
6 27
 # constant name for the nature of type hierarchy
@@ -53,25 +74,7 @@ class EmClassType(object):
53 74
                 'maxchildren': -1
54 75
             },
55 76
         },
56
-        'default_fields': {
57
-            'lodel_id': {
58
-                'fieldtype': 'pk',
59
-                'internal': 'object',
60
-            },
61
-            'classid': {
62
-                'fieldtype': 'integer',
63
-                'internal': 'object',
64
-            },
65
-            'typeid': {
66
-                'fieldtype': 'integer',
67
-                'internal': 'object',
68
-            },
69
-            'string': {
70
-                'fieldtype': 'char',
71
-                'max_length': 128,
72
-                'internal': 'object',
73
-            },
74
-        }
77
+        'default_fields':{}
75 78
     }
76 79
 
77 80
     entry = {
@@ -88,25 +91,7 @@ class EmClassType(object):
88 91
                 'maxchildren': -1
89 92
             },
90 93
         },
91
-        'default_fields': {
92
-            'lodel_id': {
93
-                'fieldtype': 'pk',
94
-                'internal': 'object',
95
-            },
96
-            'classid': {
97
-                'fieldtype': 'integer',
98
-                'internal': 'object',
99
-            },
100
-            'typeid': {
101
-                'fieldtype': 'integer',
102
-                'internal': 'object',
103
-            },
104
-            'string': {
105
-                'fieldtype': 'char',
106
-                'max_length': 128,
107
-                'internal': 'object',
108
-            },
109
-        }
94
+        'default_fields': {}
110 95
     }
111 96
 
112 97
     person = {
@@ -119,25 +104,7 @@ class EmClassType(object):
119 104
                 'maxchildren': 1
120 105
             },
121 106
         },
122
-        'default_fields': {
123
-            'lodel_id': {
124
-                'fieldtype': 'pk',
125
-                'internal': 'object',
126
-            },
127
-            'classid': {
128
-                'fieldtype': 'integer',
129
-                'internal': 'object',
130
-            },
131
-            'typeid': {
132
-                'fieldtype': 'integer',
133
-                'internal': 'object',
134
-            },
135
-            'string': {
136
-                'fieldtype': 'char',
137
-                'max_length': 128,
138
-                'internal': 'object',
139
-            },
140
-        }
107
+        'default_fields': {}
141 108
     }
142 109
     
143 110
     ## @brief return a classtype from its name

+ 3
- 0
EditorialModel/fields.py 查看文件

@@ -44,6 +44,9 @@ class EmField(EmComponent):
44 44
                 raise ValueError("The internal arguments possible values are : [False, 'object', 'automatic']")
45 45
             self.internal = internal.lower()
46 46
 
47
+        if self.internal == 'object' and name not in EditorialModel.classtypes.common_fields.keys():
48
+            raise ValueError("Only common_fields are allowed to have the argument internal='object'")
49
+
47 50
         self.rel_field_id = rel_field_id
48 51
         self.check_type('rel_field_id', (int, type(None)))
49 52
         self.icon = icon

+ 3
- 1
EditorialModel/model.py 查看文件

@@ -216,7 +216,9 @@ class Model(object):
216 216
                     break
217 217
 
218 218
         ctype = EditorialModel.classtypes.EmClassType.get(emclass.classtype)
219
-        for fname, fdatas in ctype['default_fields'].items():
219
+        default_fields = ctype['default_fields']
220
+        default_fields.update(EditorialModel.classtypes.common_fields)
221
+        for fname, fdatas in default_fields.items():
220 222
             if not (fname in [ f.name for f in emclass.fields() ]):
221 223
                 #Adding the field
222 224
                 fdatas['name'] = fname

+ 16
- 2
EditorialModel/test/test_classes.py 查看文件

@@ -8,15 +8,14 @@ import logging
8 8
 from unittest import TestCase
9 9
 import unittest
10 10
 
11
+import EditorialModel
11 12
 from EditorialModel.classes import EmClass
12 13
 from EditorialModel.classtypes import EmClassType
13 14
 from EditorialModel.fieldgroups import EmFieldGroup
14 15
 from EditorialModel.types import EmType
15 16
 from EditorialModel.fields import EmField
16
-#import EditorialModel.fieldtypes as fieldTypes
17 17
 from EditorialModel.model import Model
18 18
 from EditorialModel.backend.json_backend import EmBackendJson
19
-#from EditorialModel.migrationhandler.django import DjangoMigrationHandler
20 19
 from EditorialModel.migrationhandler.dummy import DummyMigrationHandler
21 20
 
22 21
 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Lodel.settings")
@@ -69,6 +68,21 @@ class TestEmClassCreation(ClassesTestCase):
69 68
         # the classtype should have the name of the EmClassType
70 69
         test_class = EM_TEST_OBJECT.component(test_class.uid)
71 70
         self.assertEqual(test_class.classtype, EmClassType.entity['name'])
71
+    
72
+    def test_default_fields(self):
73
+        """ Test if the default + common_fields are created when an EmClass is created """
74
+        classtype = EmClassType.entity['name']
75
+        test_class = EM_TEST_OBJECT.create_component(EmClass.__name__, {'name': 'testdefaultfieldclass', 'classtype': classtype})
76
+        ctype = EditorialModel.classtypes.EmClassType.get(classtype)
77
+        default_fields = ctype['default_fields']
78
+        default_fields.update(EditorialModel.classtypes.common_fields)
79
+        
80
+        fgs = test_class.fieldgroups()
81
+        self.assertEqual(len(fgs), 1, "Only one fieldgroup should be created when an EmClass is created")
82
+        self.assertEqual(fgs[0].name, EmClass.default_fieldgroup)
83
+        fnames = [ f.name for f in fgs[0].fields() ]
84
+        self.assertEqual(sorted(fnames), sorted(list(default_fields.keys())))
85
+            
72 86
 
73 87
 
74 88
 # Testing class deletion (and associated table drop)

Loading…
取消
儲存