1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
import unittest
try:
import PIL
except ImportError:
PIL = None
from trytond.pool import Pool
from trytond.transaction import Transaction
from .test_tryton import ModuleTestCase, with_transaction
class ResTestCase(ModuleTestCase):
'Test res module'
module = 'res'
@unittest.skipUnless(PIL, "Avatars are not generated without PIL")
@with_transaction()
def test_user_avatar(self):
pool = Pool()
User = pool.get('res.user')
user = User(login="avatar")
user.save()
self.assertEqual(len(user.avatars), 1)
self.assertIsNotNone(user.avatar)
self.assertRegex(user.avatar_url, r'/avatar/.*/([0-9a-fA-F]{12})')
@with_transaction()
def test_user_warning(self):
"Check user warning"
pool = Pool()
Warning_ = pool.get('res.user.warning')
self.assertTrue(Warning_.check('test'))
@with_transaction()
def test_user_warning_ignored(self):
"Check ignored user warning"
pool = Pool()
Warning_ = pool.get('res.user.warning')
user_id = Transaction().user
Warning_.create([{
'user': user_id,
'name': 'test',
}])
self.assertFalse(Warning_.check('test'))
self.assertFalse(Warning_.search([]))
@with_transaction()
def test_user_warning_always_ignored(self):
"Check always ignored user warning"
pool = Pool()
Warning_ = pool.get('res.user.warning')
user_id = Transaction().user
Warning_.create([{
'user': user_id,
'name': 'test',
'always': True,
}])
self.assertFalse(Warning_.check('test'))
self.assertTrue(Warning_.search([]))
@with_transaction()
def test_user_warning_reentrant(self):
"Check re-entrant user warning"
pool = Pool()
Warning_ = pool.get('res.user.warning')
user_id = Transaction().user
Warning_.create([{
'user': user_id,
'name': 'test',
}])
self.assertFalse(Warning_.check('test'))
self.assertFalse(Warning_.check('test'))
del ModuleTestCase
|