# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from datetime import datetime from dateutil.relativedelta import relativedelta from freezegun import freeze_time from odoo.exceptions import UserError, ValidationError from .common import TestHrHolidaysCommon class TestHrHolidaysCancelLeave(TestHrHolidaysCommon): @classmethod def setUpClass(cls): super().setUpClass() leave_start_datetime = datetime(2018, 2, 5, 7, 0, 0, 0) # this is monday leave_end_datetime = leave_start_datetime + relativedelta(days=3) cls.hr_leave_type = cls.env['hr.leave.type'].with_user(cls.user_hrmanager).create({ 'name': 'Leave Type', 'requires_allocation': 'no', }) cls.holiday = cls.env['hr.leave'].with_context(mail_create_nolog=True, mail_notrack=True).with_user(cls.user_employee).create({ 'name': 'Leave 1', 'employee_id': cls.employee_emp.id, 'holiday_status_id': cls.hr_leave_type.id, 'date_from': leave_start_datetime, 'date_to': leave_end_datetime, 'number_of_days': (leave_end_datetime - leave_start_datetime).days, }) cls.holiday.with_user(cls.user_hrmanager).action_validate() @freeze_time('2018-02-05') # useful to be able to cancel the validated time off def test_action_cancel_leave(self): self.assertTrue(self.holiday.with_user(self.user_employee).can_cancel) self.env['hr.holidays.cancel.leave'].with_user(self.user_employee).with_context(default_leave_id=self.holiday.id) \ .new({'reason': 'Test remove holiday'}) \ .action_cancel_leave() self.assertFalse(self.holiday.active, 'The validated leave should be canceled, that is archived.') def test_action_cancel_leave_in_past(self): """ Test if the user may cancel a validated leave in the past. """ with self.assertRaises(ValidationError, msg='The leave could not be cancel since it is leave in the past.'): self.env['hr.holidays.cancel.leave'].with_user(self.user_employee).with_context(default_leave_id=self.holiday.id) \ .new({'reason': 'Test remove holiday'}) \ .action_cancel_leave() def test_action_cancel_leave_from_another_person(self): """ Test if the user may cancel a validated leave from another person. """ self.assertFalse(self.holiday.with_user(self.user_hruser).can_cancel, 'The user should not be able to cancel the leave from another one.') with self.assertRaises(ValidationError, msg='The leave could not be cancel since it is leave in the past.'): self.env['hr.holidays.cancel.leave'].with_user(self.user_hruser).with_context(default_leave_id=self.holiday.id) \ .new({'reason': 'Test remove holiday'}) \ .action_cancel_leave() @freeze_time('2018-02-05') # useful to be able to cancel the validated time off def test_user_cannot_unarchive_leave(self): """ Test the user cannot manually unarchive a canceled leave """ self.env['hr.holidays.cancel.leave'].with_user(self.user_employee).with_context(default_leave_id=self.holiday.id) \ .new({'reason': 'Test remove holiday'}) \ .action_cancel_leave() with self.assertRaises(UserError, msg='The user should not be able to manually unarchive the leave.'): self.holiday.with_user(self.user_employee).write({'active': False})