暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_field.py 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. import os
  2. import logging
  3. import datetime
  4. from django.conf import settings
  5. from unittest import TestCase
  6. import unittest
  7. from EditorialModel.components import EmComponent, EmComponentNotExistError
  8. from EditorialModel.fields import EmField
  9. from EditorialModel.classes import EmClass
  10. from EditorialModel.classtypes import EmClassType
  11. from EditorialModel.types import EmType
  12. from EditorialModel.fieldgroups import EmFieldGroup
  13. from EditorialModel.fields_types import Em_Field_Type
  14. from EditorialModel.fieldtypes import *
  15. from Database.sqlsetup import SQLSetup
  16. from Database.sqlwrapper import SqlWrapper
  17. from Database.sqlquerybuilder import SqlQueryBuilder
  18. from Database import sqlutils
  19. import sqlalchemy as sqla
  20. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Lodel.settings")
  21. ## SetUpModule
  22. #
  23. # This function is called once for this module.
  24. # It is designed to overwrite the database configurations, and prepare objects for test_case initialization
  25. def setUpModule():
  26. # Overwriting the database parameters to make tests
  27. settings.LODEL2SQLWRAPPER['db'] = {
  28. 'default':{
  29. 'ENGINE': 'sqlite',
  30. 'NAME': '/tmp/lodel2_test_db.sqlite'
  31. }
  32. }
  33. logging.basicConfig(level=logging.CRITICAL)
  34. ## FieldTestCase (Class)
  35. #
  36. # The parent class of all other test cases for the fields module.
  37. # It defines a SetUp function and some utility functions for EmField tests.
  38. class FieldTestCase(TestCase):
  39. def setUp(self):
  40. sqls = SQLSetup()
  41. sqls.initDb()
  42. # Generation of the test data
  43. self.testClass = EmClass.create("testclass1",EmClassType.entity)
  44. self.testFieldType = EmField_integer()
  45. self.testFieldgroup = EmFieldGroup.create('fieldgrp1',self.testClass)
  46. self.testType = EmType.create('testtype1',self.testClass)
  47. ## Get_Field_Records (Function)
  48. #
  49. # Returns the list of fields corresponding to a given uid
  50. #
  51. # @param field EmField: EmField object
  52. # @return Number of found records
  53. def get_field_records(self,field):
  54. return self._get_field_records_Db(field)
  55. ## _Get_Field_Records_Db (Function)
  56. #
  57. # Queries the database to get the list of fields for a given uid
  58. #
  59. # @param field EmField: EmField object
  60. # @return Number of found records
  61. def _get_field_records_Db(self,field):
  62. dbe = EmComponent.getDbE()
  63. fieldtable = sqla.Table(EmField.table, sqlutils.meta(dbe))
  64. conn = dbe.connect()
  65. req = fieldtable.select().where(fieldtable.c.uid==field.uid).where(fieldtable.c.name==field.name)
  66. res = conn.execute(req).fetchall()
  67. return len(res)
  68. ## Get_table_columns (Function)
  69. #
  70. # Returns the columns list of a table
  71. #
  72. # @param table_name str: Name of the table
  73. # @return list of columns
  74. def get_table_columns(self,table_name):
  75. return self._get_table_columns_Db(table_name)
  76. ## _Get_table_columns_Db (Function)
  77. #
  78. # Queries the database to get the list of columns of a table
  79. #
  80. # @param table_name str: Name of the table
  81. # @return list of columns
  82. def _get_table_columns_Db(self, table_name):
  83. table = sqla.Table(table_name, sqlutils.meta(EmComponent.getDbE()))
  84. return table.c
  85. ## TestField (Class)
  86. #
  87. # The test class for the fields module
  88. class TestField(FieldTestCase):
  89. ## Test_create (Function)
  90. #
  91. # tests the creation process of a field
  92. def testCreate(self):
  93. '''
  94. field_values = {
  95. 'name':'testfield1',
  96. 'fieldgroup_id' : self.testFieldgroup.uid,
  97. 'fieldtype' : self.testFieldType,
  98. 'rel_to_type_id': self.testType.uid
  99. }
  100. '''
  101. field = EmField.create(name='testfield1', fieldgroup=self.testFieldgroup, fieldtype=self.testFieldType, rel_to_type_id=self.testType.uid)
  102. # We check that the field has been added in the em_field table
  103. field_records = self.get_field_records(field)
  104. self.assertGreater(field_records,0)
  105. # We check that the field has been added as a column in the corresponding table
  106. field_table_columns = self.get_table_columns(field.get_class_table())
  107. field_column_args = self.testFieldType.sqlalchemy_args()
  108. field_column_args['name']='testfield1'
  109. field_column = sqla.Column(**field_column_args)
  110. self.assertIn(field_column.name, field_table_columns)
  111. pass