No Description
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_component.py 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. import os
  2. import datetime
  3. import time
  4. import logging
  5. import json
  6. import shutil
  7. #from django.test import TestCase
  8. from django.conf import settings
  9. from unittest import TestCase
  10. import unittest
  11. from EditorialModel.classes import EmClass
  12. from EditorialModel.classtypes import EmClassType
  13. from EditorialModel.components import EmComponent, EmComponentNotExistError, EmComponentExistError
  14. import EditorialModel.fieldtypes as ftypes
  15. from EditorialModel.test.utils import *
  16. from Lodel.utils.mlstring import MlString
  17. from Database import sqlutils
  18. from Database import sqlsetup
  19. import sqlalchemy as sqla
  20. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Lodel.settings")
  21. TEST_COMPONENT_DBNAME = 'test_em_component_db.sqlite'
  22. #=#############=#
  23. # TESTS SETUP #
  24. #=#############=#
  25. def setUpModule():
  26. """ This function is run once for this module.
  27. The goal are to overwrtie Db configs, and prepare objects for test_case initialisation
  28. """
  29. #Overwritting db confs to make tests
  30. """
  31. settings.LODEL2SQLWRAPPER['db'] = {
  32. 'default': {
  33. 'ENGINE': 'sqlite',
  34. 'NAME': TEST_COMPONENT_DBNAME
  35. }
  36. }
  37. """
  38. setDbConf(TEST_COMPONENT_DBNAME)
  39. #Disable logging but CRITICAL
  40. logging.basicConfig(level=logging.CRITICAL)
  41. #testDB setup
  42. tables = sqlsetup.get_schema()
  43. ttest = { 'name':'ttest',
  44. 'columns': [
  45. {"name":"uid", "type":"INTEGER", "extra":{"foreignkey":"uids.uid", "nullable":False, "primarykey":True}},
  46. {"name":"name", "type":"VARCHAR(50)", "extra":{"nullable":False, "unique":True}},
  47. {"name":"string", "type":"TEXT"},
  48. {"name":"help", "type":"TEXT"},
  49. {"name":"rank", "type":"INTEGER"},
  50. {"name":"rank_fam", "type":"VARCHAR(1)"},
  51. {"name":"date_update", "type":"DATETIME"},
  52. {"name":"date_create", "type":"DATETIME"}
  53. ]
  54. }
  55. tables.append(ttest)
  56. globals()['tables'] = tables
  57. #Creating db structure
  58. initTestDb(TEST_COMPONENT_DBNAME)
  59. setDbConf(TEST_COMPONENT_DBNAME)
  60. sqlsetup.init_db('default', False, tables)
  61. dbe = sqlutils.getEngine('default')
  62. # Insertion of testings datas
  63. conn = dbe.connect()
  64. test_table = sqla.Table(EmTestComp.table, sqlutils.meta(dbe))
  65. uids_table = sqla.Table('uids', sqlutils.meta(dbe))
  66. #Creating uid for the EmTestComp
  67. for v in ComponentTestCase.test_values:
  68. uid = v['uid']
  69. req = uids_table.insert(values={'uid':uid, 'table': EmTestComp.table })
  70. conn.execute(req)
  71. # WARNING !!! Rank has to be ordened and incremented by one for the modify_rank tests
  72. for i in range(len(ComponentTestCase.test_values)):
  73. ComponentTestCase.test_values[i]['date_create'] = datetime.datetime.utcnow()
  74. ComponentTestCase.test_values[i]['date_update'] = datetime.datetime.utcnow()
  75. ComponentTestCase.test_values[i]['rank_fam'] = '1'
  76. req = test_table.insert(values=ComponentTestCase.test_values)
  77. conn.execute(req)
  78. conn.close()
  79. saveDbState(TEST_COMPONENT_DBNAME)
  80. logging.getLogger().setLevel(logging.CRITICAL)
  81. pass
  82. def tearDownModule():
  83. cleanDb(TEST_COMPONENT_DBNAME)
  84. """
  85. try:
  86. os.unlink(TEST_COMPONENT_DBNAME)
  87. except:pass
  88. try:
  89. os.unlink(TEST_COMPONENT_DBNAME+'_bck')
  90. except:pass
  91. """
  92. #A dummy EmComponent child class use to make tests
  93. class EmTestComp(EmComponent):
  94. table = 'ttest'
  95. ranked_in = 'rank_fam'
  96. _fields = [('rank_fam', ftypes.EmField_char)]
  97. # The parent class of all other test cases for component
  98. # It defines a SetUp function and some utility functions for EmComponent tests
  99. class ComponentTestCase(TestCase):
  100. test_values = [
  101. { 'uid': 1, 'name': 'test', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}', 'rank': 0},
  102. { 'uid': 2, 'name': 'test-em_comp', 'string': '{"fr":"Super test comp"}', 'help': '{}', 'rank': 1},
  103. { 'uid': 3, 'name': 'test2', 'string': '{}', 'help': '{}', 'rank': 2},
  104. { 'uid': 42, 'name': 'foo', 'string': '{"foo":"bar"}', 'help': '{"foo":"foobar"}', 'rank': 3},
  105. { 'uid': 84, 'name': '123', 'string': '{"num":"456"}', 'help': '{"num":"4242"}', 'rank': 4},
  106. { 'uid': 1025, 'name': 'name', 'string': '{}', 'help': '{}', 'rank': 5},
  107. ]
  108. @property
  109. def tables(self):
  110. return globals()['tables']
  111. def setUp(self):
  112. self.dber = sqlutils.getEngine('default')
  113. self.test_values = self.__class__.test_values
  114. #Db RAZ
  115. #shutil.copyfile(TEST_COMPONENT_DBNAME+'_bck', globals()['component_test_dbfilename'])
  116. restoreDbState(TEST_COMPONENT_DBNAME)
  117. pass
  118. def check_equals(self, excepted_val, test_comp, check_date=True, msg=''):
  119. """ This function check that a EmTestComp has excepted_val for values """
  120. val = excepted_val
  121. self.assertIsInstance(test_comp, EmTestComp, msg)
  122. for vname in val:
  123. if vname in ['string', 'help']: #Special test for mlStrings
  124. #MlString comparison
  125. vml = json.loads(val[vname])
  126. for vn in vml:
  127. self.assertEqual(vml[vn], getattr(test_comp, vname).get(vn), msg)
  128. elif vname in ['date_create', 'date_update']:
  129. # Datetime comparison
  130. if check_date:
  131. self.assertEqualDatetime(val[vname], getattr(test_comp, vname), vname+" assertion error : "+msg)
  132. else:
  133. prop = vname
  134. self.assertEqual(getattr(test_comp, prop), val[vname], msg+"Inconsistency for "+prop+" property")
  135. pass
  136. def assertEqualDatetime(self, d1,d2, msg=""):
  137. """ Compare a date from the database with a datetime (that have microsecs, in db we dont have microsecs) """
  138. self.assertTrue( d1.year == d2.year
  139. and d1.month == d2.month
  140. and d1.day == d2.day
  141. and d1.hour == d2.hour
  142. and d1.minute == d2.minute
  143. and d1.second == d2.second, msg+" Error the two dates differs : '"+str(d1)+"' '"+str(d2)+"'")
  144. def assertEqualMlString(self, ms1, ms2, msg=""):
  145. """ Compare two MlStrings """
  146. ms1t = ms1.translations
  147. ms2t = ms2.translations
  148. self.assertEqual(set(name for name in ms1t), set(name for name in ms2t), msg+" The two MlString hasn't the same lang list")
  149. for n in ms1t:
  150. self.assertEqual(ms1t[n], ms2t[n])
  151. def run(self, result=None):
  152. super(ComponentTestCase, self).run(result)
  153. #=#############=#
  154. # TESTS BEGIN #
  155. #=#############=#
  156. #===========================#
  157. # EmComponent.__init__ #
  158. #===========================#
  159. class TestInit(ComponentTestCase):
  160. def test_component_abstract_init(self):
  161. """ Test not valid call (from EmComponent) of __init__ """
  162. with self.assertRaises(NotImplementedError):
  163. test_comp = EmComponent(2)
  164. with self.assertRaises(NotImplementedError):
  165. test_comp = EmComponent('name')
  166. pass
  167. def test_component_init_not_exist(self):
  168. """ Test __init__ with non existing objects """
  169. with self.assertRaises(EmComponentNotExistError):
  170. test_comp = EmTestComp('not_exist')
  171. # TODO this assertion depends of the EmComponent behavior when instanciate with an ID
  172. #with self.assertRaises(EmComponentNotExistError):
  173. # test_comp = EmTestComp(4096)
  174. pass
  175. def test_component_init_uid(self):
  176. """ Test __init__ with numerical ID """
  177. for val in self.test_values:
  178. test_comp = EmTestComp(val['uid'])
  179. self.assertIsInstance(test_comp, EmTestComp)
  180. self.assertEqual(test_comp.uid, val['uid'])
  181. pass
  182. def test_component_init_name(self):
  183. """ Test __init__ with names """
  184. for val in self.test_values:
  185. test_comp = EmTestComp(val['name'])
  186. self.check_equals(val, test_comp)
  187. pass
  188. def test_component_init_badargs(self):
  189. for badarg in [ print, json, [], [1,2,3,4,5,6], {'hello': 'world'} ]:
  190. with self.assertRaises(TypeError):
  191. EmTestComp(badarg)
  192. pass
  193. #=======================#
  194. # EmComponent.new_uid #
  195. #=======================#
  196. class TestUid(ComponentTestCase):
  197. def test_newuid(self):
  198. """ Test valid calls for new_uid method """
  199. for _ in range(10):
  200. nuid = EmTestComp.new_uid()
  201. conn = self.dber.connect()
  202. tuid = sqla.Table('uids', sqlutils.meta(self.dber))
  203. req = sqla.select([tuid]).where(tuid.c.uid == nuid)
  204. rep = conn.execute(req)
  205. res = rep.fetchall()
  206. self.assertEqual(len(res), 1, "Error when selecting : mutliple rows returned for 1 UID")
  207. res = res[0]
  208. self.assertEqual(res.uid, nuid, "Selected UID didn't match created uid")
  209. self.assertEqual(res.table, EmTestComp.table, "Table not match with class table : expected '"+res.table+"' but got '"+EmTestComp.table+"'")
  210. pass
  211. def test_newuid_abstract(self):
  212. """ Test not valit call for new_uid method """
  213. with self.assertRaises(NotImplementedError):
  214. EmComponent.new_uid()
  215. pass
  216. #=======================#
  217. # EmComponent.save #
  218. #=======================#
  219. class TestSave(ComponentTestCase):
  220. def _savecheck(self, test_comp, newval):
  221. """ Utility function for test_component_save_namechange """
  222. test_comp2 = EmTestComp(newval['name'])
  223. #Check if properties other than date are equals in the instance fetched from Db
  224. self.check_equals(newval, test_comp2, check_date=False)
  225. #Check if the date_update has been updated
  226. self.assertTrue(newval['date_update'] < test_comp2.date_update, "The updated date_update is more in past than its previous value : old date : '"+str(newval['date_update'])+"' new date '"+str(test_comp2.date_update)+"'")
  227. #Check if the date_create didn't change
  228. self.assertEqualDatetime(newval['date_create'], test_comp2.date_create)
  229. #Check if the instance fecthed from Db and the one used to call save have the same properties
  230. for prop in ['name', 'help', 'string', 'date_update', 'date_create', 'rank' ]:
  231. if prop in ['string', 'help']:
  232. assertion = self.assertEqualMlString
  233. elif prop == 'date_create':
  234. assertion = self.assertEqualDatetime
  235. elif prop == 'date_update':
  236. assertion = self.assertLess
  237. else:
  238. assertion = self.assertEqual
  239. assertion(getattr(test_comp, prop), getattr(test_comp2, prop), "Save don't propagate modification properly. The '"+prop+"' property hasn't the exepted value in instance fetched from Db : ")
  240. pass
  241. def test_component_save_setattr(self):
  242. """ Checking save method after different changes using setattr """
  243. val = self.test_values[0] #The row we will modify
  244. test_comp = EmTestComp(val['name'])
  245. self.check_equals(val, test_comp)
  246. newval = val.copy()
  247. time.sleep(2) # We have to sleep 2 secs here, so the update_date will be at least 2 secs more than newval['date_update']
  248. #name change
  249. newval['name'] = test_comp.name = 'newname'
  250. test_comp.save()
  251. self._savecheck(test_comp, newval)
  252. self.assertTrue(True)
  253. #help change
  254. newval['help'] = '{"fr": "help fr", "en":"help en", "es":"help es"}'
  255. test_comp.help = MlString.load(newval['help'])
  256. test_comp.save()
  257. self._savecheck(test_comp, newval)
  258. self.assertTrue(True)
  259. #string change
  260. newval['string'] = '{"fr": "string fr", "en":"string en", "es":"string es"}'
  261. test_comp.string = MlString.load(newval['string'])
  262. test_comp.save()
  263. self._savecheck(test_comp, newval)
  264. self.assertTrue(True)
  265. #no change
  266. test_comp.save()
  267. self._savecheck(test_comp, newval)
  268. self.assertTrue(True)
  269. #change all
  270. test_comp.name = newval['name'] = test_comp.name = 'newnewname'
  271. newval['help'] = '{"fr": "help fra", "en":"help eng", "es":"help esp"}'
  272. test_comp.help = MlString.load(newval['help'])
  273. newval['string'] = '{"fr": "string FR", "en":"string EN", "es":"string ES", "foolang":"foofoobar"}'
  274. test_comp.string = MlString.load(newval['string'])
  275. test_comp.save()
  276. self._savecheck(test_comp, newval)
  277. self.assertTrue(True)
  278. pass
  279. def test_component_save_illegalchanges(self):
  280. """ checking that the save method forbids some changes """
  281. val = self.test_values[1]
  282. changes = { 'date_create': datetime.datetime(1982,4,2,13,37), 'date_update': datetime.datetime(1982,4,2,22,43), 'rank': 42 }
  283. for prop in changes:
  284. test_comp = EmTestComp(val['name'])
  285. self.check_equals(val, test_comp, False)
  286. with self.assertRaises(TypeError):
  287. setattr(test_comp, prop, changes[prop])
  288. test_comp.save()
  289. test_comp2 = EmTestComp(val['name'])
  290. if prop == 'date_create':
  291. assertion = self.assertEqualDatetime
  292. elif prop == 'date_update':
  293. continue
  294. else: #rank
  295. assertion = self.assertEqual
  296. assertion(getattr(test_comp,prop), val[prop], "When using setattr the "+prop+" of a component is set : ")
  297. assertion(getattr(test_comp2, prop), val[prop], "When using setattr and save the "+prop+" of a loaded component is set : ")
  298. pass
  299. #====================#
  300. # EmComponent.create #
  301. #====================#
  302. class TestCreate(ComponentTestCase):
  303. def test_create(self):
  304. """Testing EmComponent.create()"""
  305. vals = {'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'}
  306. tc = EmTestComp.create(**vals)
  307. self.check_equals(vals, tc, "The created EmTestComp hasn't the good properties values")
  308. tcdb = EmTestComp('created1')
  309. self.check_equals(vals, tc, "When fetched from Db the created EmTestComp hasn't the good properties values")
  310. # This test assume that string and help has default values
  311. vals = { 'name': 'created2', 'rank_fam': 'f' }
  312. tc = EmTestComp.create(**vals)
  313. self.check_equals(vals, tc, "The created EmTestComp hasn't the good properties values")
  314. tcdb = EmTestComp('created1')
  315. self.check_equals(vals, tc, "When fetched from Db the created EmTestComp hasn't the good properties values")
  316. pass
  317. def test_create_badargs(self):
  318. """Testing EmComponent.create() with bad arguments"""
  319. with self.assertRaises(TypeError, msg="But given a function as argument"):
  320. tc = EmTestComp.create(print)
  321. with self.assertRaises(TypeError, msg="But values contains date_create and date_update"):
  322. vals = { 'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en" :"help test", "fr":"test help"}', 'rank': 6, 'date_create': 0 , 'date_update': 0 }
  323. tc = EmTestComp.create(**vals)
  324. with self.assertRaises(TypeError, msg="But no name was given"):
  325. vals = { 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en" :"help test", "fr":"test help"}', 'rank': 6, 'date_create': 0 , 'date_update': 0 }
  326. tc = EmTestComp.create(**vals)
  327. with self.assertRaises(TypeError, msg="But no rank_fam was given"):
  328. vals = { 'name': 'created1', 'string': '{"fr":"testcomp"}', 'help': '{"en" :"help test", "fr":"test help"}', 'rank': 6, 'date_create': 0 , 'date_update': 0 }
  329. tc = EmTestComp.create(**vals)
  330. with self.assertRaises(TypeError, msg="But invalid keyword argument given"):
  331. vals = {'invalid': 42, 'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'}
  332. tc = EmTestComp.create(**vals)
  333. pass
  334. def test_create_existing_failure(self):
  335. """ Testing that create fails when trying to create an EmComponent with an existing name but different properties """
  336. vals = {'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'}
  337. tc = EmTestComp.create(**vals)
  338. with self.assertRaises(EmComponentExistError, msg="Should raise because attribute differs for a same name"):
  339. vals['rank_fam'] = 'e'
  340. EmTestComp.create(**vals)
  341. pass
  342. def test_create_existing(self):
  343. """ Testing that create dont fails when trying to create twice the same EmComponent """
  344. vals = {'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'}
  345. tc = EmTestComp.create(**vals)
  346. try:
  347. tc2 = EmTestComp.create(**vals)
  348. except EmComponentExistError as e:
  349. self.fail("create raises but should return the existing EmComponent instance instead")
  350. self.assertEqual(tc.uid, tc2.uid, "Created twice the same EmComponent")
  351. pass
  352. #====================#
  353. # EmComponent.delete #
  354. #====================#
  355. class TestDelete(ComponentTestCase):
  356. def test_delete(self):
  357. """ Create and delete TestComponent """
  358. vals = [
  359. {'name': 'created1', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'},
  360. {'name': 'created2', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'},
  361. {'name': 'created3', 'rank_fam': 'f', 'string': '{"fr":"testcomp"}', 'help': '{"en":"help test", "fr":"test help"}'},
  362. ]
  363. tcomps = []
  364. for val in vals:
  365. tcomps.append(EmTestComp.create(**val))
  366. failmsg = "This component should be deleted"
  367. for i,tcv in enumerate(vals):
  368. tc = EmTestComp(tcv['name'])
  369. tc.delete()
  370. with self.assertRaises(EmComponentNotExistError, msg = failmsg):
  371. tc2 = EmTestComp(tcv['name'])
  372. with self.assertRaises(EmComponentNotExistError, msg = failmsg):
  373. tmp = tc.uid
  374. with self.assertRaises(EmComponentNotExistError, msg = failmsg):
  375. tmp = tc.__str__()
  376. with self.assertRaises(EmComponentNotExistError, msg = failmsg):
  377. tmp = tc.name
  378. with self.assertRaises(EmComponentNotExistError, msg = failmsg):
  379. print(tc)
  380. for j in range(i+1,len(vals)):
  381. try:
  382. tc = EmTestComp(vals[j]['name'])
  383. except EmComponentNotExistError:
  384. self.fail('EmComponent should not be deleted')
  385. self.assertTrue(True)
  386. pass
  387. #===========================#
  388. # EmComponent.modify_rank #
  389. #===========================#
  390. class TestModifyRank(ComponentTestCase):
  391. def dump_ranks(self):
  392. names = [ v['name'] for v in self.test_values ]
  393. ranks=""
  394. for i in range(len(names)):
  395. tc = EmTestComp(names[i])
  396. ranks += " "+str(tc.rank)
  397. return ranks
  398. def test_modify_rank_absolute(self):
  399. """ Testing modify_rank with absolute rank """
  400. names = [ v['name'] for v in self.test_values ]
  401. nmax = len(names)-1
  402. #moving first to 3
  403. #-----------------
  404. test_comp = EmTestComp(names[0])
  405. test_comp.modify_rank(3, '=')
  406. self.assertEqual(test_comp.rank, 3, "Called modify_rank(3, '=') but rank is '"+str(test_comp.rank)+"'. Ranks dump : "+self.dump_ranks())
  407. tc2 = EmTestComp(names[0])
  408. self.assertEqual(tc2.rank, 3, "Called modify_rank(3, '=') but rank is '"+str(tc2.rank)+"'. Ranks dump : "+self.dump_ranks())
  409. for i in range(1,4):
  410. test_comp = EmTestComp(names[i])
  411. self.assertEqual(test_comp.rank, i-1, "Excepted rank was '"+str(i-1)+"' but found '"+str(test_comp.rank)+"'. Ranks dump : "+self.dump_ranks())
  412. for i in [4,nmax]:
  413. test_comp = EmTestComp(names[i])
  414. self.assertEqual(test_comp.rank, i, "Rank wasn't excepted to change, but : previous value was '"+str(i)+"' current value is '"+str(test_comp.rank)+"'. Ranks dump : "+self.dump_ranks())
  415. #undoing last rank change
  416. test_comp = EmTestComp(names[0])
  417. test_comp.modify_rank(0,'=')
  418. self.assertEqual(test_comp.rank, 0)
  419. tc2 = EmTestComp(names[0])
  420. self.assertEqual(tc2.rank, 0)
  421. #moving last to 2
  422. #----------------
  423. test_comp = EmTestComp(names[nmax])
  424. test_comp.modify_rank(2, '=')
  425. for i in [0,1]:
  426. test_comp = EmTestComp(names[i])
  427. self.assertEqual(test_comp.rank, i)
  428. for i in range(3,nmax-1):
  429. test_comp = EmTestComp(names[i])
  430. self.assertEqual(test_comp.rank, i+1, "Excepted rank was '"+str(i+1)+"' but found '"+str(test_comp.rank)+"'. Ranks dump : "+self.dump_ranks())
  431. #undoing last rank change
  432. test_comp = EmTestComp(names[nmax])
  433. test_comp.modify_rank(nmax,'=')
  434. self.assertEqual(test_comp.rank, nmax)
  435. #Checking that we are in original state again
  436. for i,name in enumerate(names):
  437. test_comp = EmTestComp(name)
  438. self.assertEqual(test_comp.rank, i, "Excepted rank was '"+str(i-1)+"' but found '"+str(test_comp.rank)+"'. Ranks dump : "+self.dump_ranks())
  439. #Inverting the list
  440. #------------------
  441. for i,name in enumerate(names):
  442. test_comp = EmTestComp(name)
  443. test_comp.modify_rank(0,'=')
  444. self.assertEqual(test_comp.rank, 0)
  445. for j in range(0,i+1):
  446. test_comp = EmTestComp(names[j])
  447. self.assertEqual(test_comp.rank, i-j)
  448. for j in range(i+1,nmax+1):
  449. test_comp = EmTestComp(names[j])
  450. self.assertEqual(test_comp.rank, j)
  451. pass
  452. def test_modify_rank_relative(self):
  453. """ Testing modify_rank with relative rank modifier """
  454. names = [ v['name'] for v in self.test_values ]
  455. nmax = len(names)-1
  456. test_comp = EmTestComp(names[0])
  457. #Running modify_rank(i,'+') and the modify_rank(i,'-') for i in range(1,nmax)
  458. for i in range(1,nmax):
  459. test_comp.modify_rank(i,'+')
  460. self.assertEqual(test_comp.rank, i, "The instance (name="+names[0]+") on wich we applied the modify_rank doesn't have expected rank : expected '"+str(i)+"' but got '"+str(test_comp.rank)+"'")
  461. test_comp2 = EmTestComp(names[0])
  462. self.assertEqual(test_comp.rank, i, "The instance fetched in Db does'n't have expected rank : expected '"+str(i)+"' but got '"+str(test_comp.rank)+"'")
  463. for j in range(1,i+1):
  464. test_comp2 = EmTestComp(names[j])
  465. self.assertEqual(test_comp2.rank, j-1, self.dump_ranks())
  466. for j in range(i+1,nmax+1):
  467. test_comp2 = EmTestComp(names[j])
  468. self.assertEqual(test_comp2.rank, j, self.dump_ranks())
  469. test_comp.modify_rank(i,'-')
  470. self.assertEqual(test_comp.rank, 0, "The instance on wich we applied the modify_rank -"+str(i)+" doesn't have excepted rank : excepted '0' but got '"+str(test_comp.rank)+"'")
  471. test_comp2 = EmTestComp(names[0])
  472. self.assertEqual(test_comp.rank, 0, "The instance fetched in Db does'n't have expected rank : expected '0' but got '"+str(test_comp.rank)+"'"+self.dump_ranks())
  473. for j in range(1,nmax+1):
  474. test_comp2 = EmTestComp(names[j])
  475. self.assertEqual(test_comp2.rank, j, self.dump_ranks())
  476. test_comp = EmTestComp(names[3])
  477. test_comp.modify_rank(2,'+')
  478. self.assertEqual(test_comp.rank, 5)
  479. tc2 = EmTestComp(names[3])
  480. self.assertEqual(tc2.rank,5)
  481. for i in [4,5]:
  482. tc2 = EmTestComp(names[i])
  483. self.assertEqual(tc2.rank, i-1)
  484. for i in range(0,3):
  485. tc2 = EmTestComp(names[i])
  486. self.assertEqual(tc2.rank, i)
  487. test_comp.modify_rank(2, '-')
  488. self.assertEqual(test_comp.rank, 3)
  489. for i in range(0,6):
  490. tc2 = EmTestComp(names[i])
  491. self.assertEqual(tc2.rank, i)
  492. pass
  493. def test_modify_rank_badargs(self):
  494. """ Testing modify_rank with bad arguments """
  495. names = [ v['name'] for v in self.test_values ]
  496. tc = EmTestComp(names[3])
  497. badargs = [
  498. #Bad types
  499. (('0','+'), TypeError),
  500. ((0, 43), TypeError),
  501. ((print, '='), TypeError),
  502. ((3, print), TypeError),
  503. ((0.0, '='), TypeError),
  504. #Bad new_rank
  505. ((0,'+'), ValueError),
  506. ((0,'-'), ValueError),
  507. ((-1, '+'), ValueError),
  508. ((-1,'-'), ValueError),
  509. ((-1, '='), ValueError),
  510. ((-1,), ValueError),
  511. #Bad sign
  512. ((2, 'a'), ValueError),
  513. ((1, '=='), ValueError),
  514. ((1, '+-'), ValueError),
  515. ((1, 'Hello world !'), ValueError),
  516. #Out of bounds
  517. ((42*10**9, '+'), ValueError),
  518. ((-42*10**9, '+'), ValueError),
  519. ((len(names), '+'), ValueError),
  520. ((len(names), '-'), ValueError),
  521. ((len(names), '='), ValueError),
  522. ((4, '-'), ValueError),
  523. ((3, '+'), ValueError),
  524. ]
  525. for (args, err) in badargs:
  526. with self.assertRaises(err, msg="Bad arguments supplied : "+str(args)+" for a component at rank 3 but no error raised"):
  527. tc.modify_rank(*args)
  528. self.assertEqual(tc.rank, 3, "The function raises an error but modify the rank")
  529. pass