2021-03-23 19:13:18 +00:00
|
|
|
# © 2016 Tecnativa - Vicent Cubells
|
|
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl-3.0).
|
|
|
|
from flectra.exceptions import UserError
|
|
|
|
from flectra.tests import common
|
|
|
|
|
|
|
|
|
|
|
|
class TestRecursion(common.SavepointCase):
|
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
super(TestRecursion, cls).setUpClass()
|
|
|
|
cls.department_obj = cls.env["res.partner.department"]
|
|
|
|
|
|
|
|
# Instances
|
|
|
|
cls.dpt1 = cls.department_obj.create({"name": "Dpt. 1"})
|
|
|
|
cls.dpt2 = cls.department_obj.create(
|
|
|
|
{"name": "Dep. 2", "parent_id": cls.dpt1.id}
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_recursion(self):
|
2022-06-29 18:38:32 +00:00
|
|
|
"""Testing recursion"""
|
2021-03-23 19:13:18 +00:00
|
|
|
self.dpt3 = self.department_obj.create(
|
|
|
|
{"name": "Dep. 3", "parent_id": self.dpt2.id}
|
|
|
|
)
|
|
|
|
# Creating a parent's child department using dpt1.
|
|
|
|
with self.assertRaises(UserError):
|
|
|
|
self.dpt1.write(vals={"parent_id": self.dpt3.id})
|