source: main/waeup.kofa/trunk/src/waeup/kofa/documents/tests/test_browser.py @ 12444

Last change on this file since 12444 was 12441, checked in by Henrik Bettermann, 10 years ago

Add handler for document removal. Files must be removed too.

  • Property svn:keywords set to Id
File size: 15.5 KB
Line 
1## $Id: test_browser.py 12441 2015-01-11 11:23:48Z henrik $
2##
3## Copyright (C) 2014 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""
19Test the customer-related UI components.
20"""
21import shutil
22import tempfile
23from datetime import datetime, timedelta, date
24from StringIO import StringIO
25import os
26from zope.event import notify
27from zope.component import createObject, queryUtility, getUtility
28from zope.component.hooks import setSite, clearSite
29from zope.schema.interfaces import ConstraintNotSatisfied
30from zope.catalog.interfaces import ICatalog
31from zope.security.interfaces import Unauthorized
32from zope.securitypolicy.interfaces import IPrincipalRoleManager
33from zope.testbrowser.testing import Browser
34from hurry.workflow.interfaces import (
35    IWorkflowInfo, IWorkflowState, InvalidTransitionError)
36from waeup.kofa.testing import FunctionalLayer, FunctionalTestCase
37from waeup.kofa.app import University
38from waeup.kofa.interfaces import (
39    IUserAccount, IJobManager,
40    IFileStoreNameChooser, IExtFileStore, IFileStoreHandler)
41from waeup.kofa.imagestorage import (
42    FileStoreNameChooser, ExtFileStore, DefaultFileStoreHandler,
43    DefaultStorage)
44from waeup.kofa.authentication import LocalRoleSetEvent
45from waeup.kofa.tests.test_async import FunctionalAsyncTestCase
46from waeup.kofa.browser.tests.test_pdf import samples_dir
47from waeup.kofa.documents.workflow import PUBLISHED
48
49PH_LEN = 15911  # Length of placeholder file
50
51SAMPLE_IMAGE = os.path.join(os.path.dirname(__file__), 'test_image.jpg')
52#SAMPLE_IMAGE_BMP = os.path.join(os.path.dirname(__file__), 'test_image.bmp')
53SAMPLE_PDF = os.path.join(os.path.dirname(__file__), 'test_pdf.pdf')
54
55class FullSetup(FunctionalTestCase):
56    # A test case that only contains a setup and teardown
57    #
58    # Complete setup for customers handlings is rather complex and
59    # requires lots of things created before we can start. This is a
60    # setup that does all this, creates a company etc.
61    # so that we do not have to bother with that in different
62    # test cases.
63
64    layer = FunctionalLayer
65
66    def setUp(self):
67        super(FullSetup, self).setUp()
68
69        # Setup a sample site for each test
70        app = University()
71        self.dc_root = tempfile.mkdtemp()
72        app['datacenter'].setStoragePath(self.dc_root)
73
74        # Prepopulate the ZODB...
75        self.getRootFolder()['app'] = app
76        # we add the site immediately after creation to the
77        # ZODB. Catalogs and other local utilities are not setup
78        # before that step.
79        self.app = self.getRootFolder()['app']
80        # Set site here. Some of the following setup code might need
81        # to access grok.getSite() and should get our new app then
82        setSite(app)
83
84        self.login_path = 'http://localhost/app/login'
85        self.container_path = 'http://localhost/app/documents'
86
87        # Put the prepopulated site into test ZODB and prepare test
88        # browser
89        self.browser = Browser()
90        self.browser.handleErrors = False
91
92    def tearDown(self):
93        super(FullSetup, self).tearDown()
94        clearSite()
95        shutil.rmtree(self.dc_root)
96
97
98class DocumentUITests(FullSetup):
99    # Tests for document related views and pages
100
101    def test_manage_file_document(self):
102        # Managers can access the pages of documentsconter
103        # and can perform actions
104        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
105        self.browser.open('http://localhost/app')
106        self.assertEqual(self.browser.headers['Status'], '200 Ok')
107        self.browser.getLink("Documents").click()
108        self.assertEqual(self.browser.url, self.container_path)
109        self.browser.getLink("Manage").click()
110        self.browser.getControl("Add document").click()
111        self.browser.getControl(name="doctype").value = ['PDFDocument']
112        self.browser.getControl(name="form.title").value = 'My PDF Document'
113        self.browser.getControl(name="form.document_id").value = 'DOC1'
114        self.browser.getControl("Add document").click()
115        self.assertTrue('PDF Document added.' in self.browser.contents)
116        document = self.app['documents']['DOC1']
117
118        # Document can be edited
119        self.browser.getControl(name="form.title").value = 'My first doc'
120        self.browser.getControl("Save").click()
121        self.assertTrue('Form has been saved.' in self.browser.contents)
122        self.browser.getLink("View").click()
123        self.assertEqual(self.browser.url, self.container_path + '/DOC1/index')
124
125        # File can be uploaded
126        self.browser.getLink("Manage").click()
127        # Create a pseudo image file and select it to be uploaded
128        image = open(SAMPLE_IMAGE, 'rb')
129        ctrl = self.browser.getControl(name='pdfscanmanageupload')
130        file_ctrl = ctrl.mech_control
131        file_ctrl.add_file(image, filename='my_sample_scan.jpg')
132        self.browser.getControl(
133            name='upload_pdfscanmanageupload').click()
134        self.assertTrue(
135            'pdf file format expected' in self.browser.contents)
136        ctrl = self.browser.getControl(name='pdfscanmanageupload')
137        file_ctrl = ctrl.mech_control
138        file_ctrl.add_file(image, filename='my_sample_scan.pdf')
139        self.browser.getControl(
140            name='upload_pdfscanmanageupload').click()
141        self.assertTrue(
142            'Could not determine file type' in self.browser.contents)
143        pdf = open(SAMPLE_PDF, 'rb')
144        ctrl = self.browser.getControl(name='pdfscanmanageupload')
145        file_ctrl = ctrl.mech_control
146        file_ctrl.add_file(pdf, filename='my_sample_scan.pdf')
147        self.browser.getControl(
148            name='upload_pdfscanmanageupload').click()
149        self.assertTrue(
150            'href="http://localhost/app/documents/DOC1/sample.pdf">PDF File</a>'
151            in self.browser.contents)
152        # The file can be found in the file system
153        file = getUtility(IExtFileStore).getFileByContext(
154            document, attr='sample.pdf')
155        file_content = file.read()
156        pdf.seek(0)
157        pdf_content = pdf.read()
158        self.assertEqual(file_content, pdf_content)
159        # Browsing the link shows a real pdf only if the document
160        # has been published
161        self.browser.getLink("PDF File").click()
162        self.assertTrue(
163            'The document requested has not yet been published'
164            in self.browser.contents)
165        IWorkflowState(document).setState(PUBLISHED)
166        self.browser.open(self.container_path + '/DOC1/sample.pdf')
167        self.assertEqual(
168            self.browser.headers['content-type'], 'application/pdf')
169
170        # Transitions can be performed
171        self.assertEqual(document.state, 'published')
172        self.browser.open(self.container_path + '/DOC1')
173        self.browser.getLink("Transition").click()
174        self.browser.getControl(name="transition").value = ['retract']
175        self.browser.getControl("Apply now").click()
176        self.assertEqual(document.state, 'created')
177
178        # Documents can be removed
179        self.browser.getLink("Documents").click()
180        self.browser.getLink("Manage").click()
181        ctrl = self.browser.getControl(name='val_id')
182        ctrl.getControl(value=document.document_id).selected = True
183        self.browser.getControl("Remove selected", index=0).click()
184        self.assertTrue('Successfully removed' in self.browser.contents)
185
186        # File has been removed too
187        file = getUtility(IExtFileStore).getFileByContext(
188            document, attr='sample.pdf')
189        self.assertTrue(file is None)
190
191        # All actions are being logged
192        logfile = os.path.join(
193            self.app['datacenter'].storage, 'logs', 'main.log')
194        logcontent = open(logfile).read()
195
196        self.assertTrue(
197            'INFO - zope.mgr - %s - Document created' % document.document_id
198            in logcontent)
199        self.assertTrue(
200            'INFO - zope.mgr - documents.browser.DocumentAddFormPage - added: PDF Document %s'
201            % document.document_id in logcontent)
202        self.assertTrue(
203            'INFO - zope.mgr - documents.browser.DocumentManageFormPage - %s - saved: title'
204            % document.document_id in logcontent)
205        self.assertTrue(
206            'INFO - zope.mgr - documents.browser.DocumentManageFormPage - %s - uploaded: sample.pdf (my_sample_scan.pdf)'
207            % document.document_id in logcontent)
208        self.assertTrue(
209            'INFO - zope.mgr - %s - Document retracted' % document.document_id
210            in logcontent)
211        self.assertTrue(
212            'INFO - zope.mgr - documents.browser.DocumentsContainerManageFormPage - removed: %s'
213            % document.document_id in logcontent)
214
215    def test_manage_html_document(self):
216        # Managers can access the pages of documentsconter
217        # and can perform actions
218        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
219        self.browser.open('http://localhost/app')
220        self.assertEqual(self.browser.headers['Status'], '200 Ok')
221        self.browser.getLink("Documents").click()
222        self.assertEqual(self.browser.url, self.container_path)
223        self.browser.getLink("Manage").click()
224        self.browser.getControl("Add document").click()
225        self.browser.getControl(name="doctype").value = ['HTMLDocument']
226        self.browser.getControl(name="form.document_id").value = 'DOC2'
227        self.browser.getControl(name="form.title").value = 'My HTML Document'
228        self.browser.getControl("Add document").click()
229        self.assertTrue('HTML Document added.' in self.browser.contents)
230        document = self.app['documents']['DOC2']
231
232        # Document can be edited
233        self.browser.getControl(name="form.title").value = 'My second doc'
234        self.browser.getControl(name="form.html_multilingual").value = """
235<h1>Hello World</h1>
236>>de<<
237<h1>Hallo Welt</h1>
238"""
239        self.browser.getControl("Save").click()
240        self.assertTrue('Form has been saved.' in self.browser.contents)
241        self.browser.getLink("View").click()
242        self.assertEqual(self.browser.url, self.container_path + '/DOC2/index')
243        self.assertTrue(
244            '<h1>Hello World</h1>' in self.browser.contents)
245        self.assertFalse(
246            '<h1>Hallo Welt</h1>' in self.browser.contents)
247        self.browser.getLink("de", index=2).click()
248        self.assertFalse(
249            '<h1>Hello World</h1>' in self.browser.contents)
250        self.assertTrue(
251            '<h1>Hallo Welt</h1>' in self.browser.contents)
252        # The content can't be rendered yet
253        self.browser.open(self.container_path + '/DOC2/display')
254        self.assertTrue(
255            'The document requested has not yet been published'
256            in self.browser.contents)
257        # We have been redirected to the portal root
258        self.assertEqual(self.browser.url, 'http://localhost/app')
259
260        # Transitions can be performed
261        self.browser.open(self.container_path + '/DOC2')
262        self.browser.getLink("Transition").click()
263        self.browser.getControl(name="transition").value = ['publish']
264        self.browser.getControl("Apply now").click() # not yet translated
265        self.assertEqual(document.state, 'published')
266
267        # The content can be rendered
268        self.browser.open(self.container_path + '/DOC2/display')
269        self.assertTrue(
270            '<h1>Hallo Welt</h1>' in self.browser.contents)
271
272        # Documents can be removed
273        self.browser.getLink("en", index=3).click()
274        self.browser.getLink("Documents").click()
275        self.browser.getLink("Manage").click()
276        ctrl = self.browser.getControl(name='val_id')
277        ctrl.getControl(value=document.document_id).selected = True
278        self.browser.getControl("Remove selected", index=0).click()
279        self.assertTrue('Successfully removed' in self.browser.contents)
280
281        # All actions are being logged
282        logfile = os.path.join(
283            self.app['datacenter'].storage, 'logs', 'main.log')
284        logcontent = open(logfile).read()
285
286        self.assertTrue(
287            'INFO - zope.mgr - %s - Document created' % document.document_id
288            in logcontent)
289        self.assertTrue(
290            'INFO - zope.mgr - documents.browser.DocumentAddFormPage - added: HTML Document %s'
291            % document.document_id in logcontent)
292        self.assertTrue(
293            'INFO - zope.mgr - documents.browser.HTMLDocumentManageFormPage - %s - saved: title + html_multilingual'
294            % document.document_id in logcontent)
295        self.assertTrue(
296            'INFO - zope.mgr - %s - Document published' % document.document_id
297            in logcontent)
298        self.assertTrue(
299            'INFO - zope.mgr - documents.browser.DocumentsContainerManageFormPage - removed: %s'
300            % document.document_id in logcontent)
301
302    def test_manage_rest_document(self):
303        # Managers can access the pages of documentsconter
304        # and can perform actions
305        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
306        self.browser.open('http://localhost/app')
307        self.assertEqual(self.browser.headers['Status'], '200 Ok')
308        self.browser.getLink("Documents").click()
309        self.assertEqual(self.browser.url, self.container_path)
310        self.browser.getLink("Manage").click()
311        self.browser.getControl("Add document").click()
312        self.browser.getControl(name="doctype").value = ['RESTDocument']
313        self.browser.getControl(name="form.document_id").value = 'DOC3'
314        self.browser.getControl(name="form.title").value = 'My REST Document'
315        self.browser.getControl("Add document").click()
316        self.assertTrue('REST Document added.' in self.browser.contents)
317        document = self.app['documents']['DOC3']
318
319        # Document can be edited
320        self.browser.getControl(name="form.rest_multilingual").value = """
321----------
322Main Title
323----------
324
325Subtitle
326========
327>>de<<
328----------
329Haupttitel
330----------
331
332Untertitel
333==========
334"""
335        self.browser.getControl("Save").click()
336        self.assertTrue('Form has been saved.' in self.browser.contents)
337        self.browser.getLink("View").click()
338        self.assertEqual(self.browser.url, self.container_path + '/DOC3/index')
339        self.assertTrue(
340            '<h1 class="title">Main Title</h1>' in self.browser.contents)
341        self.assertTrue(
342            '<h2 class="subtitle" id="subtitle">Subtitle</h2>'
343            in self.browser.contents)
344        self.assertFalse(
345            '<h1 class="title">Haupttitel</h1>' in self.browser.contents)
346        self.browser.getLink("de", index=2).click()
347        self.assertFalse(
348            '<h1 class="title">Main Title</h1>' in self.browser.contents)
349        self.assertTrue(
350            '<h1 class="title">Haupttitel</h1>' in self.browser.contents)
351        # The content can be rendered
352        IWorkflowState(document).setState(PUBLISHED)
353        self.browser.open(self.container_path + '/DOC3/display')
354        self.assertTrue(
355            '<h1 class="title">Haupttitel</h1>' in self.browser.contents)
356        # The page label (object title) is not displayed
357        self.assertFalse(
358            '<h1 class="kofa-content-label">My REST Document</h1>'
359            in self.browser.contents)
Note: See TracBrowser for help on using the repository browser.