# -*- coding: utf-8 -*- ############################################################################## # Copyright (c) 2009 Nexedi SA and Contributors. All Rights Reserved. # Nicolas Delaby <nicolas@nexedi.com> # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## import unittest import transaction from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase from Products.ERP5Form.Selection import Selection from Testing import ZopeTestCase from Products.ERP5Type.tests.utils import DummyMailHost from AccessControl import getSecurityManager from AccessControl.SecurityManagement import newSecurityManager from Products.ERP5OOo.tests.utils import Validator import email class TestDeferredStyle(ERP5TypeTestCase, ZopeTestCase.Functional): """Tests deferred styles for ERP5.""" skin = content_type = None recipient_email_address = 'invalid@example.com' attachment_file_extension = '' username = 'bob' password = 'bobpwd' # the weird '<' char is to force quoting of the first name on the e-mail # address. Zope 2.12 only surrounds names with quotes if they really need # quoting. first_name = 'Bob<Par' def getTitle(self): return 'Test Deferred Style' def getBusinessTemplateList(self): return ('erp5_core_proxy_field_legacy', 'erp5_base', 'erp5_ods_style', 'erp5_odt_style', 'erp5_deferred_style',) def afterSetUp(self): self.login() if not self.skin: raise NotImplementedError('Subclasses must define skin') person_module = self.portal.person_module if person_module._getOb('pers', None) is None: person = person_module.newContent(id='pers', portal_type='Person', reference=self.username, first_name=self.first_name, password=self.password, default_email_text=self.recipient_email_address) assignment = person.newContent(portal_type='Assignment') assignment.open() # replace MailHost if 'MailHost' in self.portal.objectIds(): self.portal.manage_delObjects(['MailHost']) self.portal._setObject('MailHost', DummyMailHost('MailHost')) transaction.commit() self.tic() def loginAsUser(self, username): uf = self.portal.acl_users uf.zodb_roles.assignRoleToPrincipal('Manager', username) user = uf.getUserById(username).__of__(uf) newSecurityManager(None, user) def test_skin_selection(self): self.assertTrue('Deferred' in self.portal.portal_skins.getSkinSelections()) def test_report_view(self): self.loginAsUser('bob') self.portal.changeSkin('Deferred') response = self.publish( '/%s/person_module/pers/Base_viewHistory?deferred_portal_skin=%s' % (self.portal.getId(), self.skin), '%s:%s' % (self.username, self.password)) transaction.commit() self.tic() last_message = self.portal.MailHost._last_message self.assertNotEquals((), last_message) mfrom, mto, message_text = last_message self.assertEquals('"%s" <%s>' % (self.first_name, self.recipient_email_address), mto[0]) mail_message = email.message_from_string(message_text) for part in mail_message.walk(): content_type = part.get_content_type() file_name = part.get_filename() if content_type == self.content_type: # "History" is the title of Base_viewHistory form file_name = part.get_filename() expected_file_name = 'History%s' % self.attachment_file_extension self.assertEquals(expected_file_name, file_name) self.assertEquals('attachment; filename="%s"' % expected_file_name, part.get('Content-Disposition')) data = part.get_payload(decode=True) error_list = Validator().validate(data) if error_list: self.fail(''.join(error_list)) break else: self.fail('Attachment not found in email') def test_normal_form(self): self.loginAsUser('bob') # simulate a big request, for which Base_callDialogMethod will not issue a # redirect response = self.publish( '/%s/person_module/pers/Base_callDialogMethod?deferred_portal_skin=%s&' 'dialog_method=Person_view&dialog_id=Person_view&' 'deferred_style:int=1&junk=%s' % (self.portal.getId(), self.skin, 'X' * 2000), '%s:%s' % (self.username, self.password)) transaction.commit() self.tic() last_message = self.portal.MailHost._last_message self.assertNotEquals((), last_message) mfrom, mto, message_text = last_message self.assertEquals('"%s" <%s>' % (self.first_name, self.recipient_email_address), mto[0]) mail_message = email.message_from_string(message_text) for part in mail_message.walk(): content_type = part.get_content_type() if content_type == self.content_type: # "Person" is the title of Person_view form file_name = part.get_filename() expected_file_name = 'Person%s' % self.attachment_file_extension self.assertEquals(expected_file_name, file_name) self.assertEquals('attachment; filename="%s"' % expected_file_name, part.get('Content-Disposition')) data = part.get_payload(decode=True) error_list = Validator().validate(data) if error_list: self.fail(''.join(error_list)) break else: self.fail('Attachment not found in email') class TestODSDeferredStyle(TestDeferredStyle): skin = 'ODS' content_type = 'application/vnd.oasis.opendocument.spreadsheet' attachment_file_extension = '.ods' class TestODTDeferredStyle(TestDeferredStyle): skin = 'ODT' content_type = 'application/vnd.oasis.opendocument.text' attachment_file_extension = '.odt' def test_suite(): suite = unittest.TestSuite() suite.addTest(unittest.makeSuite(TestODSDeferredStyle)) suite.addTest(unittest.makeSuite(TestODTDeferredStyle)) return suite