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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
##############################################################################
#
# Copyright (c) 2007 Nexedi SA 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 unittest
import os
from Testing import ZopeTestCase
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.tests.utils import FileUpload
from AccessControl.SecurityManagement import newSecurityManager
from zLOG import LOG
class TestScribusUtils(ERP5TypeTestCase):
'''Unit test for SribusUtils API'''
run_all_test = True
username = 'rc'
def getTitle(self):
return "PDF Editor"
def getBusinessTemplateList(self):
return ('erp5_base', 'erp5_pdf_editor')
def login(self):
uf = self.getPortal().acl_users
uf._doAddUser(self.username, '', ['Manager'], [])
user = uf.getUserById(self.username).__of__(uf)
newSecurityManager(None, user)
def afterSetUp(self):
self.login()
def makeFileUpload(self, filename):
return FileUpload(
os.path.join(os.path.dirname(__file__),
'data', filename), 'rb')
def test_01_SimpleModuleCreation(self):
'''Just create a module using scribus file and pdf file with minimal
option'''
self.portal.ERP5Site_createModuleScribus(
module_portal_type="Dummy Module",
portal_skins_folder="erp5_test",
object_portal_type="Dummy",
object_title="Dummy",
module_id="dummy_module",
module_title="Dummy Module Title",
import_pdf_file=self.makeFileUpload('test_1.pdf'),
import_scribus_file=self.makeFileUpload('test_1.sla'),)
self.assertNotEqual(self.portal._getOb('dummy_module', None), None)
self.assertNotEqual(
self.portal.portal_skins._getOb("erp5_test", None), None)
self.assertEquals("Dummy Module Title",
self.portal.dummy_module.getTitle())
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy Module"),
None)
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy"), None)
def test_02_ModuleCreationWithBackground(self):
'''Create a module with the option_html. That mean, a background will be
generated (using convert), and a css file created'''
self.portal.ERP5Site_createModuleScribus(
self,
option_html=1,
desired_width=800,
desired_height=1132,
module_portal_type="Dummy Module",
portal_skins_folder="erp5_test",
object_portal_type="Dummy",
object_title="Dummy",
module_id="dummy_module",
module_title="Dummy Module Title",
import_pdf_file=self.makeFileUpload('test_background.pdf'),
import_scribus_file=self.makeFileUpload('test_background.sla'),)
self.assertNotEqual(self.portal._getOb('dummy_module', None), None)
self.assertNotEqual(
self.portal.portal_skins._getOb("erp5_test", None), None)
self.assertEquals("Dummy Module Title",
self.portal.dummy_module.getTitle())
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy Module"),
None)
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy"), None)
# test the background existense
skin_folder = self.portal.portal_skins._getOb("erp5_test", None)
background_object = getattr(skin_folder,'Dummy_background_0', None)
self.assertNotEquals(background_object, None)
def test_03_ModuleListBox(self):
'''Check the module listBox could be rendered without errors'''
self.portal.ERP5Site_createModuleScribus(
module_portal_type="Dummy Module",
portal_skins_folder="erp5_test",
object_portal_type="Dummy",
object_title="Dummy",
module_id="dummy_module",
module_title="Dummy Module Title",
import_pdf_file=self.makeFileUpload('test_1.pdf'),
import_scribus_file=self.makeFileUpload('test_1.sla'),)
# a form is created for the module
form = self.portal.portal_skins.erp5_test._getOb(
'DummyModule_viewDummyList', None)
self.assertNotEquals(form, None)
self.assertEquals(form.pt, 'form_list')
self.assertTrue(hasattr(form, 'listbox'))
# listbox is in bottom group
self.assertTrue('listbox' in [field.getId() for field in
form.get_fields_in_group('bottom')])
# the listbox managment screen can be accessed without error
form.listbox.manage_main()
# After we call changeSkin() so that portal_skins realize we have a new
# skin folder, the listbox can be used to render the module without error
self.portal.changeSkin(None)
self.portal.dummy_module.DummyModule_viewDummyList()
def test_04_SimpleModuleUpdate(self):
''' Update a module created with a scribus file and pdf file.
Change a field name in the new scribus file, and check that after
update, the ERP5 StringField have the new name.'''
# first module creation:
self.portal.ERP5Site_createModuleScribus(
module_id="dummy_module",
module_portal_type="Dummy Module",
module_title="Dummy Module Title",
import_pdf_file=self.makeFileUpload('test_1.pdf'),
import_scribus_file=self.makeFileUpload('test_1.sla'),
portal_skins_folder="erp5_test",
object_title="Dummy",
object_portal_type="Dummy")
self.assertNotEqual(self.portal._getOb('dummy_module', None), None)
self.assertNotEqual(
self.portal.portal_skins._getOb("erp5_test", None), None)
self.assertEquals("Dummy Module Title",
self.portal.dummy_module.getTitle())
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy Module"),
None)
self.assertNotEqual(self.portal.portal_types.getTypeInfo("Dummy"), None)
# check that a field with title text_1 (present in the sla file)
# has been created in the form
self.assertNotEquals(getattr(self.portal.portal_skins.erp5_test.Dummy_view,
'text_1', None), None)
# Update the ERP5Form, scribus, PDFForm, css and background picture
self.portal.ERP5Site_updateModuleScribus(
self,
import_pdf_file=self.makeFileUpload('test_1.pdf'),
import_scribus_file=self.makeFileUpload('test_2.sla'),
object_portal_type="Dummy")
# check that the modified field with title text_couscous (present in the
# new sla file) has been created in the form
self.assertNotEquals(getattr(self.portal.portal_skins.erp5_test.Dummy_view,
'text_couscous', None), None)
# the old field text_1 must have been removed
self.assertEquals(getattr(self.portal.portal_skins.erp5_test.Dummy_view,
'text_1', None), None)
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestScribusUtils))
return suite