testIngestion.py 45.3 KB
Newer Older
1 2
##############################################################################
#
3 4 5
# Copyright (c) 2007 Nexedi SA and Contributors. All Rights Reserved.
#                    Bartek Gorny <bg@erp5.pl>
#                    Jean-Paul Smets <jp@nexedi.com>
6
#                    Ivan Tyagov <ivan@nexedi.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#
# 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.
#
##############################################################################

Jérome Perrin's avatar
Jérome Perrin committed
31 32
import unittest
import os, cStringIO, zipfile
33
from xml.dom.minidom import parseString
34 35
from Testing import ZopeTestCase
from DateTime import DateTime
36
from AccessControl.SecurityManagement import newSecurityManager
37 38 39
from Products.ERP5Type.Utils import convertToUpperCase
from Products.ERP5Type.tests.ERP5TypeTestCase import ERP5TypeTestCase
from Products.ERP5Type.tests.Sequence import SequenceList
40
from Products.ERP5OOo.Document.OOoDocument import ConversionError
41
from Products.ERP5.Document.File import _unpackData
42
from zLOG import LOG, INFO, ERROR
43

44 45
# Define the conversion server host
conversion_server_host = ('127.0.0.1', 8008)
46

47
# test files' home
48
TEST_FILES_HOME = os.path.join(os.path.dirname(__file__), 'test_document')
49 50 51
FILE_NAME_REGULAR_EXPRESSION = "(?P<reference>[A-Z]{3,6})-(?P<language>[a-z]{2})-(?P<version>[0-9]{3})"
REFERENCE_REGULAR_EXPRESSION = "(?P<reference>[A-Z]{3,6})(-(?P<language>[a-z]{2}))?(-(?P<version>[0-9]{3}))?"

52 53 54 55 56 57
def printAndLog(msg):
  """
  A utility function to print a message
  to the standard output and to the LOG
  at the same time
  """
58 59 60 61
  msg = str(msg)
  ZopeTestCase._print('\n ' + msg)
  LOG('Testing... ', 0, msg)

62 63 64 65 66 67
class FileUploadTest(file):

  __allow_access_to_unprotected_subobjects__=1

  def __init__(self, path, name):
    self.filename = name
68
    file.__init__(self, path, 'rb')
69 70 71
    self.headers = {}

def makeFilePath(name):
72
  return os.path.join(TEST_FILES_HOME, name)
73 74

def makeFileUpload(name):
75
  path = makeFilePath(name)
76
  return FileUploadTest(path, name)
77 78 79 80 81 82 83

class TestIngestion(ERP5TypeTestCase):
  """
    ERP5 Document Management System - test file ingestion mechanism
  """

  # pseudo constants
84
  RUN_ALL_TEST = 1
85 86 87 88 89 90 91 92 93 94
  QUIET = 0

  ##################################
  ##  ZopeTestCase Skeleton
  ##################################

  def getTitle(self):
    """
      Return the title of the current test set.
    """
95
    return "ERP5 DMS - Ingestion"
96 97 98 99 100

  def getBusinessTemplateList(self):
    """
      Return the list of required business templates.
    """
101 102
    return ('erp5_base', 'erp5_web', 'erp5_dms_mysql_innodb_catalog', 'erp5_dms')
    #return ('erp5_base', 'erp5_trade', 'erp5_project', 'erp5_dms')
