當前位置: 首頁>>代碼示例>>Python>>正文


Python lockdir.LockDir類代碼示例

本文整理匯總了Python中bzrlib.lockdir.LockDir的典型用法代碼示例。如果您正苦於以下問題:Python LockDir類的具體用法?Python LockDir怎麽用?Python LockDir使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了LockDir類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_42_confirm_broken_manually

 def test_42_confirm_broken_manually(self):
     """Confirm a lock broken by hand"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     t.move('test_lock', 'lock_gone_now')
     self.assertRaises(LockBroken, lf1.confirm)
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:8,代碼來源:test_lockdir.py

示例2: test_auto_break_stale_lock_configured_off

 def test_auto_break_stale_lock_configured_off(self):
     """Automatic breaking can be turned off"""
     l1 = LockDir(self.get_transport(), 'a',
         extra_holder_info={'pid': '12312313'})
     token_1 = l1.attempt_lock()
     self.addCleanup(l1.unlock)
     l2 = LockDir(self.get_transport(), 'a')
     # This fails now, because dead lock breaking is off by default.
     self.assertRaises(LockContention,
         l2.attempt_lock)
     # and it's in fact not broken
     l1.confirm()
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:12,代碼來源:test_lockdir.py

示例3: test_no_lockdir_info

 def test_no_lockdir_info(self):
     """We can cope with empty info files."""
     # This seems like a fairly common failure case - see
     # <https://bugs.launchpad.net/bzr/+bug/185103> and all its dupes.
     # Processes are often interrupted after opening the file
     # before the actual contents are committed.
     t = self.get_transport()
     t.mkdir('test_lock')
     t.mkdir('test_lock/held')
     t.put_bytes('test_lock/held/info', '')
     lf = LockDir(t, 'test_lock')
     info = lf.peek()
     formatted_info = info.to_readable_dict()
     self.assertEquals(
         dict(user='<unknown>', hostname='<unknown>', pid='<unknown>',
             time_ago='(unknown)'),
         formatted_info)
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:17,代碼來源:test_lockdir.py

示例4: test_40_confirm_easy

 def test_40_confirm_easy(self):
     """Confirm a lock that's already held"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     lf1.confirm()
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:7,代碼來源:test_lockdir.py

示例5: test_30_lock_wait_fail

    def test_30_lock_wait_fail(self):
        """Wait on a lock, then fail

        We ask to wait up to 400ms; this should fail within at most one
        second.  (Longer times are more realistic but we don't want the test
        suite to take too long, and this should do for now.)
        """
        t = self.get_transport()
        lf1 = LockDir(t, 'test_lock')
        lf1.create()
        lf2 = LockDir(t, 'test_lock')
        self.setup_log_reporter(lf2)
        lf1.attempt_lock()
        try:
            before = time.time()
            self.assertRaises(LockContention, lf2.wait_lock,
                              timeout=0.4, poll=0.1)
            after = time.time()
            # it should only take about 0.4 seconds, but we allow more time in
            # case the machine is heavily loaded
            self.assertTrue(after - before <= 8.0,
                "took %f seconds to detect lock contention" % (after - before))
        finally:
            lf1.unlock()
        self.assertEqual(1, len(self._logged_reports))
        self.assertContainsRe(self._logged_reports[0][0],
            r'Unable to obtain lock .* held by [email protected]\.com on .*'
            r' \(process #\d+\), acquired .* ago\.\n'
            r'Will continue to try until \d{2}:\d{2}:\d{2}, unless '
            r'you press Ctrl-C.\n'
            r'See "bzr help break-lock" for more.')
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:31,代碼來源:test_lockdir.py

