diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/hr_attendance/tests | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/hr_attendance/tests')
| -rw-r--r-- | addons/hr_attendance/tests/__init__.py | 4 | ||||
| -rw-r--r-- | addons/hr_attendance/tests/test_hr_attendance_constraints.py | 62 | ||||
| -rw-r--r-- | addons/hr_attendance/tests/test_hr_attendance_process.py | 110 |
3 files changed, 176 insertions, 0 deletions
diff --git a/addons/hr_attendance/tests/__init__.py b/addons/hr_attendance/tests/__init__.py new file mode 100644 index 00000000..44d12aeb --- /dev/null +++ b/addons/hr_attendance/tests/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import test_hr_attendance_constraints +from . import test_hr_attendance_process diff --git a/addons/hr_attendance/tests/test_hr_attendance_constraints.py b/addons/hr_attendance/tests/test_hr_attendance_constraints.py new file mode 100644 index 00000000..15f585f6 --- /dev/null +++ b/addons/hr_attendance/tests/test_hr_attendance_constraints.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- + +import time + +from odoo.tests.common import TransactionCase + + +class TestHrAttendance(TransactionCase): + """Tests for attendance date ranges validity""" + + def setUp(self): + super(TestHrAttendance, self).setUp() + self.attendance = self.env['hr.attendance'] + self.test_employee = self.env['hr.employee'].create({'name': "Jacky"}) + # demo data contains set up for self.test_employee + self.open_attendance = self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 10:00'), + }) + + def test_attendance_in_before_out(self): + # Make sure check_out is before check_in + with self.assertRaises(Exception): + self.my_attend = self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 12:00'), + 'check_out': time.strftime('%Y-%m-10 11:00'), + }) + + def test_attendance_no_check_out(self): + # Make sure no second attandance without check_out can be created + with self.assertRaises(Exception): + self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 11:00'), + }) + + # 5 next tests : Make sure that when attendances overlap an error is raised + def test_attendance_1(self): + self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 07:30'), + 'check_out': time.strftime('%Y-%m-10 09:00'), + }) + with self.assertRaises(Exception): + self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 08:30'), + 'check_out': time.strftime('%Y-%m-10 09:30'), + }) + + def test_new_attendances(self): + # Make sure attendance modification raises an error when it causes an overlap + self.attendance.create({ + 'employee_id': self.test_employee.id, + 'check_in': time.strftime('%Y-%m-10 11:00'), + 'check_out': time.strftime('%Y-%m-10 12:00'), + }) + with self.assertRaises(Exception): + self.open_attendance.write({ + 'check_out': time.strftime('%Y-%m-10 11:30'), + }) diff --git a/addons/hr_attendance/tests/test_hr_attendance_process.py b/addons/hr_attendance/tests/test_hr_attendance_process.py new file mode 100644 index 00000000..0a7a2db6 --- /dev/null +++ b/addons/hr_attendance/tests/test_hr_attendance_process.py @@ -0,0 +1,110 @@ +# -*- coding: utf-8 -*- + +import pytz +from datetime import datetime +from unittest.mock import patch + +from odoo import fields +from odoo.tests import new_test_user +from odoo.tests.common import TransactionCase + + +class TestHrAttendance(TransactionCase): + """Test for presence validity""" + + def setUp(self): + super(TestHrAttendance, self).setUp() + self.user = new_test_user(self.env, login='fru', groups='base.group_user,hr_attendance.group_hr_attendance_use_pin') + self.user_no_pin = new_test_user(self.env, login='gru', groups='base.group_user') + self.test_employee = self.env['hr.employee'].create({ + 'name': "François Russie", + 'user_id': self.user.id, + 'pin': '1234', + }) + self.employee_kiosk = self.env['hr.employee'].create({ + 'name': "Machiavel", + 'pin': '5678', + }) + + def test_employee_state(self): + # Make sure the attendance of the employee will display correctly + assert self.test_employee.attendance_state == 'checked_out' + self.test_employee._attendance_action_change() + assert self.test_employee.attendance_state == 'checked_in' + self.test_employee._attendance_action_change() + assert self.test_employee.attendance_state == 'checked_out' + + def test_checkin_self_without_pin(self): + """ Employee can check in/out without pin with his own account """ + employee = self.test_employee.with_user(self.user) + employee.with_user(self.user).attendance_manual({}, entered_pin=None) + self.assertEqual(employee.attendance_state, 'checked_in', "He should be able to check in without pin") + employee.attendance_manual({}, entered_pin=None) + self.assertEqual(employee.attendance_state, 'checked_out', "He should be able to check out without pin") + + def test_checkin_self_with_pin(self): + """ Employee can check in/out with pin with his own account """ + employee = self.test_employee.with_user(self.user) + employee.attendance_manual({}, entered_pin='1234') + self.assertEqual(employee.attendance_state, 'checked_in', "He should be able to check in with his pin") + employee.attendance_manual({}, entered_pin='1234') + self.assertEqual(employee.attendance_state, 'checked_out', "He should be able to check out with his pin") + + def test_checkin_self_wrong_pin(self): + """ Employee cannot check in/out with wrong pin with his own account """ + employee = self.test_employee.with_user(self.user) + action = employee.attendance_manual({}, entered_pin='9999') + self.assertNotEqual(employee.attendance_state, 'checked_in', "He should not be able to check in with a wrong pin") + self.assertTrue(action.get('warning')) + + def test_checkin_kiosk_with_pin(self): + """ Employee can check in/out with his pin in kiosk """ + employee = self.employee_kiosk.with_user(self.user) + employee.attendance_manual({}, entered_pin='5678') + self.assertEqual(employee.attendance_state, 'checked_in', "He should be able to check in with his pin") + employee.attendance_manual({}, entered_pin='5678') + self.assertEqual(employee.attendance_state, 'checked_out', "He should be able to check out with his pin") + + def test_checkin_kiosk_with_wrong_pin(self): + """ Employee cannot check in/out with wrong pin in kiosk """ + employee = self.employee_kiosk.with_user(self.user) + action = employee.attendance_manual({}, entered_pin='8888') + self.assertNotEqual(employee.attendance_state, 'checked_in', "He should not be able to check in with a wrong pin") + self.assertTrue(action.get('warning')) + + def test_checkin_kiosk_without_pin(self): + """ Employee cannot check in/out without his pin in kiosk """ + employee = self.employee_kiosk.with_user(self.user) + action = employee.attendance_manual({}, entered_pin=None) + self.assertNotEqual(employee.attendance_state, 'checked_in', "He should not be able to check in with no pin") + self.assertTrue(action.get('warning')) + + def test_checkin_kiosk_no_pin_mode(self): + """ Employee can check in/out without pin in kiosk when user has not group `use_pin` """ + employee = self.employee_kiosk.with_user(self.user_no_pin) + employee.attendance_manual({}, entered_pin=None) + self.assertEqual(employee.attendance_state, 'checked_in', "He should be able to check in with his pin") + employee.attendance_manual({}, entered_pin=None) + self.assertEqual(employee.attendance_state, 'checked_out', "He should be able to check out with his pin") + + def test_hours_today(self): + """ Test day start is correctly computed according to the employee's timezone """ + + def tz_datetime(year, month, day, hour, minute): + tz = pytz.timezone('Europe/Brussels') + return tz.localize(datetime(year, month, day, hour, minute)).astimezone(pytz.utc).replace(tzinfo=None) + + employee = self.env['hr.employee'].create({'name': 'Cunégonde', 'tz': 'Europe/Brussels'}) + self.env['hr.attendance'].create({ + 'employee_id': employee.id, + 'check_in': tz_datetime(2019, 3, 1, 22, 0), # should count from midnight in the employee's timezone (=the previous day in utc!) + 'check_out': tz_datetime(2019, 3, 2, 2, 0), + }) + self.env['hr.attendance'].create({ + 'employee_id': employee.id, + 'check_in': tz_datetime(2019, 3, 2, 11, 0), + }) + + # now = 2019/3/2 14:00 in the employee's timezone + with patch.object(fields.Datetime, 'now', lambda: tz_datetime(2019, 3, 2, 14, 0).astimezone(pytz.utc).replace(tzinfo=None)): + self.assertEqual(employee.hours_today, 5, "It should have counted 5 hours") |
