~ubuntu-branches/ubuntu/oneiric/ubuntuone-client/oneiric

« back to all changes in this revision

Viewing changes to tests/platform/linux/eventlog/test_zg_listener.py

  • Committer: Bazaar Package Importer
  • Author(s): Rodney Dawes
  • Date: 2011-02-23 18:34:09 UTC
  • mfrom: (1.1.45 upstream)
  • Revision ID: james.westby@ubuntu.com-20110223183409-535o7yo165wbjmca
Tags: 1.5.5-0ubuntu1
* New upstream release.
  - Subscribing to a RO share will not download content (LP: #712528)
  - Can't synchronize "~/Ubuntu One Music" (LP: #714976)
  - Syncdaemon needs to show progress in Unity launcher (LP: #702116)
  - Notifications say "your cloud" (LP: #715887)
  - No longer requires python-libproxy
  - Recommend unity and indicator libs by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
154
154
        self.vm.create_share(path, fake_username, 'shared_name', 'View')
155
155
 
156
156
        self.assert_folder_shared_is_logged(path, fake_username)
 
157
    test_share_created_with_username_is_logged = """
 
158
        This test failed some times, Alecu told me to skip it, he will
 
159
        check later (opened bug #723832 for this) [Facundo]
 
160
        """
157
161
 
158
162
    def test_share_created_with_email_is_logged(self):
159
163
        """A ShareCreated event is logged."""
400
404
        self.assertTrue(folder.origin.endswith(path))
401
405
        self.assertEqual(folder.mimetype, DIRECTORY_MIMETYPE)
402
406
        self.assertEqual(folder.storage, STORAGE_NETWORK)
 
407
    test_udf_create_is_logged.skip = """
 
408
        This test failed some times, Alecu told me to skip it, he will
 
409
        check later (opened bug #723832 for this) [Facundo]
 
410
        """
403
411
 
404
412
    @defer.inlineCallbacks
405
413
    def test_udf_delete_is_logged(self):
459
467
        self.assertTrue(folder.origin.endswith(path))
460
468
        self.assertEqual(folder.mimetype, DIRECTORY_MIMETYPE)
461
469
        self.assertEqual(folder.storage, STORAGE_DELETED)
 
470
    test_udf_delete_is_logged.skip = """
 
471
        This test failed some times, Alecu told me to skip it, he will
 
472
        check later (opened bug #723832 for this) [Facundo]
 
473
        """
462
474
 
463
475
    @defer.inlineCallbacks
464
476
    def test_udf_subscribe_is_logged(self):
489
501
        self.assertTrue(folder.origin.startswith(URI_PROTOCOL_U1))
490
502
        self.assertEqual(folder.mimetype, DIRECTORY_MIMETYPE)
491
503
        self.assertEqual(folder.storage, STORAGE_LOCAL)
 
504
    test_udf_subscribe_is_logged.skip = """
 
505
        This test failed some times, Alecu told me to skip it, he will
 
506
        check later (opened bug #723832 for this) [Facundo]
 
507
        """
492
508
 
493
509
    @defer.inlineCallbacks
494
510
    def test_udf_unsubscribe_is_logged(self):