示例6: test_21_peek_readonly

 def test_21_peek_readonly(self):
     """Peek over a readonly transport"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf2 = LockDir(self.get_readonly_transport(), 'test_lock')
     self.assertEqual(lf2.peek(), None)
     lf1.attempt_lock()
     info2 = lf2.peek()
     self.assertTrue(info2)
     self.assertEqual(info2['nonce'], lf1.nonce)
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:11,代碼來源:test_lockdir.py

示例7: test_uses_lockdir

    def test_uses_lockdir(self):
        """WorkingTreeFormat4 uses its own LockDir:

            - lock is a directory
            - when the WorkingTree is locked, LockDir can see that
        """
        # this test could be factored into a subclass of tests common to both
        # format 3 and 4, but for now its not much of an issue as there is only one in common.
        t = self.get_transport()
        tree = self.make_workingtree()
        self.assertIsDirectory('.bzr', t)
        self.assertIsDirectory('.bzr/checkout', t)
        self.assertIsDirectory('.bzr/checkout/lock', t)
        our_lock = LockDir(t, '.bzr/checkout/lock')
        self.assertEquals(our_lock.peek(), None)
        tree.lock_write()
        self.assertTrue(our_lock.peek())
        tree.unlock()
        self.assertEquals(our_lock.peek(), None)
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:19,代碼來源:test_workingtree_4.py

示例8: test_32_lock_wait_succeed

    def test_32_lock_wait_succeed(self):
        """Succeed when trying to acquire a lock that gets released

        One thread holds on a lock and then releases it; another 
        tries to lock it.
        """
        # This test sometimes fails like this:
        # Traceback (most recent call last):

        #   File "/home/pqm/bzr-pqm-workdir/home/+trunk/bzrlib/tests/
        # test_lockdir.py", line 247, in test_32_lock_wait_succeed
        #     self.assertEqual(1, len(self._logged_reports))
        # AssertionError: not equal:
        # a = 1
        # b = 0
        raise tests.TestSkipped("Test fails intermittently")
        t = self.get_transport()
        lf1 = LockDir(t, 'test_lock')
        lf1.create()
        lf1.attempt_lock()

        def wait_and_unlock():
            time.sleep(0.1)
            lf1.unlock()
        unlocker = Thread(target=wait_and_unlock)
        unlocker.start()
        try:
            lf2 = LockDir(t, 'test_lock')
            self.setup_log_reporter(lf2)
            before = time.time()
            # wait and then lock
            lf2.wait_lock(timeout=0.4, poll=0.1)
            after = time.time()
            self.assertTrue(after - before <= 1.0)
        finally:
            unlocker.join()

        # There should be only 1 report, even though it should have to
        # wait for a while
        lock_base = lf2.transport.abspath(lf2.path)
        self.assertEqual(1, len(self._logged_reports))
        self.assertEqual('%s %s\n'
                         '%s\n%s\n'
                         'Will continue to try until %s\n',
                         self._logged_reports[0][0])
        args = self._logged_reports[0][1]
        self.assertEqual('Unable to obtain', args[0])
        self.assertEqual('lock %s' % (lock_base,), args[1])
        self.assertStartsWith(args[2], 'held by ')
        self.assertStartsWith(args[3], 'locked ')
        self.assertEndsWith(args[3], ' ago')
        self.assertContainsRe(args[4], r'\d\d:\d\d:\d\d')
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:52,代碼來源:test_lockdir.py

示例9: test_missing_lockdir_info

 def test_missing_lockdir_info(self):
     """We can cope with absent info files."""
     t = self.get_transport()
     t.mkdir('test_lock')
     t.mkdir('test_lock/held')
     lf = LockDir(t, 'test_lock')
     # In this case we expect the 'not held' result from peek, because peek
     # cannot be expected to notice that there is a 'held' directory with no
     # 'info' file.
     self.assertEqual(None, lf.peek())
     # And lock/unlock may work or give LockContention (but not any other
     # error).
     try:
         lf.attempt_lock()
     except LockContention:
         # LockContention is ok, and expected on Windows
         pass
     else:
         # no error is ok, and expected on POSIX (because POSIX allows
         # os.rename over an empty directory).
         lf.unlock()
     # Currently raises TokenMismatch, but LockCorrupt would be reasonable
     # too.
     self.assertRaises(
         (errors.TokenMismatch, errors.LockCorrupt),
         lf.validate_token, 'fake token')
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:26,代碼來源:test_lockdir.py

示例10: test_10_lock_uncontested

 def test_10_lock_uncontested(self):
     """Acquire and release a lock"""
     t = self.get_transport()
     lf = LockDir(t, 'test_lock')
     lf.create()
     lf.attempt_lock()
     try:
         self.assertTrue(lf.is_held)
     finally:
         lf.unlock()
         self.assertFalse(lf.is_held)
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:11,代碼來源:test_lockdir.py

示例11: test_20_lock_contested

 def test_20_lock_contested(self):
     """Contention to get a lock"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     lf2 = LockDir(t, 'test_lock')
     try:
         # locking is between LockDir instances; aliases within
         # a single process are not detected
         lf2.attempt_lock()
         self.fail('Failed to detect lock collision')
     except LockContention, e:
         self.assertEqual(e.lock, lf2)
         self.assertContainsRe(str(e),
                 r'^Could not acquire.*test_lock.*$')
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:16,代碼來源:test_lockdir.py

