testOOoBatchMode.py 6.82 KB
Newer Older
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
##############################################################################
#
# Copyright (c) 2004, 2005, 2006 Nexedi SARL and Contributors. 
# All Rights Reserved.
##
# 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 os
30
import unittest
31 32 33 34 35 36 37 38 39 40 41 42 43 44
from AccessControl.SecurityManagement import newSecurityManager
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5.Document.Document import ConversionError

class TestOoodResponse(ERP5TypeTestCase):

  manager_username = 'rie'
  manager_password = 'rie'
  quiet = 1
  run_all_test = 1  

  def getTitle(self):
    return "TestOOoBatchMode"

45
  def login(self):
46 47 48 49 50 51 52 53 54 55 56
    uf = self.getPortal().acl_users
    uf._doAddUser(self.manager_username, self.manager_password, ['Manager'], [])
    user = uf.getUserById(self.manager_username).__of__(uf)
    newSecurityManager(None, user)

  def getBusinessTemplateList(self):
    return ()

  def afterSetUp(self):
    self.login()
    portal_skins = self.getSkinsTool()
57
    import_file_path = os.path.join(os.path.dirname(__file__),
58 59
                                    'test_document',
                                    'PersonSpreadsheetStylesheet.ods')
60
    import_file = open(import_file_path, 'rb')
61 62 63 64 65
    custom = portal_skins.custom
    addStyleSheet = custom.manage_addProduct['OFSP'].manage_addFile
    addStyleSheet(id='Base_getODTStyleSheet', file=import_file, title='',
      precondition='', content_type='application/vnd.oasis.opendocument.text')
    addOOoTemplate = custom.manage_addProduct['ERP5OOo'].addOOoTemplate
66 67 68 69 70 71 72 73
    addOOoTemplate(id='ERP5Site_viewNothingAsOdt', title='')
    portal_skins.changeSkin(skinname=None)
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
    text = "<office:document-content xmlns:draw='urn:oasis:names:tc:opendocument:xmlns:drawing:1.0' xmlns:office='urn:oasis:names:tc:opendocument:xmlns:office:1.0' xmlns:text='urn:oasis:names:tc:opendocument:xmlns:text:1.0' xmlns:ooo='http://openoffice.org/2004/office' xmlns:number='urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:meta='urn:oasis:names:tc:opendocument:xmlns:meta:1.0' xmlns:table='urn:oasis:names:tc:opendocument:xmlns:table:1.0' xmlns:dr3d='urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0' xmlns:fo='urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0' xmlns:style='urn:oasis:names:tc:opendocument:xmlns:style:1.0' xmlns:xforms='http://www.w3.org/2002/xforms' xmlns:form='urn:oasis:names:tc:opendocument:xmlns:form:1.0' xmlns:script='urn:oasis:names:tc:opendocument:xmlns:script:1.0' xmlns:ooow='http://openoffice.org/2004/writer' xmlns:svg='urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0' xmlns:chart='urn:oasis:names:tc:opendocument:xmlns:chart:1.0' xmlns:dom='http://www.w3.org/2001/xml-events' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:oooc='http://openoffice.org/2004/calc' xmlns:math='http://www.w3.org/1998/Math/MathML'  xmlns:tal='http://xml.zope.org/namespaces/tal'></office:document-content>"
    content_type = 'application/vnd.oasis.opendocument.text'
    ERP5Site_viewNothingAsOdt.pt_edit(text, content_type)

  def test_01_noExcNoFormatNoBatchMode(self):
74 75
    request = self.portal.REQUEST
    request.RESPONSE.setHeader('content-type', 'text/html')
76 77
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
    ERP5Site_viewNothingAsOdt(batch_mode=0)
78 79
    self.assertEqual('application/vnd.oasis.opendocument.text',
        request.RESPONSE.getHeader('content-type').split(';')[0])
80
    self.assertEqual('inline;filename="ERP5Site_viewNothingAsOdt.odt"',
81
        request.RESPONSE.getHeader('content-disposition'))
82 83 84 85 86 87 88 89

  def test_01b_noExcEmptyFormatNoBatchMode(self):
    request = self.portal.REQUEST
    request.RESPONSE.setHeader('content-type', 'text/html')
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
    ERP5Site_viewNothingAsOdt(format='', batch_mode=0)
    self.assertEqual('application/vnd.oasis.opendocument.text',
        request.RESPONSE.getHeader('content-type').split(';')[0])
90
    self.assertEqual('inline;filename="ERP5Site_viewNothingAsOdt.odt"',
91
        request.RESPONSE.getHeader('content-disposition'))
92 93
    
  def test_02_noExcNoFormatBatchMode(self):
94 95
    request = self.portal.REQUEST
    request.RESPONSE.setHeader('content-type', 'text/html')
96 97
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
    ERP5Site_viewNothingAsOdt(batch_mode=1)
98 99
    self.assertEqual('text/html',
        request.RESPONSE.getHeader('content-type').split(';')[0])
100 101
    
  def test_03_excPdfFormatNoBatchMode(self):
102 103
    request = self.portal.REQUEST
    request.RESPONSE.setHeader('content-type', 'text/html')
104
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
105 106
    # This assumes that a conversion error is raised because oood coordinates
    # are not defined in preferences.
107 108 109 110
    self.assertRaises(ConversionError, ERP5Site_viewNothingAsOdt,
                      batch_mode=0, format='pdf')
    self.assertEqual('text/html',
        request.RESPONSE.getHeader('content-type').split(';')[0])
111 112

  def test_04_excPdfFormatBatchMode(self):
113 114
    request = self.portal.REQUEST
    request.RESPONSE.setHeader('content-type', 'text/html')
115
    ERP5Site_viewNothingAsOdt = self.getPortal().ERP5Site_viewNothingAsOdt
116 117
    # This assumes that a conversion error is raised because oood coordinates
    # are not defined in preferences.
118 119 120
    self.assertRaises(ConversionError, ERP5Site_viewNothingAsOdt,
                         batch_mode=1, format='pdf')
    self.assertEqual('text/html', request.RESPONSE.getHeader('content-type').split(';')[0])
121

122 123 124 125
def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestOoodResponse))
  return suite
126