Sylvain LE GAL
10 years ago
2 changed files with 93 additions and 0 deletions
-
28document_extract_from_database/tests/__init__.py
-
65document_extract_from_database/tests/test_document_extract_from_database.py
@ -0,0 +1,28 @@ |
|||||
|
# -*- encoding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2014 GRAP (http://www.grap.coop) |
||||
|
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) |
||||
|
# |
||||
|
# 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/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
|
||||
|
|
||||
|
from . import test_document_extract_from_database |
||||
|
|
||||
|
fast_suite = [ |
||||
|
test_document_extract_from_database, |
||||
|
] |
@ -0,0 +1,65 @@ |
|||||
|
# -*- encoding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# OpenERP, Open Source Management Solution |
||||
|
# Copyright (C) 2014 GRAP (http://www.grap.coop) |
||||
|
# @author Sylvain LE GAL (https://twitter.com/legalsylvain) |
||||
|
# |
||||
|
# 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/>. |
||||
|
# |
||||
|
############################################################################### |
||||
|
|
||||
|
from openerp.tests.common import TransactionCase |
||||
|
|
||||
|
|
||||
|
class TestDocumentExtractFromDatabase(TransactionCase): |
||||
|
"""Tests for 'Document Extract From Database' Module""" |
||||
|
|
||||
|
def setUp(self): |
||||
|
super(TestDocumentExtractFromDatabase, self).setUp() |
||||
|
self.icp_obj = self.registry('ir.config_parameter') |
||||
|
self.ia_obj = self.registry('ir.attachment') |
||||
|
self.dma_obj = self.registry('document.multiple.action') |
||||
|
|
||||
|
# Test Section |
||||
|
def test_01_document_extract(self): |
||||
|
"""Test the correct extract of an attachment.""" |
||||
|
cr, uid = self.cr, self.uid |
||||
|
# Make sure that Odoo is set to write attachment in Database |
||||
|
self.icp_obj.unlink(cr, uid, self.icp_obj.search( |
||||
|
cr, uid, [('key', '=', 'ir_attachment.location')])) |
||||
|
|
||||
|
# Create a new Attachment |
||||
|
ia_id = self.ia_obj.create(cr, uid, { |
||||
|
'name': 'Attachment Test', |
||||
|
'datas_fname': 'pixel.png', |
||||
|
'type': 'binary', |
||||
|
'datas': """iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAABH""" |
||||
|
"""NCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAA1JREFUCJljO""" |
||||
|
"""LR/w38AB6kDMQ1kMu8AAAAASUVORK5CYII=""", |
||||
|
}) |
||||
|
|
||||
|
# Change setting for attachment to save on filesystem |
||||
|
self.icp_obj.create(cr, uid, { |
||||
|
'key': 'ir_attachment.location', |
||||
|
'value': 'file:///filestore', |
||||
|
}) |
||||
|
|
||||
|
# Run Write Again Functionnality |
||||
|
self.dma_obj.write_again(cr, uid, 0, {'active_ids': [ia_id]}) |
||||
|
|
||||
|
ia = self.ia_obj.browse(cr, uid, ia_id) |
||||
|
self.assertNotEqual( |
||||
|
ia.store_fname, None, |
||||
|
"Attachment must be on File System after Write Again Function.") |
Write
Preview
Loading…
Cancel
Save
Reference in new issue