示例12: test_uses_lockdir

    def test_uses_lockdir(self):
        """WorkingTreeFormat3 uses its own LockDir:

            - lock is a directory
            - when the WorkingTree is locked, LockDir can see that
        """
        t = self.get_transport()
        url = self.get_url()
        dir = bzrdir.BzrDirMetaFormat1().initialize(url)
        repo = dir.create_repository()
        branch = dir.create_branch()
        try:
            tree = workingtree_3.WorkingTreeFormat3().initialize(dir)
        except errors.NotLocalUrl:
            raise TestSkipped('Not a local URL')
        self.assertIsDirectory('.bzr', t)
        self.assertIsDirectory('.bzr/checkout', t)
        self.assertIsDirectory('.bzr/checkout/lock', t)
        our_lock = LockDir(t, '.bzr/checkout/lock')
        self.assertEquals(our_lock.peek(), None)
        tree.lock_write()
        self.assertTrue(our_lock.peek())
        tree.unlock()
        self.assertEquals(our_lock.peek(), None)
開發者ID:Distrotech,項目名稱:bzr,代碼行數:24,代碼來源:test_workingtree.py

示例13: test_lock_with_buggy_rename

 def test_lock_with_buggy_rename(self):
     # test that lock acquisition handles servers which pretend they
     # renamed correctly but that actually fail
     t = transport.get_transport('brokenrename+' + self.get_url())
     ld1 = LockDir(t, 'test_lock')
     ld1.create()
     ld1.attempt_lock()
     ld2 = LockDir(t, 'test_lock')
     # we should fail to lock
     e = self.assertRaises(errors.LockContention, ld2.attempt_lock)
     # now the original caller should succeed in unlocking
     ld1.unlock()
     # and there should be nothing left over
     self.assertEquals([], t.list_dir('test_lock'))
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:14,代碼來源:test_lockdir.py

示例14: test_31_lock_wait_easy

 def test_31_lock_wait_easy(self):
     """Succeed when waiting on a lock with no contention.
     """
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     self.setup_log_reporter(lf1)
     try:
         before = time.time()
         lf1.wait_lock(timeout=0.4, poll=0.1)
         after = time.time()
         self.assertTrue(after - before <= 1.0)
     finally:
         lf1.unlock()
     self.assertEqual([], self._logged_reports)
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:15,代碼來源:test_lockdir.py

示例15: test_50_lockdir_representation

    def test_50_lockdir_representation(self):
        """Check the on-disk representation of LockDirs is as expected.

        There should always be a top-level directory named by the lock.
        When the lock is held, there should be a lockname/held directory
        containing an info file.
        """
        t = self.get_transport()
        lf1 = LockDir(t, 'test_lock')
        lf1.create()
        self.assertTrue(t.has('test_lock'))
        lf1.lock_write()
        self.assertTrue(t.has('test_lock/held/info'))
        lf1.unlock()
        self.assertFalse(t.has('test_lock/held/info'))
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:15,代碼來源:test_lockdir.py


注:本文中的bzrlib.lockdir.LockDir類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。