mirror of
https://github.com/OCA/knowledge.git
synced 2025-12-19 03:42:19 -06:00
[MIG] document_url: Migration to 11.0
This commit is contained in:
committed by
Bhavesh Heliconia
parent
d9b6f859e3
commit
97f4a91d94
30
document_url/tests/test_document_url.py
Normal file
30
document_url/tests/test_document_url.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestDocumentUrl(common.TransactionCase):
|
||||
def setUp(self):
|
||||
super(TestDocumentUrl, self).setUp()
|
||||
wizard_add_url = self.env['ir.attachment.add_url']
|
||||
ctx = {
|
||||
'active_model': 'res.users',
|
||||
'active_id': self.env.ref('base.user_demo').id,
|
||||
'active_ids': [self.env.ref('base.user_demo').id]
|
||||
}
|
||||
self.wizard_add_url = wizard_add_url.with_context(ctx).create({
|
||||
'name': 'Demo User (Website)',
|
||||
'url': 'http://www.odoodemouser.com'
|
||||
})
|
||||
|
||||
def test_add_url_attachment(self):
|
||||
self.wizard_add_url.action_add_url()
|
||||
domain = [
|
||||
('type', '=', 'url'),
|
||||
('name', '=', 'Demo User (Website)'),
|
||||
('url', '=', 'http://www.odoodemouser.com'),
|
||||
('res_model', '=', 'res.users'),
|
||||
('res_id', '=', self.env.ref('base.user_demo').id)
|
||||
]
|
||||
attachment_added_count = self.env['ir.attachment'].search_count(domain)
|
||||
self.assertEqual(attachment_added_count, 1)
|
||||
Reference in New Issue
Block a user