mirror of https://github.com/muk-it/muk_base
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.
88 lines
3.2 KiB
88 lines
3.2 KiB
###################################################################################
|
|
#
|
|
# Copyright (C) 2018 MuK IT GmbH
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###################################################################################
|
|
|
|
import logging
|
|
import datetime
|
|
|
|
from odoo.tests import common
|
|
from odoo.tools.misc import DEFAULT_SERVER_DATETIME_FORMAT
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
class AutoVacuumTestCase(common.TransactionCase):
|
|
|
|
at_install = False
|
|
post_install = True
|
|
|
|
def _setUpData(self):
|
|
model_logs = self.env['ir.logging']
|
|
time = datetime.datetime.utcnow() - datetime.timedelta(days=60)
|
|
for index in range(0, 3):
|
|
model_logs.create({
|
|
'create_date': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT),
|
|
'create_uid': self.env.user.id,
|
|
'name': "Test %s" % index,
|
|
'type': 'server',
|
|
'dbname': self.env.cr.dbname,
|
|
'level': "INFO",
|
|
'message': "TEST",
|
|
'path': "PATH",
|
|
'func': "TEST",
|
|
'line': 1})
|
|
|
|
def _setUpRules(self):
|
|
model_rule = self.env['muk_autovacuum.rules']
|
|
model_model = self.env['ir.model']
|
|
model_fields = self.env['ir.model.fields']
|
|
model_logs = model_model.search([('model', '=', 'ir.logging')], limit=1)
|
|
time_field_domain = [
|
|
('model_id', '=', model_logs.id),
|
|
('ttype', '=', 'datetime'),
|
|
('name', '=', 'create_date')]
|
|
time_field_logs = model_fields.search(time_field_domain, limit=1)
|
|
model_rule.create({
|
|
'name': "Delete Logs after 1 Minute",
|
|
'state': 'time',
|
|
'model': model_logs.id,
|
|
'time_field': time_field_logs.id,
|
|
'time_type': 'minutes',
|
|
'time': 1})
|
|
model_rule.create({
|
|
'name': "Delete Logs Count > 1",
|
|
'state': 'size',
|
|
'model': model_logs.id,
|
|
'size': 1,
|
|
'size_order': "id desc",
|
|
'size_type': 'fixed'})
|
|
model_rule.create({
|
|
'name': "Delete Logs with Domain",
|
|
'state': 'domain',
|
|
'model': model_logs.id,
|
|
'domain': "[]"})
|
|
|
|
def setUp(self):
|
|
super(AutoVacuumTestCase, self).setUp()
|
|
self._setUpData()
|
|
self._setUpRules()
|
|
|
|
def tearDown(self):
|
|
super(AutoVacuumTestCase, self).tearDown()
|
|
|
|
def test_autovacuum(self):
|
|
self.env['ir.cron'].search([('model_id', '=', 'ir.autovacuum')]).ir_actions_server_id.run()
|