41 lines
1.6 KiB
Python
41 lines
1.6 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo.exceptions import ValidationError
|
||
|
from odoo.tests.common import TransactionCase
|
||
|
|
||
|
|
||
|
class TestCompany(TransactionCase):
|
||
|
|
||
|
def test_check_active(self):
|
||
|
"""Tests the ability to archive a company whether or not it still has active users.
|
||
|
Tests an archived user in an archived company cannot be unarchived
|
||
|
without changing its company to an active company."""
|
||
|
company = self.env['res.company'].create({'name': 'foo'})
|
||
|
user = self.env['res.users'].create({
|
||
|
'name': 'foo',
|
||
|
'login': 'foo',
|
||
|
'company_id': company.id,
|
||
|
'company_ids': company.ids,
|
||
|
})
|
||
|
|
||
|
# The company cannot be archived because it still has active users
|
||
|
with self.assertRaisesRegex(ValidationError, 'The company foo cannot be archived'):
|
||
|
company.action_archive()
|
||
|
|
||
|
# The company can be archived because it has no active users
|
||
|
user.action_archive()
|
||
|
company.action_archive()
|
||
|
|
||
|
# The user cannot be unarchived because it's default company is archived
|
||
|
with self.assertRaisesRegex(ValidationError, 'Company foo is not in the allowed companies'):
|
||
|
user.action_unarchive()
|
||
|
|
||
|
# The user can be unarchived once we set another, active, company
|
||
|
main_company = self.env.ref('base.main_company')
|
||
|
user.write({
|
||
|
'company_id': main_company.id,
|
||
|
'company_ids': main_company.ids,
|
||
|
})
|
||
|
user.action_unarchive()
|