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.
132 lines
4.4 KiB
132 lines
4.4 KiB
# © 2016 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
|
|
|
from odoo.tests.common import TransactionCase
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class DateRangeTest(TransactionCase):
|
|
post_install = True
|
|
at_install = False
|
|
|
|
def setUp(self):
|
|
super(DateRangeTest, self).setUp()
|
|
self.date_range = self.env['date.range']
|
|
self.type = self.env['date.range.type'].create(
|
|
{'name': 'Fiscal year',
|
|
'company_id': False,
|
|
'allow_overlap': False})
|
|
|
|
self.company = self.env['res.company'].create({
|
|
'name': 'Test company',
|
|
})
|
|
self.company_2 = self.env['res.company'].create({
|
|
'name': 'Test company 2',
|
|
'parent_id': self.company.id,
|
|
})
|
|
self.typeB = self.env['date.range.type'].create(
|
|
{'name': 'Fiscal year B',
|
|
'company_id': self.company.id,
|
|
'allow_overlap': False})
|
|
|
|
def test_default_company(self):
|
|
dr = self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
self.assertTrue(dr.company_id)
|
|
# you can specify company_id to False
|
|
dr = self.date_range.create({
|
|
'name': 'FS2016_NO_COMPANY',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
'company_id': False
|
|
})
|
|
self.assertFalse(dr.company_id)
|
|
|
|
def test_empty_company(self):
|
|
dr = self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
'company_id': None,
|
|
})
|
|
self.assertEqual(dr.name, 'FS2016')
|
|
|
|
def test_invalid(self):
|
|
with self.assertRaises(ValidationError) as cm:
|
|
self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_end': '2015-01-01',
|
|
'date_start': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
self.assertEqual(
|
|
cm.exception.name,
|
|
'FS2016 is not a valid range (2016-12-31 > 2015-01-01)')
|
|
|
|
def test_overlap(self):
|
|
self.date_range.create({
|
|
'name': 'FS2015',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2015-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
with self.assertRaises(ValidationError) as cm, self.env.cr.savepoint():
|
|
self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
self.assertEqual(cm.exception.name, 'FS2016 overlaps FS2015')
|
|
# check it's possible to overlap if it's allowed by the date range type
|
|
self.type.allow_overlap = True
|
|
dr = self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
self.assertEqual(dr.name, 'FS2016')
|
|
|
|
def test_domain(self):
|
|
dr = self.date_range.create({
|
|
'name': 'FS2015',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2015-12-31',
|
|
'type_id': self.type.id,
|
|
})
|
|
domain = dr.get_domain('my_field')
|
|
# By default the domain include limits
|
|
self.assertEqual(
|
|
domain,
|
|
[('my_field', '>=', '2015-01-01'),
|
|
('my_field', '<=', '2015-12-31')])
|
|
|
|
def test_date_range_multicompany_1(self):
|
|
dr = self.date_range.new({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.typeB.id,
|
|
'company_id': self.company.id,
|
|
})
|
|
dr._cache.update(dr._convert_to_cache(
|
|
{'company_id': self.company_2.id}, update=True))
|
|
dr._onchange_company_id()
|
|
self.assertFalse(dr.type_id)
|
|
|
|
def test_date_range_multicompany_2(self):
|
|
with self.assertRaises(ValidationError):
|
|
self.date_range.create({
|
|
'name': 'FS2016',
|
|
'date_start': '2015-01-01',
|
|
'date_end': '2016-12-31',
|
|
'type_id': self.typeB.id,
|
|
'company_id': self.company_2.id,
|
|
})
|