Ejemplo n.º 1
0
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
Ejemplo n.º 2
0
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
Ejemplo n.º 3
0
 def tearDown(self):
     """
     Cleans up the test environment.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
Ejemplo n.º 4
0
 def tearDown(self):
     """
     Cleans up the test environment.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
Ejemplo n.º 5
0
    def tearDown(self):
        test_utils.clean_resources_db()
        test_utils.clean_storage()
        test_utils.clean_user_db()

        super(EditorTest, self).tearDown()
        self.assertEqual([], self.verification_errors)
Ejemplo n.º 6
0
 def tearDownClass(cls):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     LOGGER.info("finished '{}' tests".format(cls.__name__))
Ejemplo n.º 7
0
 def tearDownClass(cls):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     LOGGER.info("finished '{}' tests".format(cls.__name__))
Ejemplo n.º 8
0
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     test_utils.set_index_active(True)
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     test_utils.set_index_active(True)
Ejemplo n.º 10
0
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     settings.MAX_VIEW_INTERVAL = self.max_view_interval_backup
     settings.MAX_DOWNLOAD_INTERVAL = self.max_download_interval_backup
Ejemplo n.º 11
0
 def tearDown(self):
     """
     Clean up the test
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     settings.MAX_VIEW_INTERVAL = self.max_view_interval_backup
     settings.MAX_DOWNLOAD_INTERVAL = self.max_download_interval_backup 
Ejemplo n.º 12
0
 def tearDown(self):
     """
     Clean up the test
     """
     try:
         test_utils.clean_resources_db()
     except:
         pass
     test_utils.clean_storage()
Ejemplo n.º 13
0
 def tearDown(self):
     """
     Clean up the test
     """
     try:
         test_utils.clean_resources_db()
     except:
         pass
     test_utils.clean_storage()
Ejemplo n.º 14
0
    def tearDownClass(cls):
        """
        Clean up the test
        """
        LOGGER.info("finished '{}' tests".format(cls.__name__))

        # disable indexing during import
        test_utils.set_index_active(False)

        test_utils.clean_resources_db()
        test_utils.clean_storage()
        OBJECT_XML_CACHE.clear()

        # enable indexing
        test_utils.set_index_active(True)
Ejemplo n.º 15
0
 def tearDown(self):
     """
     Clean up the test
     """
     # disable indexing during import
     test_utils.set_index_active(False)
     
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     OBJECT_XML_CACHE.clear()
     
     # enable indexing 
     test_utils.set_index_active(True)
 
     # update index
     rebuild_index.Command().handle()
Ejemplo n.º 16
0
 def tearDownClass(cls):
     """
     Clean up the test
     """
     LOGGER.info("finished '{}' tests".format(cls.__name__))
     
     # disable indexing during import
     test_utils.set_index_active(False)
     
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     OBJECT_XML_CACHE.clear()
     
     # enable indexing 
     test_utils.set_index_active(True)
 
     # update index
     update_index.Command().handle(using=[settings.TEST_MODE_NAME,])
Ejemplo n.º 17
0
 def tearDownClass(cls):
     """
     Clean up the test
     """
     LOGGER.info("finished '{}' tests".format(cls.__name__))
     
     # disable indexing during import
     test_utils.set_index_active(False)
     
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     OBJECT_XML_CACHE.clear()
     
     # enable indexing 
     test_utils.set_index_active(True)
 
     # update index
     from django.core.management import call_command
     call_command('rebuild_index', interactive=False, using=TEST_MODE_NAME)
Ejemplo n.º 18
0
    def tearDownClass(cls):
        """
        Clean up the test
        """
        LOGGER.info("finished '{}' tests".format(cls.__name__))

        # disable indexing during import
        test_utils.set_index_active(False)

        test_utils.clean_resources_db()
        test_utils.clean_storage()
        OBJECT_XML_CACHE.clear()

        # enable indexing
        test_utils.set_index_active(True)

        # update index
        from django.core.management import call_command
        call_command('rebuild_index', interactive=False, using=TEST_MODE_NAME)
Ejemplo n.º 19
0
 def tearDownClass(cls):
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     set_index_active(True)
     LOGGER.info("finished '{}' tests".format(cls.__name__))
Ejemplo n.º 20
0
 def tearDown(self):
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
Ejemplo n.º 21
0
 def tearDown(self):
     """
     Removes the storage object instance from the database after testing.
     """
     test_utils.clean_resources_db()
Ejemplo n.º 22
0
 def tearDown(self):
     """
     Clean DB and storage folder after testing.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
Ejemplo n.º 23
0
 def tearDown(self):
     test_utils.clean_resources_db()
Ejemplo n.º 24
0
 def tearDownClass(cls):
     test_utils.clean_resources_db()
     test_utils.clean_storage()
     test_utils.clean_user_db()
     set_index_active(True)
     LOGGER.info("finished '{}' tests".format(cls.__name__))
Ejemplo n.º 25
0
    def tearDown(self):
        test_utils.clean_resources_db()
        test_utils.clean_storage()
        test_utils.clean_user_db()

        super(ExampleSeleniumTest, self).tearDown()
Ejemplo n.º 26
0
 def tearDown(self):
     """
     Cleans the database after a test.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
Ejemplo n.º 27
0
 def tearDown(self):
     """
     Removes the storage object instance from the database after testing.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
Ejemplo n.º 28
0
    def tearDown(self):
        test_utils.clean_resources_db()
        test_utils.clean_storage()
        test_utils.clean_user_db()

        super(ExampleSeleniumTest, self).tearDown()
Ejemplo n.º 29
0
 def tearDown(self):
     """
     Cleans the database after a test.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()
Ejemplo n.º 30
0
 def tearDown(self):
     """
     Clean DB and storage folder after testing.
     """
     test_utils.clean_resources_db()
     test_utils.clean_storage()