[IMP] Module 'auditlog' - Added a second test using cached data generated during the first test

pull/2755/head
sebalix 2015-02-04 15:21:03 +01:00 committed by Raf Ven
parent 81ee271b21
commit 388e7368d9
1 changed files with 9 additions and 2 deletions

View File

@ -23,6 +23,7 @@ from openerp.tests.common import TransactionCase
class TestAuditlog(TransactionCase): class TestAuditlog(TransactionCase):
def test_LogCreation(self): def test_LogCreation(self):
"""First test, caching some data."""
auditlog_log = self.env['auditlog.log'] auditlog_log = self.env['auditlog.log']
groups_model_id = self.env.ref('base.model_res_groups').id groups_model_id = self.env.ref('base.model_res_groups').id
self.env['auditlog.rule'].create({ self.env['auditlog.rule'].create({
@ -34,14 +35,14 @@ class TestAuditlog(TransactionCase):
'state': 'subscribed', 'state': 'subscribed',
}) })
group = self.env['res.groups'].create({ group = self.env['res.groups'].create({
'name': 'testgroup', 'name': 'testgroup1',
}) })
self.assertTrue(auditlog_log.search([ self.assertTrue(auditlog_log.search([
('model_id', '=', groups_model_id), ('model_id', '=', groups_model_id),
('method', '=', 'create'), ('method', '=', 'create'),
('res_id', '=', group.id), ('res_id', '=', group.id),
])) ]))
group.write({'name': 'Testgroup'}) group.write({'name': 'Testgroup1'})
self.assertTrue(auditlog_log.search([ self.assertTrue(auditlog_log.search([
('model_id', '=', groups_model_id), ('model_id', '=', groups_model_id),
('method', '=', 'write'), ('method', '=', 'write'),
@ -53,3 +54,9 @@ class TestAuditlog(TransactionCase):
('method', '=', 'unlink'), ('method', '=', 'unlink'),
('res_id', '=', group.id), ('res_id', '=', group.id),
])) ]))
def test_LogCreation2(self):
"""Second test, using cached data of the first one."""
self.env['res.groups'].create({
'name': 'testgroup2',
})