103 104 105 106 107 108

  def afterSetUp(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
      Initialize the ERP5 site.
    """
    self.login()
109 110
    self.datetime = DateTime()
    self.portal = self.getPortal()
111
    self.portal_categories = self.getCategoryTool()
112 113 114
    self.portal_catalog = self.getCatalogTool()
    self.createDefaultCategoryList()
    self.setSystemPreference()
115
    self.createTools()
116
    self.setSimulatedNotificationScript()
117 118 119

  def createTools(self):
    """
120
      Set up missing portal_mailin tool.
121
    """
122
    # Delete and create portal_contributions
123 124 125 126 127 128
    #try:
    #  self.portal._delObject('portal_contributions')
    #except AttributeError:
    #  pass
    #addTool = self.portal.manage_addProduct['ERP5'].manage_addTool
    #addTool('ERP5 Contribution Tool', None)
129
    # Delete and create portal_mailin
130 131 132 133 134 135 136 137
    try:
      self.portal._delObject('portal_mailin')
    except AttributeError:
      pass
    addTool = self.portal.manage_addProduct['CMFMailIn'].manage_addTool
    addTool('CMF Mail In Tool', None)
    mailin = self.portal.portal_mailin
    mailin.edit_configuration('Document_ingestEmail')
138

139
  def setSystemPreference(self):
140
    default_pref = self.portal.portal_preferences.default_site_preference
141 142
    default_pref.setPreferredOoodocServerAddress(conversion_server_host[0])
    default_pref.setPreferredOoodocServerPortNumber(conversion_server_host[1])
143 144
    default_pref.setPreferredDocumentFileNameRegularExpression(FILE_NAME_REGULAR_EXPRESSION)
    default_pref.setPreferredDocumentReferenceRegularExpression(REFERENCE_REGULAR_EXPRESSION)
145 146
    default_pref.enable()

147 148 149 150 151 152 153 154 155 156 157 158
  def setSimulatedNotificationScript(self, sequence=None, sequence_list=None, **kw):
    """
      Create simulated (empty) email notification script
    """
    context = self.portal.portal_skins.custom
    script_id = 'Document_notifyByEmail'
    if not hasattr(context, script_id):
      factory = context.manage_addProduct['PythonScripts'].manage_addPythonScript
      factory(id=script_id)
    script = getattr(context, script_id)
    script.ZPythonScript_edit('email_to, event, doc, **kw', 'return')

159 160 161 162 163 164 165 166 167

  ##################################
  ##  Useful methods
  ##################################

  def login(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
      Create a new manager user and login.
    """
168
    user_name = 'dms_user'
169
    user_folder = self.portal.acl_users
170 171 172 173
    user_folder._doAddUser(user_name, '', ['Manager', 'Owner', 'Assignor'], [])
    user = user_folder.getUserById(user_name).__of__(user_folder)
    newSecurityManager(None, user)

174
  def createDefaultCategoryList(self):
175
    """
176 177 178 179 180 181
      Create some categories for testing. DMS security
      is based on group, site, function, publication_section
      and projects.

      NOTE (XXX): some parts of this method could be either
      moved to Category Tool or to ERP5 Test Case.
182 183 184 185 186 187
    """
    self.category_list = [
                         # Role categories
                          {'path' : 'role/internal'
                           ,'title': 'Internal'
                           }
188 189 190 191 192 193 194 195 196
                          ,{'path' : 'function/musician/wind/saxophone'
                           ,'title': 'Saxophone'
                           }
                          ,{'path' : 'group/medium'
                           ,'title': 'Medium'
                           }
                          ,{'path' : 'site/arctic/spitsbergen'
                           ,'title': 'Spitsbergen'
                           }
197 198 199
                          ,{'path' : 'group/anybody'
                           ,'title': 'Anybody'
                           }
200 201 202 203 204 205
                          ,{'path' : 'publication_section/cop'
                           ,'title': 'COPs'
                           }
                          ,{'path' : 'publication_section/cop/one'
                           ,'title': 'COP one'
                           }
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
                         ]

    # Create categories
    # Note : this code was taken from the CategoryTool_importCategoryFile python
    #        script (packaged in erp5_core).
    for category in self.category_list:
      keys = category.keys()
      if 'path' in keys:
        base_path_obj = self.portal_categories
        is_base_category = True
        for category_id in category['path'].split('/'):
          # The current category is not existing
          if category_id not in base_path_obj.contentIds():
            # Create the category
            if is_base_category:
              category_type = 'Base Category'
            else:
              category_type = 'Category'
            base_path_obj.newContent( portal_type       = category_type
                                    , id                = category_id
                                    , immediate_reindex = 1
                                    )
          base_path_obj = base_path_obj[category_id]
          is_base_category = False
        new_category = base_path_obj

        # Set the category properties
        for key in keys:
          if key != 'path':
            method_id = "set" + convertToUpperCase(key)
            value = category[key]
            if value not in ('', None):
              if hasattr(new_category, method_id):
                method = getattr(new_category, method_id)
                method(value.encode('UTF-8'))
241 242
    get_transaction().commit()
    self.tic()
243 244 245 246 247 248

  def getCategoryList(self, base_category=None):
    """
      Get a list of categories with same base categories.
    """
    categories = []
249
    if base_category is not None:
250 251 252 253 254
      for category in self.category_list:
        if category["path"].split('/')[0] == base_category:
          categories.append(category)
    return categories

255
  def getDocument(self, id):
256 257 258 259 260 261
    """
      Returns a document with given ID in the
      document module.
    """
    document_module = self.portal.document_module
    return getattr(document_module, id)
262

263
  def checkIsObjectCatalogged(self, portal_type, **kw):
264
    """
265 266 267 268 269
      Make sure that a document with given portal type
      and kw properties is already present in the catalog.

      Typical use of this method consists in providing
      an id or reference.
270
    """
271
    res = self.portal_catalog(portal_type=portal_type, **kw.copy())
272
    self.assertEquals(len(res), 1)
273 274
    for key, value in kw.items():
      self.assertEquals(res[0].getProperty(key), value)
275

276
  def newEmptyCataloggedDocument(self, portal_type, id):
277
    """
278 279 280 281 282 283
      Create an empty document of given portal type
      and given ID. 

      Documents are immediately catalogged and verified
      both form catalog point of view and from their
      presence in the document module.
284
    """
285 286 287 288 289 290 291 292 293 294 295
    document_module = self.portal.getDefaultModule(portal_type)
    document = getattr(document_module, id, None)
    if document is not None:
      document_module.manage_delObjects([id,])
    document = document_module.newContent(portal_type=portal_type, id=id)
    document.reindexObject()
    get_transaction().commit()
    self.tic()
    self.checkIsObjectCatalogged(portal_type, id=id, parent_uid=document_module.getUid())
    self.assert_(hasattr(document_module, id))
    return document
296

297
  def ingestFormatList(self, document_id, format_list, portal_type=None):
298
    """
299 300 301 302 303 304 305 306 307
      Upload in document document_id all test files which match
      any of the formats in format_list.

      portal_type can be specified to force the use of
      the default module for a given portal type instead
      of the document module.

      For every file, this checks is the word "magic"
      is present in both SearchableText and asText.
308 309
    """
    if portal_type is None:
310
      document_module = self.portal.document_module
311
    else:
312 313 314
      document_module = self.portal.getDefaultModule(portal_type)
    context = getattr(document_module, document_id)
    for revision, format in enumerate(format_list):
315
      filename = 'TEST-en-002.' + format
316
      printAndLog('Ingesting file: ' + filename)
317 318
      f = makeFileUpload(filename)
      context.edit(file=f)
319
      context.convertToBaseFormat()
320 321 322
      context.reindexObject()
      get_transaction().commit()
      self.tic()
323
      self.failUnless(context.hasFile())
324
      if context.getPortalType() in ('Image', 'File', 'PDF'):
325
        # File and images do not support conversion to text in DMS
326
        # PDF has not implemented _convertToBaseFormat() so can not be converted
327 328 329 330
        self.assertEquals(context.getExternalProcessingState(), 'uploaded')
      else:
        self.assertEquals(context.getExternalProcessingState(), 'converted') # this is how we know if it was ok or not
        self.assert_('magic' in context.SearchableText())
331
        self.assert_('magic' in str(context.asText()))
332

333
  def checkDocumentExportList(self, document_id, format, asserted_target_list):
334
    """
335 336 337
      Upload document ID document_id with
      a test file of given format and assert that the document
      can be converted to any of the formats in asserted_target_list
338
    """
339
    context = self.getDocument(document_id)
340 341 342
    filename = 'TEST-en-002.' + format
    f = makeFileUpload(filename)
    context.edit(file=f)
343
    context.convertToBaseFormat()
344 345 346
    context.reindexObject()
    get_transaction().commit()
    self.tic()
347 348
    # We call clear cache to be sure that the target list is updated
    self.getPortal().portal_caches.clearCache()
349 350
    target_list = context.getTargetFormatList()
    for target in asserted_target_list:
351 352
      self.assert_(target in target_list)

Bartek Górny's avatar
Bartek Górny committed
353
  def contributeFileList(self, with_portal_type=False):
354
    """
355 356 357
      Tries to a create new content through portal_contributions
      for every possible file type. If with_portal_type is set
      to true, portal_type is specified when calling newContent
358 359
      on portal_contributions.
      http://framework.openoffice.org/documentation/mimetypes/mimetypes.html
360
    """
361 362 363 364
    created_documents = []
    extension_to_type = (('ppt', 'Presentation')
                        ,('doc', 'Text')
                        ,('sdc', 'Spreadsheet')
365
                        ,('sxc', 'Spreadsheet')
366 367 368 369
                        ,('pdf', 'PDF')
                        ,('jpg', 'Image')
                        ,('py', 'File')
                        )
370 371
    counter = 1
    old_portal_type = ''
372 373
    for extension, portal_type in extension_to_type:
      filename = 'TEST-en-002.' + extension
374
      printAndLog(filename)
375
      file = makeFileUpload(filename)
376 377 378 379 380 381 382
      # if we change portal type we must change version because 
      # mergeRevision would fail
      if portal_type != old_portal_type:
        counter += 1
        old_portal_type = portal_type
      file.filename = 'TEST-en-00%d.%s' % (counter, extension)
      printAndLog(file.filename)
383
      if with_portal_type:
384
        ob = self.portal.portal_contributions.newContent(portal_type=portal_type, file=file)
385 386
      else:
        ob = self.portal.portal_contributions.newContent(file=file)
387
      # reindex
388 389 390 391 392 393 394 395 396
      ob.immediateReindexObject()
      created_documents.append(ob)
    get_transaction().commit()
    self.tic()
    # inspect created objects
    count = 0
    for extension, portal_type in extension_to_type:
      ob = created_documents[count]
      count+=1
397
      self.assertEquals(ob.getPortalType(), portal_type)
398
      self.assertEquals(ob.getReference(), 'TEST')
399 400
      if ob.getPortalType() in ('Image', 'File', 'PDF'):
        # Image, File and PDF are not converted to a base format
401 402
        self.assertEquals(ob.getExternalProcessingState(), 'uploaded')
      else:
403 404 405
        # We check if conversion has succeeded by looking
        # at the external_processing workflow
        self.assertEquals(ob.getExternalProcessingState(), 'converted')
406
        self.assert_('magic' in ob.SearchableText())
407 408 409 410 411 412

  def newPythonScript(self, object_id, script_id, argument_list, code):
    """
      Creates a new python script with given argument_list
      and source code.
    """
413 414 415 416
    context = self.getDocument(object_id)
    factory = context.manage_addProduct['PythonScripts'].manage_addPythonScript
    factory(id=script_id)
    script = getattr(context, script_id)
417
    script.ZPythonScript_edit(argument_list, code)
418

419
  def setDiscoveryOrder(self, order, id='one'):
420
    """
421 422
      Creates a script to define the metadata discovery order
      for Text documents.
423 424
    """
    script_code = "return %s" % str(order)
425
    self.newPythonScript(id, 'Text_getPreferredDocumentMetadataDiscoveryOrderList', '', script_code)
426
    
427 428 429 430 431 432
  def discoverMetadata(self, document_id='one'):
    """
      Sets input parameters and on the document ID document_id
      and discover metadata. For reindexing
    """
    context = self.getDocument(document_id)
433 434 435 436 437
    # simulate user input
    context._backup_input = dict(reference='INPUT', 
                                 language='in',
                                 version='004', 
                                 short_title='from_input',
438
                                 contributor='person_module/james')
439 440
    # pass to discovery file_name and user_login
    context.discoverMetadata(context.getSourceReference(), 'john_doe') 
441 442 443
    context.reindexObject()
    get_transaction().commit()
    self.tic()
444

445 446 447 448 449 450 451
  def checkMetadataOrder(self, expected_metadata, document_id='one'):
    """
    Asserts that metadata of document ID document_id
    is the same as expected_metadata
    """
    context = self.getDocument(document_id)
    for k, v in expected_metadata.items():
452
      self.assertEquals(context.getProperty(k), v)
453 454 455 456

  ##################################
  ##  Basic steps
  ##################################
457 458 459
 
  def stepTic(self, sequence=None, sequence_list=None, **kw):
    self.tic()
460 461 462

  def stepCreatePerson(self, sequence=None, sequence_list=None, **kw):
    """
463
      Create a person with ID "john" if it does not exists already
464 465
    """
    portal_type = 'Person'
466
    id = 'john'
467
    reference = 'john_doe'
468 469 470 471
    person_module = self.portal.person_module
    if getattr(person_module, 'john', False): return 
    person = person_module.newContent( portal_type='Person'
                                     , id=id
472 473
                                     ,  reference = reference
                                     )
474
    person.setDefaultEmailText('john@doe.com')
475 476 477 478
    person.reindexObject(); get_transaction().commit(); self.tic()

  def stepCreateTextDocument(self, sequence=None, sequence_list=None, **kw):
    """
479 480
      Create an empty Text document with ID 'one'
      This document will be used in most tests.
481
    """
482
    self.newEmptyCataloggedDocument('Text', 'one')
483

484 485
  def stepCreateSpreadsheetDocument(self, sequence=None, sequence_list=None, **kw):
    """
486 487
      Create an empty Spreadsheet document with ID 'two'
      This document will be used in most tests.
488
    """
489
    self.newEmptyCataloggedDocument('Spreadsheet', 'two')
490 491 492

  def stepCreatePresentationDocument(self, sequence=None, sequence_list=None, **kw):
    """
493 494
      Create an empty Presentation document with ID 'three'
      This document will be used in most tests.
495
    """
496
    self.newEmptyCataloggedDocument('Presentation', 'three')
497 498 499

  def stepCreateDrawingDocument(self, sequence=None, sequence_list=None, **kw):
    """
500 501
      Create an empty Drawing document with ID 'four'
      This document will be used in most tests.
502
    """
503
    self.newEmptyCataloggedDocument('Drawing', 'four')
504

505 506
  def stepCreatePDFDocument(self, sequence=None, sequence_list=None, **kw):
    """
507 508
      Create an empty PDF document with ID 'five'
      This document will be used in most tests.
509
    """
510
    self.newEmptyCataloggedDocument('PDF', 'five')
511 512 513

  def stepCreateImageDocument(self, sequence=None, sequence_list=None, **kw):
    """
514 515
      Create an empty Image document with ID 'six'
      This document will be used in most tests.
516
    """
517
    self.newEmptyCataloggedDocument('Image', 'six')
518

519 520
  def stepCheckEmptyState(self, sequence=None, sequence_list=None, **kw):
    """
521 522
      Check if the document is in "empty" processing state
      (ie. no file upload has been done yet)
523
    """
524
    context = self.getDocument('one')
525 526 527 528
    return self.assertEquals(context.getExternalProcessingState(), 'empty')

  def stepCheckUploadedState(self, sequence=None, sequence_list=None, **kw):
    """
529 530
      Check if the document is in "uploaded" processing state
      (ie. a file upload has been done)
531
    """
532
    context = self.getDocument('one')
533 534 535 536
    return self.assertEquals(context.getExternalProcessingState(), 'uploaded')

  def stepCheckConvertedState(self, sequence=None, sequence_list=None, **kw):
    """
537 538 539
      Check if the document is in "converted" processing state
      (ie. a file upload has been done and the document has
      been converted)
540
    """
541
    context = self.getDocument('one')
542 543
    return self.assertEquals(context.getExternalProcessingState(), 'converted')

544 545 546 547 548
  def stepStraightUpload(self, sequence=None, sequence_list=None, **kw):
    """
      Upload a file directly from the form
      check if it has the data and source_reference
    """
549
    filename = 'TEST-en-002.doc'
550 551 552
    document = self.getDocument('one')
    # Revision is 0 before upload (revisions are strings)
    self.assertEquals(document.getRevision(), '0')
553
    f = makeFileUpload(filename)
554
    document.edit(file=f)
555 556
    # set source
    document.setSourceReference(filename)
557
    self.assert_(document.hasFile())
558 559
    # source_reference set to file name ?
    self.assertEquals(document.getSourceReference(), filename) 
560 561 562 563 564
    # Revision is 1 after upload (revisions are strings)
    self.assertEquals(document.getRevision(), '1')
    document.reindexObject()
    get_transaction().commit()
    self.tic()
565 566 567

  def stepDialogUpload(self, sequence=None, sequence_list=None, **kw):
    """
568 569
      Upload a file using the dialog script Document_uploadFile
      and make sure this increases the revision
570
    """
571
    context = self.getDocument('one')
572
    f = makeFileUpload('TEST-en-002.doc')
573
    revision = context.getRevision()
574
    context.Document_uploadFile(file=f)
575 576 577 578
    self.assertEquals(context.getRevision(), str(int(revision) + 1))
    context.reindexObject()
    get_transaction().commit()
    self.tic()
579 580 581

  def stepDiscoverFromFilename(self, sequence=None, sequence_list=None, **kw):
    """
582 583 584
      Upload a file using the dialog script Document_uploadFile.
      This should trigger metadata discovery and we should have
      basic coordinates immediately, from first stage.
585
    """
586
    context = self.getDocument('one')
587 588 589 590 591 592 593 594 595 596 597 598 599 600
    file_name = 'TEST-en-002.doc'
    # First make sure the regular expressions work
    property_dict = context.getPropertyDictFromFileName(file_name)
    self.assertEquals(property_dict['reference'], 'TEST')
    self.assertEquals(property_dict['language'], 'en')
    self.assertEquals(property_dict['version'], '002')
    # Then make sure content discover works
    # XXX - This part must be extended
    property_dict = context.getPropertyDictFromContent()
    self.assertEquals(property_dict['title'], 'title')
    self.assertEquals(property_dict['description'], 'comments')
    self.assertEquals(property_dict['subject_list'], ['keywords'])
    # Then make sure metadata discovery works
    f = makeFileUpload(file_name)
601 602 603 604 605
    context.Document_uploadFile(file=f)
    self.assertEquals(context.getReference(), 'TEST')
    self.assertEquals(context.getLanguage(), 'en')
    self.assertEquals(context.getVersion(), '002')

606 607
  def stepCheckConvertedContent(self, sequence=None, sequence_list=None, **kw):
    """
608 609 610
      Check that the input file was successfully converted
      and that its SearchableText and asText contain
      the word "magic"
611 612
    """
    self.tic()
613
    context = self.getDocument('one')
614
    self.assert_(context.hasBaseData())
615
    self.assert_('magic' in context.SearchableText())
616
    self.assert_('magic' in str(context.asText()))
617

618
  def stepSetSimulatedDiscoveryScript(self, sequence=None, sequence_list=None, **kw):
619 620 621 622
    """
      Create Text_getPropertyDictFrom[source] scripts
      to simulate custom site's configuration
    """
623 624 625
    self.newPythonScript('one', 'Text_getPropertyDictFromUserLogin',
                         'user_name=None', "return {'contributor':'person_module/john'}")
    self.newPythonScript('one', 'Text_getPropertyDictFromContent', '',
626
                         "return {'short_title':'short', 'title':'title', 'contributor':'person_module/john',}")
627 628 629 630 631 632

  def stepTestMetadataSetting(self, sequence=None, sequence_list=None, **kw):
    """
      Upload with custom getPropertyDict methods
      check that all metadata are correct
    """
633
    context = self.getDocument('one')
634 635 636 637
    f = makeFileUpload('TEST-en-002.doc')
    context.Document_uploadFile(file=f)
    get_transaction().commit()
    self.tic()
638 639 640
    # Then make sure content discover works
    property_dict = context.getPropertyDictFromUserLogin()
    self.assertEquals(property_dict['contributor'], 'person_module/john')
641 642 643 644
    # reference from filename (the rest was checked some other place)
    self.assertEquals(context.getReference(), 'TEST')
    # short_title from content
    self.assertEquals(context.getShortTitle(), 'short')
645
    # title from metadata inside the document
646
    self.assertEquals(context.getTitle(), 'TEST-en-002')
647 648 649 650 651
    # contributors from user
    self.assertEquals(context.getContributor(), 'person_module/john')

  def stepEditMetadata(self, sequence=None, sequence_list=None, **kw):
    """
652
      we change metadata in a document which has ODF
653
    """
654
    context = self.getDocument('one')
655 656 657
    kw = dict(title='another title',
              subject='another subject',
              description='another description')
Bartek Górny's avatar
Bartek Górny committed
658
    context.updateBaseMetadata(**kw)
659 660
    # context.edit(**kw) - this works from UI but not from here - is there a problem somewhere?
    context.reindexObject(); get_transaction().commit();
Bartek Górny's avatar
Bartek Górny committed
661
    self.tic();
662 663 664 665 666 667 668 669

  def stepCheckChangedMetadata(self, sequence=None, sequence_list=None, **kw):
    """
      then we download it and check if it is changed
    """
    # XXX actually this is an example of how it should be
    # implemented in OOoDocument class - we don't really
    # need oood for getting/setting metadata...
670
    context = self.getDocument('one')
Bartek Górny's avatar
Bartek Górny committed
671
    newcontent = context.getBaseData()
672
    cs = cStringIO.StringIO()
673
    cs.write(_unpackData(newcontent))
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
    z = zipfile.ZipFile(cs)
    s = z.read('meta.xml')
    xmlob = parseString(s)
    title = xmlob.getElementsByTagName('dc:title')[0].childNodes[0].data
    self.assertEquals(title, u'another title')
    subject = xmlob.getElementsByTagName('dc:subject')[0].childNodes[0].data
    self.assertEquals(subject, u'another subject')
    description = xmlob.getElementsByTagName('dc:description')[0].childNodes[0].data
    self.assertEquals(description, u'another description')
    
  def stepIngestTextFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported text formats
      make sure they are converted
    """
689 690
    format_list = ['rtf', 'doc', 'txt', 'sxw', 'sdw']
    self.ingestFormatList('one', format_list)
691 692 693 694 695 696

  def stepIngestSpreadsheetFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported spreadsheet formats
      make sure they are converted
    """
697 698
    format_list = ['xls', 'sxc', 'sdc']
    self.ingestFormatList('two', format_list)
699 700 701 702 703 704

  def stepIngestPresentationFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported presentation formats
      make sure they are converted
    """
705 706
    format_list = ['ppt', 'sxi', 'sdd']
    self.ingestFormatList('three', format_list)
707

708 709 710 711 712
  def stepIngestPDFFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported PDF formats
      make sure they are converted
    """
713 714
    format_list = ['pdf']
    self.ingestFormatList('five', format_list)
715

716 717 718 719 720
  def stepIngestDrawingFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported presentation formats
      make sure they are converted
    """
721
    format_list = ['sxd',]
722
    self.ingestFormatList('four', format_list)
723

724
  def stepIngestPDFFormats(self, sequence=None, sequence_list=None, **kw):
725
    """
726 727
      ingest all supported pdf formats
      make sure they are converted
728
    """
729 730
    format_list = ['pdf']
    self.ingestFormatList('five', format_list)
731 732 733 734 735

  def stepIngestImageFormats(self, sequence=None, sequence_list=None, **kw):
    """
      ingest all supported image formats
    """
736 737
    format_list = ['jpg', 'gif', 'bmp', 'png']
    self.ingestFormatList('six', format_list, 'Image')
738 739

  def stepCheckTextDocumentExportList(self, sequence=None, sequence_list=None, **kw):
740
    self.checkDocumentExportList('one', 'doc', ['pdf', 'doc', 'rtf', 'writer.html', 'txt'])
741 742

  def stepCheckSpreadsheetDocumentExportList(self, sequence=None, sequence_list=None, **kw):
743
    self.checkDocumentExportList('two', 'xls', ['csv', 'calc.html', 'xls', 'calc.pdf'])
744 745 746 747 748 749 750

  def stepCheckPresentationDocumentExportList(self, sequence=None, sequence_list=None, **kw):
    self.checkDocumentExportList('three', 'ppt', ['impr.pdf', 'ppt'])

  def stepCheckDrawingDocumentExportList(self, sequence=None, sequence_list=None, **kw):
    self.checkDocumentExportList('four', 'sxd', ['jpg', 'draw.pdf', 'svg'])

751
  def stepExportPDF(self, sequence=None, sequence_list=None, **kw):
752
    """
753
      Try to export PDF to text and HTML
754
    """
755
    document = self.getDocument('five')
756
    f = makeFileUpload('TEST-en-002.pdf')
757
    document.edit(file=f)
758 759 760 761 762 763
    mime, text = document.convert('text')
    self.failUnless('magic' in text)
    self.failUnless(mime == 'text/plain')
    mime, html = document.convert('html')
    self.failUnless('magic' in html)
    self.failUnless(mime == 'text/html')
764 765

  def stepExportImage(self, sequence=None, sequence_list=None, **kw):
766 767 768 769 770
    """
      Don't see a way to test it here, Image.index_html makes heavy use 
      of REQUEST and RESPONSE, and the rest of the implementation is way down
      in Zope core
    """
771
    printAndLog('stepExportImage not implemented')
772

773
  def stepCheckHasSnapshot(self, sequence=None, sequence_list=None, **kw):
774
    context = self.getDocument('one')
Bartek Górny's avatar
Bartek Górny committed
775
    self.failUnless(context.hasSnapshotData())
776 777

  def stepCheckHasNoSnapshot(self, sequence=None, sequence_list=None, **kw):
778
    context = self.getDocument('one')
Bartek Górny's avatar
Bartek Górny committed
779
    self.failIf(context.hasSnapshotData())
780 781

  def stepCreateSnapshot(self, sequence=None, sequence_list=None, **kw):
782
    context = self.getDocument('one')
783 784 785
    context.createSnapshot()

  def stepTryRecreateSnapshot(self, sequence=None, sequence_list=None, **kw):
786
    context = self.getDocument('one')
787 788 789 790
    # XXX this always fails, don't know why
    #self.assertRaises(ConversionError, context.createSnapshot)

  def stepDeleteSnapshot(self, sequence=None, sequence_list=None, **kw):
791
    context = self.getDocument('one')
792 793
    context.deleteSnapshot()

794 795 796 797 798 799 800 801
  def stepCleanUp(self, sequence=None, sequence_list=None, **kw):
    """
        Clean up DMS system from old content.
    """
    portal = self.getPortal()
    for module in (portal.document_module, portal.image_module,):
      module.manage_delObjects(map(None, module.objectIds()))
    
Bartek Górny's avatar
Bartek Górny committed
802
  def stepContributeFileListWithType(self, sequence=None, sequence_list=None, **kw):
803 804 805 806
    """
      Contribute all kinds of files giving portal type explicitly
      TODO: test situation whereby portal_type given explicitly is wrong
    """
Bartek Górny's avatar
Bartek Górny committed
807
    self.contributeFileList(with_portal_type=True)
808

Bartek Górny's avatar
Bartek Górny committed
809
  def stepContributeFileListWithNoType(self, sequence=None, sequence_list=None, **kw):
810 811 812 813
    """
      Contribute all kinds of files
      let the system figure out portal type by itself
    """
Bartek Górny's avatar
Bartek Górny committed
814
    self.contributeFileList(with_portal_type=False)
815

816
  def stepSetSimulatedDiscoveryScriptForOrdering(self, sequence=None, sequence_list=None, **kw):
817 818 819 820 821 822 823 824 825 826
    """
      set scripts which are supposed to overwrite each other's metadata
      desing is the following:
                    File Name     User    Content        Input
      reference     TEST          USER    CONT           INPUT
      language      en            us                     in
      version       002                   003            004
      contributor                 john    jack           james
      short_title                         from_content   from_input
    """
827 828
    self.newPythonScript('one', 'Text_getPropertyDictFromUserLogin', 'user_name=None', "return {'reference':'USER', 'language':'us', 'contributor':'person_module/john'}")
    self.newPythonScript('one', 'Text_getPropertyDictFromContent', '', "return {'reference':'CONT', 'version':'003', 'contributor':'person_module/jack', 'short_title':'from_content'}")
829

Bartek Górny's avatar
Bartek Górny committed
830
  def stepCheckMetadataSettingOrderFICU(self, sequence=None, sequence_list=None, **kw):
831 832
    """
     This is the default
833
    """  
834
    expected_metadata = dict(reference='TEST', language='en', version='002', short_title='from_input', contributor='person_module/james')
835 836
    self.setDiscoveryOrder(['file_name', 'input', 'content', 'user_login'])
    self.discoverMetadata()
837
    self.checkMetadataOrder(expected_metadata)
838 839 840 841 842

  def stepCheckMetadataSettingOrderCUFI(self, sequence=None, sequence_list=None, **kw):
    """
     Content - User - Filename - Input
    """
843
    expected_metadata = dict(reference='CONT', language='us', version='003', short_title='from_content', contributor='person_module/jack')
844 845
    self.setDiscoveryOrder(['content', 'user_login', 'file_name', 'input'])
    self.discoverMetadata()
846
    self.checkMetadataOrder(expected_metadata)
847 848 849 850 851

  def stepCheckMetadataSettingOrderUIFC(self, sequence=None, sequence_list=None, **kw):
    """
     User - Input - Filename - Content
    """
852
    expected_metadata = dict(reference='USER', language='us', version='004', short_title='from_input', contributor='person_module/john')
853 854
    self.setDiscoveryOrder(['user_login', 'input', 'file_name', 'content'])
    self.discoverMetadata()
855
    self.checkMetadataOrder(expected_metadata)
856 857 858 859 860

  def stepCheckMetadataSettingOrderICUF(self, sequence=None, sequence_list=None, **kw):
    """
     Input - Content - User - Filename
    """
861
    expected_metadata = dict(reference='INPUT', language='in', version='004', short_title='from_input', contributor='person_module/james')
862 863
    self.setDiscoveryOrder(['input', 'content', 'user_login', 'file_name'])
    self.discoverMetadata()
864
    self.checkMetadataOrder(expected_metadata)
865 866 867 868 869

  def stepCheckMetadataSettingOrderUFCI(self, sequence=None, sequence_list=None, **kw):
    """
     User - Filename - Content - Input
    """
870
    expected_metadata = dict(reference='USER', language='us', version='002', short_title='from_content', contributor='person_module/john')
871 872
    self.setDiscoveryOrder(['user_login', 'file_name', 'content', 'input'])
    self.discoverMetadata()
873
    self.checkMetadataOrder(expected_metadata)
874

875
  def stepReceiveEmailFromUnknown(self, sequence=None, sequence_list=None, **kw):
876 877 878 879 880 881 882 883 884 885
    """
      email was sent in by someone who is not in the person_module
    """
    self.failUnless(hasattr(self.portal, 'portal_mailin'))
    f = open(makeFilePath('email_from.txt'))
    res = self.portal.portal_mailin.postMailMessage(f.read())
    # we check if the mailin returned anything - it should return a message saying that the recipient does not exist
    # the exact wording may differ
    # the way mailin works is that if mail was accepted it returns None
    self.failUnless(res)  
886 887

  def stepReceiveEmailFromJohn(self, sequence=None, sequence_list=None, **kw):
888 889 890 891 892
    """
      email was sent in by someone who is in the person_module
    """
    self.failUnless(hasattr(self.portal, 'portal_mailin'))
    f = open(makeFilePath('email_from.txt'))
893
    res = self.portal.portal_mailin.postUTF8MailMessage(f.read())
894
    printAndLog(res)
895 896 897
    self.failIf(res)  
    get_transaction().commit()
    self.tic()
898 899

  def stepVerifyEmailedDocuments(self, sequence=None, sequence_list=None, **kw):
900 901 902 903 904 905
    """
      find the newly mailed-in document by its reference
      check its properties
    """
    res = self.portal_catalog(reference='MAIL')
    self.assertEquals(len(res), 1) # check if it is there
906
    document = res[0].getObject()
907
    john_is_owner = 0
908
    for role in document.get_local_roles():
909 910 911 912
      if role[0] == 'john_doe' and 'Owner' in role[1]:
        john_is_owner = 1
        break
    self.failUnless(john_is_owner)
913

914 915 916 917 918
  def playSequence(self, step_list, quiet):
    sequence_list = SequenceList()
    sequence_string = ' '.join(step_list)
    sequence_list.addSequenceString(sequence_string)
    sequence_list.play(self, quiet=quiet)
919
  
920 921 922 923
  ##################################
  ##  Tests
  ##################################

924
  def test_01_PreferenceSetup(self, quiet=QUIET, run=RUN_ALL_TEST):
925 926 927
    """
      Make sure that preferences are set up properly and accessible
    """
928
    if not run: return
929 930 931 932
    if not quiet: printAndLog('test_01_PreferenceSetup')
    preference_tool = self.portal.portal_preferences
    self.assertEquals(preference_tool.getPreferredOoodocServerAddress(), conversion_server_host[0])
    self.assertEquals(preference_tool.getPreferredOoodocServerPortNumber(), conversion_server_host[1])
933 934 935
    self.assertEquals(preference_tool.getPreferredDocumentFileNameRegularExpression(), FILE_NAME_REGULAR_EXPRESSION)
    self.assertEquals(preference_tool.getPreferredDocumentReferenceRegularExpression(), REFERENCE_REGULAR_EXPRESSION)
    
936
  def test_02_FileExtensionRegistry(self, quiet=QUIET, run=RUN_ALL_TEST):
937 938 939
    """
      check if we successfully imported registry
      and that it has all the entries we need
940
    """
941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
    if not run: return
    if not quiet: printAndLog('test_02_FileExtensionRegistry')
    reg = self.portal.content_type_registry
    correct_type_mapping = {
            'doc' : 'Text',
            'txt' : 'Text',
            'odt' : 'Text',
            'sxw' : 'Text',
            'rtf' : 'Text',
            'gif' : 'Image',
            'jpg' : 'Image',
            'png' : 'Image',
            'bmp' : 'Image',
            'pdf' : 'PDF',
            'xls' : 'Spreadsheet',
            'ods' : 'Spreadsheet',
            'sdc' : 'Spreadsheet',
            'ppt' : 'Presentation',
            'odp' : 'Presentation',
            'sxi' : 'Presentation',
961
            'sxd' : 'Drawing',
962 963 964 965 966 967
            'xxx' : 'File',
          }
    for type, portal_type in correct_type_mapping.items():
      file_name = 'aaa.' + type
      self.assertEquals(reg.findTypeName(file_name, None, None), portal_type)

968
  def test_03_TextDoc(self, quiet=QUIET, run=RUN_ALL_TEST):
969
    """
970
      Test basic behaviour of a document:
971
      - create empty document
972 973 974 975 976
      - upload a file directly
      - upload a file using upload dialog
      - make sure revision was increased
      - check that it was properly converted
      - check if coordinates were extracted from file name
977 978
    """
    if not run: return
979
    if not quiet: printAndLog('test_03_TextDoc')
980 981
    step_list = ['stepCleanUp'
                 ,'stepCreateTextDocument'
982
                 ,'stepCheckEmptyState'
983
                 ,'stepStraightUpload'
984
                 ,'stepCheckConvertedState'
985
                 ,'stepDialogUpload'
986
                 ,'stepCheckConvertedState'
987
                 ,'stepDiscoverFromFilename'
988 989
                 ,'stepCheckConvertedContent'
                ]
990
    self.playSequence(step_list, quiet)
991

992
  def test_04_MetadataExtraction(self, quiet=QUIET, run=RUN_ALL_TEST):
993 994
    """
      Test metadata extraction from various sources:
995 996 997 998 999
      - from file name (doublecheck)
      - from user (by overwriting type-based method
                   and simulating the result)
      - from content (by overwriting type-based method
                      and simulating the result)
1000
      - from file metadata
1001 1002 1003 1004

      NOTE: metadata of document (title, subject, description)
      are no longer retrieved and set upon conversion
    """
1005
    if not run: return
1006
    if not quiet: printAndLog('test_04_MetadataExtraction')
1007 1008
    step_list = [ 'stepCleanUp'
                 ,'stepCreateTextDocument'
1009
                 ,'stepSetSimulatedDiscoveryScript'
1010 1011
                 ,'stepTestMetadataSetting'
                ]
1012
    self.playSequence(step_list, quiet)
1013

1014
  def test_041_MetadataEditing(self, quiet=QUIET, run=RUN_ALL_TEST):
1015 1016 1017 1018 1019 1020
    """
      Check metadata in the object and in the ODF document
      Edit metadata on the object
      Download ODF, make sure it is changed
    """
    if not run: return
1021
    if not quiet: printAndLog('test_04_MetadataEditing')
1022 1023
    step_list = [ 'stepCleanUp'
                 ,'stepCreateTextDocument'
1024 1025 1026
                 ,'stepDialogUpload'
                 ,'stepEditMetadata'
                 ,'stepCheckChangedMetadata'
1027
                ]
1028
    self.playSequence(step_list, quiet)
1029

1030 1031 1032 1033 1034
  def test_05_FormatIngestion(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
      Ingest various formats (xls, doc, sxi, ppt etc)
      Verify that they are successfully converted
      - have ODF data and contain magic word in SearchableText
1035 1036 1037 1038 1039
      - or have text data and contain magic word in SearchableText
        TODO:
      - or were not moved in processing_status_workflow if the don't
        implement _convertToBase (e.g. Image)
      Verify that you can not upload file of the wrong format.
1040 1041
    """
    if not run: return
1042
    if not quiet: printAndLog('test_05_FormatIngestion')
1043 1044
    step_list = ['stepCleanUp'
                 ,'stepCreateTextDocument'
1045 1046 1047 1048 1049 1050 1051
                 ,'stepIngestTextFormats'
                 ,'stepCreateSpreadsheetDocument'
                 ,'stepIngestSpreadsheetFormats'
                 ,'stepCreatePresentationDocument'
                 ,'stepIngestPresentationFormats'
                 ,'stepCreateDrawingDocument'
                 ,'stepIngestDrawingFormats'
1052 1053 1054 1055
                 ,'stepCreatePDFDocument'
                 ,'stepIngestPDFFormats'
                 ,'stepCreateImageDocument'
                 ,'stepIngestImageFormats'
1056
                ]
1057
    self.playSequence(step_list, quiet)
1058

1059
  def test_06_FormatGeneration(self, quiet=QUIET, run=RUN_ALL_TEST):
1060
    """
1061 1062 1063 1064
      Test generation of files in all possible formats
      which means check if they have correct lists of available formats for export
      actual generation is tested in oood tests
      PDF and Image should be tested here
1065 1066
    """
    if not run: return
1067
    if not quiet: printAndLog('test_06_FormatGeneration')
1068 1069
    step_list = [ 'stepCleanUp'
                 ,'stepCreateTextDocument'
1070 1071 1072 1073 1074 1075 1076
                 ,'stepCheckTextDocumentExportList'
                 ,'stepCreateSpreadsheetDocument'
                 ,'stepCheckSpreadsheetDocumentExportList'
                 ,'stepCreatePresentationDocument'
                 ,'stepCheckPresentationDocumentExportList'
                 ,'stepCreateDrawingDocument'
                 ,'stepCheckDrawingDocumentExportList'
1077 1078 1079 1080
                 ,'stepCreatePDFDocument'
                 ,'stepExportPDF'
                 ,'stepCreateImageDocument'
                 ,'stepExportImage'
1081
                ]
1082
    self.playSequence(step_list, quiet)
1083 1084 1085 1086 1087 1088 1089 1090

  def test_07_SnapshotGeneration(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
      Generate snapshot, make sure it is there, 
      try to generate it again, remove and 
      generate once more
    """
    if not run: return
1091
    if not quiet: printAndLog('test_07_SnapshotGeneration')
1092 1093
    step_list = [ 'stepCleanUp'
                 ,'stepCreateTextDocument'
1094 1095 1096 1097 1098 1099 1100 1101 1102
                 ,'stepDialogUpload'
                 ,'stepCheckHasNoSnapshot'
                 ,'stepCreateSnapshot'
                 ,'stepTryRecreateSnapshot'
                 ,'stepCheckHasSnapshot'
                 ,'stepDeleteSnapshot'
                 ,'stepCheckHasNoSnapshot'
                 ,'stepCreateSnapshot'
                ]
1103
    self.playSequence(step_list, quiet)
1104

1105 1106
  def test_08_Cache(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
1107
      I don't know how to verify how cache works
1108 1109
    """

1110
  def test_09_Contribute(self, quiet=QUIET, run=RUN_ALL_TEST):
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
    """
      Create content through portal_contributions
      - use newContent to ingest various types 
        also to test content_type_registry setup
      - verify that
        - appropriate portal_types were created
        - the files were converted
        - metadata was read
    """
    if not run: return
1121
    if not quiet: printAndLog('test_09_Contribute')
1122 1123
    step_list = [ 'stepCleanUp'
                 ,'stepContributeFileListWithNoType'
1124
                 ,'stepCleanUp'
Bartek Górny's avatar
Bartek Górny committed
1125
                 ,'stepContributeFileListWithType'
1126
                ]
1127
    self.playSequence(step_list, quiet)
1128 1129 1130

  def test_10_MetadataSettingPreferenceOrder(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
1131
      Set some metadata discovery scripts
1132
      Contribute a document, let it get metadata using default setup
1133 1134 1135
      (default is FUC)

      check that the right ones are there
1136 1137
      change preference order, check again
    """
1138
    if not run: return
1139
    if not quiet: printAndLog('test_10_MetadataSettingPreferenceOrder')
1140 1141
    step_list = [ 'stepCleanUp' 
                 ,'stepCreateTextDocument'
1142
                 ,'stepStraightUpload'
1143
                 ,'stepSetSimulatedDiscoveryScriptForOrdering'
Bartek Górny's avatar
Bartek Górny committed
1144
                 ,'stepCheckMetadataSettingOrderFICU'
1145 1146
                 ,'stepCreateTextDocument'
                 ,'stepStraightUpload'
1147
                 ,'stepSetSimulatedDiscoveryScriptForOrdering'
1148 1149 1150
                 ,'stepCheckMetadataSettingOrderCUFI'
                 ,'stepCreateTextDocument'
                 ,'stepStraightUpload'
1151
                 ,'stepSetSimulatedDiscoveryScriptForOrdering'
1152 1153 1154
                 ,'stepCheckMetadataSettingOrderUIFC'
                 ,'stepCreateTextDocument'
                 ,'stepStraightUpload'
1155
                 ,'stepSetSimulatedDiscoveryScriptForOrdering'
1156 1157 1158
                 ,'stepCheckMetadataSettingOrderICUF'
                 ,'stepCreateTextDocument'
                 ,'stepStraightUpload'
1159
                 ,'stepSetSimulatedDiscoveryScriptForOrdering'
1160 1161
                 ,'stepCheckMetadataSettingOrderUFCI'
                ]
1162
    self.playSequence(step_list, quiet)
1163

1164 1165 1166 1167 1168 1169 1170
  def test_11_EmailIngestion(self, quiet=QUIET, run=RUN_ALL_TEST):
    """
      Simulate email piped to ERP5 by an MTA by uploading test email from file
      Check that document objects are created and appropriate data are set
      (owner, and anything discovered from user and mail body)
    """
    if not run: return
1171
    if not quiet: printAndLog('test_11_EmailIngestion')
1172 1173
    step_list = [ 'stepCleanUp'
                 ,'stepReceiveEmailFromUnknown'
1174 1175 1176 1177
                 ,'stepCreatePerson'
                 ,'stepReceiveEmailFromJohn'
                 ,'stepVerifyEmailedDocuments'
                ]
1178
    self.playSequence(step_list, quiet)
1179 1180


1181 1182 1183 1184
# Missing tests
"""
    property_dict = context.getPropertyDictFromUserLogin()
    property_dict = context.getPropertyDictFromInput()
1185
"""
Jérome Perrin's avatar
Jérome Perrin committed
1186 1187 1188 1189 1190

def test_suite():
  suite = unittest.TestSuite()
  suite.addTest(unittest.makeSuite(TestIngestion))
  return suite