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.

485 lines
18 KiB

  1. # Copyright 2019 - Today Coop IT Easy SCRLfs (<http://www.coopiteasy.be>)
  2. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
  3. import time
  4. from datetime import datetime, timedelta
  5. from odoo import exceptions, fields
  6. from odoo.exceptions import UserError, ValidationError
  7. from odoo.tests.common import TransactionCase
  8. class TestBeesdooShift(TransactionCase):
  9. def setUp(self):
  10. super(TestBeesdooShift, self).setUp()
  11. self.shift_model = self.env["beesdoo.shift.shift"]
  12. self.shift_template_model = self.env["beesdoo.shift.template"]
  13. self.attendance_sheet_model = self.env["beesdoo.shift.sheet"]
  14. self.attendance_sheet_shift_model = self.env[
  15. "beesdoo.shift.sheet.shift"
  16. ]
  17. self.shift_expected_model = self.env["beesdoo.shift.sheet.expected"]
  18. self.shift_added_model = self.env["beesdoo.shift.sheet.added"]
  19. self.pre_filled_task_type_id = self.env["ir.config_parameter"].sudo().get_param(
  20. "beesdoo_shift.pre_filled_task_type_id"
  21. )
  22. self.current_time = datetime.now()
  23. self.user_admin = self.env.ref("base.user_root")
  24. self.user_generic = self.env.ref(
  25. "beesdoo_base.beesdoo_shift_user_1_demo"
  26. )
  27. self.user_permanent = self.env.ref(
  28. "beesdoo_base.beesdoo_shift_user_2_demo"
  29. )
  30. self.setting_wizard = self.env["res.config.settings"].sudo(
  31. self.user_admin
  32. )
  33. self.worker_regular_1 = self.env.ref(
  34. "beesdoo_base.res_partner_cooperator_6_demo"
  35. )
  36. self.worker_regular_2 = self.env.ref(
  37. "beesdoo_base.res_partner_cooperator_5_demo"
  38. )
  39. self.worker_regular_3 = self.env.ref(
  40. "beesdoo_base.res_partner_cooperator_3_demo"
  41. )
  42. self.worker_regular_super_1 = self.env.ref(
  43. "beesdoo_base.res_partner_cooperator_1_demo"
  44. )
  45. self.worker_irregular_1 = self.env.ref(
  46. "beesdoo_base.res_partner_cooperator_2_demo"
  47. )
  48. self.worker_irregular_2 = self.env.ref(
  49. "beesdoo_base.res_partner_cooperator_4_demo"
  50. )
  51. self.task_type_1 = self.env.ref(
  52. "beesdoo_shift.beesdoo_shift_task_type_1_demo"
  53. )
  54. self.task_type_2 = self.env.ref(
  55. "beesdoo_shift.beesdoo_shift_task_type_2_demo"
  56. )
  57. self.task_type_3 = self.env.ref(
  58. "beesdoo_shift.beesdoo_shift_task_type_3_demo"
  59. )
  60. self.task_template_1 = self.env.ref(
  61. "beesdoo_shift.beesdoo_shift_task_template_1_demo"
  62. )
  63. self.task_template_2 = self.env.ref(
  64. "beesdoo_shift.beesdoo_shift_task_template_2_demo"
  65. )
  66. # Set time in and out of generation interval parameter
  67. self.start_in_1 = self.current_time + timedelta(seconds=2)
  68. self.end_in_1 = self.current_time + timedelta(minutes=10)
  69. self.start_in_2 = self.current_time + timedelta(minutes=9)
  70. self.end_in_2 = self.current_time + timedelta(minutes=21)
  71. self.start_out_1 = self.current_time - timedelta(minutes=50)
  72. self.end_out_1 = self.current_time - timedelta(minutes=20)
  73. self.start_out_2 = self.current_time + timedelta(minutes=40)
  74. self.end_out_2 = self.current_time + timedelta(minutes=50)
  75. self.shift_regular_regular_1 = self.shift_model.create(
  76. {
  77. "task_template_id": self.task_template_1.id,
  78. "task_type_id": self.task_type_1.id,
  79. "worker_id": self.worker_regular_1.id,
  80. "start_time": self.start_in_1,
  81. "end_time": self.end_in_1,
  82. "is_regular": True,
  83. "is_compensation": False,
  84. }
  85. )
  86. self.shift_regular_regular_2 = self.shift_model.create(
  87. {
  88. "task_type_id": self.task_type_2.id,
  89. "worker_id": self.worker_regular_2.id,
  90. "start_time": self.start_out_1,
  91. "end_time": self.end_out_1,
  92. "is_regular": True,
  93. "is_compensation": False,
  94. }
  95. )
  96. self.shift_regular_regular_replaced_1 = self.shift_model.create(
  97. {
  98. "task_template_id": self.task_template_1.id,
  99. "task_type_id": self.task_type_3.id,
  100. "worker_id": self.worker_regular_3.id,
  101. "start_time": self.start_in_1,
  102. "end_time": self.end_in_1,
  103. "is_regular": True,
  104. "is_compensation": False,
  105. "replaced_id": self.worker_regular_2.id,
  106. }
  107. )
  108. future_shift_regular = self.shift_model.create(
  109. {
  110. "task_template_id": self.task_template_2.id,
  111. "task_type_id": self.task_type_1.id,
  112. "worker_id": self.worker_regular_super_1.id,
  113. "start_time": self.start_in_2,
  114. "end_time": self.end_in_2,
  115. "is_regular": False,
  116. "is_compensation": True,
  117. }
  118. )
  119. self.shift_irregular_1 = self.shift_model.create(
  120. {
  121. "task_template_id": self.task_template_1.id,
  122. "task_type_id": self.task_type_2.id,
  123. "worker_id": self.worker_irregular_1.id,
  124. "start_time": self.start_in_1,
  125. "end_time": self.end_in_1,
  126. }
  127. )
  128. self.shift_irregular_2 = self.shift_model.create(
  129. {
  130. "task_type_id": self.task_type_3.id,
  131. "worker_id": self.worker_irregular_2.id,
  132. "start_time": self.start_out_2,
  133. "end_time": self.end_out_2,
  134. }
  135. )
  136. self.shift_empty_1 = self.shift_model.create(
  137. {
  138. "task_template_id": self.task_template_1.id,
  139. "task_type_id": self.task_type_1.id,
  140. "start_time": self.start_in_1,
  141. "end_time": self.end_in_1,
  142. }
  143. )
  144. def search_sheets(self, start_time, end_time):
  145. if (type(start_time) and type(end_time)) == datetime:
  146. return self.attendance_sheet_model.search(
  147. [("start_time", "=", start_time), ("end_time", "=", end_time)]
  148. )
  149. def test_attendance_sheet_creation(self):
  150. "Test creation of an attendance sheet with all its expected shifts"
  151. # Set generation interval setting
  152. setting_wizard_1 = self.setting_wizard.create(
  153. {
  154. "pre_filled_task_type_id": self.task_type_1.id,
  155. "attendance_sheet_generation_interval": 15,
  156. }
  157. )
  158. setting_wizard_1.execute()
  159. # Test attendance sheets creation
  160. self.attendance_sheet_model._generate_attendance_sheet()
  161. self.assertEqual(
  162. len(self.search_sheets(self.start_in_1, self.end_in_1)), 1
  163. )
  164. self.assertEqual(
  165. len(self.search_sheets(self.start_in_2, self.end_in_2)), 1
  166. )
  167. self.assertEqual(
  168. len(self.search_sheets(self.start_out_1, self.end_out_1)), 0
  169. )
  170. self.assertEqual(
  171. len(self.search_sheets(self.start_out_2, self.end_out_2)), 0
  172. )
  173. # Test expected shifts creation
  174. # Sheet 1 starts at current time + 2 secs, ends at current time + 10 min
  175. # Sheet 2 starts at current time + 9 min, ends at current time + 21 min
  176. sheet_1 = self.search_sheets(self.start_in_1, self.end_in_1)
  177. sheet_2 = self.search_sheets(self.start_in_2, self.end_in_2)
  178. self.assertTrue(sheet_1.start_time)
  179. self.assertTrue(sheet_1.end_time)
  180. # Empty shift should not be added
  181. self.assertEqual(len(sheet_1.expected_shift_ids), 3)
  182. self.assertEqual(len(sheet_1.added_shift_ids), 0)
  183. self.assertEqual(len(sheet_2.expected_shift_ids), 1)
  184. # Test consistency with actual shift for sheet 1
  185. for shift in sheet_1.expected_shift_ids:
  186. self.assertEquals(shift.worker_id, shift.task_id.worker_id)
  187. self.assertEquals(
  188. shift.replaced_id, shift.task_id.replaced_id
  189. )
  190. self.assertEqual(shift.task_type_id, shift.task_id.task_type_id)
  191. self.assertEqual(shift.super_coop_id, shift.task_id.super_coop_id)
  192. self.assertEqual(shift.working_mode, shift.task_id.working_mode)
  193. # Status should be "absent" for all shifts
  194. self.assertEquals(shift.state, "absent_2")
  195. # Empty shift should be considered in max worker number calculation
  196. self.assertEqual(sheet_1.max_worker_no, 4)
  197. # Test default values creation
  198. self.assertTrue(sheet_1.time_slot)
  199. self.assertEqual(sheet_1.day, self.start_in_1.date())
  200. self.assertEqual(sheet_1.day_abbrevation, "Lundi")
  201. self.assertEqual(sheet_1.week, "Semaine A")
  202. self.assertTrue(sheet_1.name)
  203. self.assertFalse(sheet_1.notes)
  204. self.assertFalse(sheet_1.is_annotated)
  205. def test_attendance_sheet_barcode_scan(self):
  206. """
  207. Edition of an attendance sheet
  208. with barcode scanner, as a generic user"
  209. """
  210. # Attendance sheet generation
  211. self.attendance_sheet_model.sudo(
  212. self.user_generic
  213. )._generate_attendance_sheet()
  214. sheet_1 = self.search_sheets(self.start_in_1, self.end_in_1,)
  215. sheet_1 = sheet_1.sudo(self.user_generic)
  216. """
  217. Expected workers are :
  218. worker_regular_1 (barcode : 421457731745)
  219. worker_regular_3 replaced by worker_regular_2 (barcode : 421457731744))
  220. worker_irregular_1 (barcode : 429919251493)
  221. """
  222. # Scan barcode for expected workers
  223. for barcode in [421457731745, 421457731744, 429919251493]:
  224. sheet_1.on_barcode_scanned(barcode)
  225. # Check expected shifts update
  226. for id in sheet_1.expected_shift_ids.ids:
  227. shift = sheet_1.expected_shift_ids.browse(id)
  228. self.assertEqual(shift.state, "done")
  229. """
  230. Added workers are :
  231. worker_regular_super_1 (barcode : 421457731741)
  232. worker_irregular_2 (barcode : 421457731743)
  233. """
  234. # Workararound for _onchange method
  235. # (not applying on temporary object in tests)
  236. sheet_1._origin = sheet_1
  237. # Scan barcode for added workers
  238. sheet_1.on_barcode_scanned(421457731741)
  239. self.assertEqual(len(sheet_1.added_shift_ids), 1)
  240. sheet_1.on_barcode_scanned(421457731743)
  241. # Scan an already added worker should not change anything
  242. sheet_1.on_barcode_scanned(421457731743)
  243. self.assertEqual(len(sheet_1.added_shift_ids), 2)
  244. # Check added shifts fields
  245. for id in sheet_1.added_shift_ids.ids:
  246. shift = sheet_1.added_shift_ids.browse(id)
  247. self.assertEqual(sheet_1, shift.attendance_sheet_id)
  248. self.assertEqual(shift.state, "done")
  249. self.assertEqual(
  250. shift.task_type_id,
  251. self.attendance_sheet_shift_model.pre_filled_task_type_id(),
  252. )
  253. if shift.working_mode == "regular":
  254. self.assertTrue(shift.is_compensation)
  255. else:
  256. self.assertFalse(shift.is_compensation)
  257. # Add a worker that should be replaced
  258. with self.assertRaises(UserError) as e:
  259. sheet_1.on_barcode_scanned(421457731742)
  260. # Wrong barcode
  261. with self.assertRaises(UserError) as e:
  262. sheet_1.on_barcode_scanned(101010)
  263. # Add an unsubscribed worker
  264. self.worker_regular_1.cooperative_status_ids.sr = -2
  265. self.worker_regular_1.cooperative_status_ids.sc = -2
  266. with self.assertRaises(UserError) as e:
  267. sheet_1.on_barcode_scanned(421457731745)
  268. def test_attendance_sheet_edition(self):
  269. # Attendance sheet generation
  270. self.attendance_sheet_model.sudo(
  271. self.user_generic
  272. )._generate_attendance_sheet()
  273. sheet_1 = self.search_sheets(self.start_in_1, self.end_in_1)
  274. # Expected shifts edition
  275. sheet_1.expected_shift_ids[1].state = "done"
  276. sheet_1.expected_shift_ids[2].state = "absent_1"
  277. # Added shits addition
  278. sheet_1.added_shift_ids |= sheet_1.added_shift_ids.new(
  279. {
  280. "task_type_id": self.task_type_2.id,
  281. "state": "done",
  282. "attendance_sheet_id": sheet_1.id,
  283. "worker_id": self.worker_irregular_2.id,
  284. "is_compensation": False,
  285. "is_regular": False,
  286. }
  287. )
  288. # Same task type as empty shift (should edit it on validation)
  289. sheet_1.added_shift_ids |= sheet_1.added_shift_ids.new(
  290. {
  291. "task_type_id": self.task_type_1.id,
  292. "state": "done",
  293. "attendance_sheet_id": sheet_1.id,
  294. "worker_id": self.worker_regular_super_1.id,
  295. "is_compensation": True,
  296. "is_regular": False,
  297. }
  298. )
  299. # TODO: test validation with wizard (as generic user)
  300. # class odoo.tests.common.Form(recordp, view=None)
  301. # is only available from version 12
  302. # sheet_1 = sheet_1.sudo(self.user_generic)
  303. # Validation without wizard (as admin user)
  304. sheet_1 = sheet_1.sudo(self.user_admin)
  305. # Wait necessary time for shifts to begin
  306. waiting_time = (self.start_in_1 - datetime.now()).total_seconds()
  307. if waiting_time > 0:
  308. with self.assertRaises(UserError) as e:
  309. sheet_1.validate_with_checks()
  310. self.assertIn("wait", str(e.exception))
  311. time.sleep(waiting_time)
  312. sheet_1.worker_nb_feedback = "enough"
  313. sheet_1.feedback = "Great session."
  314. sheet_1.notes = "Important information."
  315. sheet_1.validate_with_checks()
  316. with self.assertRaises(UserError) as e:
  317. sheet_1.validate_with_checks()
  318. self.assertIn("already been validated", str(e.exception))
  319. self.assertEqual(sheet_1.state, "validated")
  320. self.assertEqual(sheet_1.validated_by, self.user_admin.partner_id)
  321. self.assertTrue(sheet_1.is_annotated)
  322. self.assertFalse(sheet_1.is_read)
  323. # Check actual shifts update
  324. workers = sheet_1.expected_shift_ids.mapped(
  325. "worker_id"
  326. ) | sheet_1.added_shift_ids.mapped("worker_id")
  327. self.assertEqual(len(workers), 5)
  328. self.assertEqual(
  329. sheet_1.expected_shift_ids[0].task_id.state, "absent_2"
  330. )
  331. self.assertEqual(sheet_1.expected_shift_ids[1].task_id.state, "done")
  332. self.assertEqual(
  333. sheet_1.expected_shift_ids[2].task_id.state, "absent_1"
  334. )
  335. self.assertEqual(sheet_1.added_shift_ids[0].task_id.state, "done")
  336. self.assertEqual(sheet_1.added_shift_ids[1].task_id.state, "done")
  337. # Empty shift should have been updated
  338. self.assertEqual(
  339. sheet_1.added_shift_ids[0].task_id, self.shift_empty_1
  340. )
  341. # sheet_1.expected_shift_ids[0].worker_id
  342. # sheet_1.expected_shift_ids[2].replaced_id
  343. def test_shift_counters(self):
  344. "Test shift counters calculation and cooperative status update"
  345. status_1 = self.worker_regular_1.cooperative_status_ids
  346. status_2 = self.worker_regular_3.cooperative_status_ids
  347. status_3 = self.worker_irregular_1.cooperative_status_ids
  348. shift_regular = self.shift_model.create(
  349. {
  350. "task_template_id": self.task_template_1.id,
  351. "task_type_id": self.task_type_1.id,
  352. "worker_id": self.worker_regular_1.id,
  353. "start_time": datetime.now() - timedelta(minutes=50),
  354. "end_time": datetime.now() - timedelta(minutes=40),
  355. "is_regular": True,
  356. "is_compensation": False,
  357. }
  358. )
  359. future_shift_regular = self.shift_model.create(
  360. {
  361. "task_template_id": self.task_template_2.id,
  362. "task_type_id": self.task_type_2.id,
  363. "worker_id": self.worker_regular_1.id,
  364. "start_time": datetime.now() + timedelta(minutes=20),
  365. "end_time": datetime.now() + timedelta(minutes=30),
  366. "is_regular": True,
  367. "is_compensation": False,
  368. }
  369. )
  370. shift_irregular = self.shift_model.create(
  371. {
  372. "task_template_id": self.task_template_2.id,
  373. "task_type_id": self.task_type_3.id,
  374. "worker_id": self.worker_irregular_1.id,
  375. "start_time": datetime.now() - timedelta(minutes=15),
  376. "end_time": datetime.now() - timedelta(minutes=10),
  377. }
  378. )
  379. # For a regular worker
  380. status_1.sr = 0
  381. status_1.sc = 0
  382. self.assertEqual(status_1.status, "ok")
  383. shift_regular.state = "absent_1"
  384. self.assertEqual(status_1.sr, -1)
  385. self.assertEqual(status_1.status, "alert")
  386. shift_regular.state = "done"
  387. self.assertEquals(status_1.sr, 0)
  388. self.assertEquals(status_1.sc, 0)
  389. shift_regular.state = "open"
  390. shift_regular.write({"is_regular": False, "is_compensation": True})
  391. shift_regular.state = "done"
  392. self.assertEquals(status_1.sr, 1)
  393. self.assertEquals(status_1.sc, 0)
  394. # Check unsubscribed status
  395. status_1.sr = -1
  396. status_1.sc = -1
  397. # Subscribe him to another future shift
  398. future_shift_regular.worker_id = self.worker_regular_1
  399. with self.assertRaises(ValidationError) as e:
  400. future_shift_regular.state = "absent_2"
  401. self.assertIn("future", str(e.exception))
  402. status_1.sr = -2
  403. status_1.sc = -2
  404. self.assertEquals(status_1.status, "unsubscribed")
  405. # Should be unsubscribed from future shift
  406. self.assertFalse(future_shift_regular.worker_id)
  407. # With replacement worker (self.worker_regular_3)
  408. shift_regular.state = "open"
  409. status_1.sr = 0
  410. status_1.sc = 0
  411. status_2.sr = 0
  412. status_2.sc = 0
  413. shift_regular.replaced_id = self.worker_regular_3
  414. shift_regular.state = "absent_2"
  415. self.assertEqual(status_1.sr, 0)
  416. self.assertEqual(status_1.sc, 0)
  417. self.assertEqual(status_2.sr, -1)
  418. self.assertEqual(status_2.sc, -1)
  419. # For an irregular worker
  420. status_3.sr = 0
  421. status_3.sc = 0
  422. self.assertEqual(status_3.status, "ok")
  423. shift_irregular.state = "done"
  424. self.assertEqual(status_3.sr, 1)
  425. shift_irregular.state = "absent_2"
  426. self.assertEqual(status_3.sr, -1)