~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_clean_tree.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-05-11 11:47:36 UTC
  • mfrom: (5200.3.8 lock_return)
  • Revision ID: pqm@pqm.ubuntu.com-20100511114736-mc1sq9zyo3vufec7
(lifeless) Provide a consistent interface to Tree, Branch,
 Repository where lock methods return an object with an unlock method to
 unlock the lock. This breaks the API for Branch,
 Repository on their lock_write methods. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010, 2011 Canonical Ltd
 
1
# Copyright (C) 2005, 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
 
import errno
19
18
import os
20
 
import shutil
21
 
import sys
22
 
import types
 
19
from StringIO import StringIO
23
20
 
24
 
from bzrlib import tests, ui
25
21
from bzrlib.bzrdir import (
26
22
    BzrDir,
27
23
    )
46
42
        BzrDir.create_standalone_workingtree('branch')
47
43
        os.symlink(os.path.realpath('no-die-please'), 'branch/die-please')
48
44
        os.mkdir('no-die-please')
49
 
        self.assertPathExists('branch/die-please')
 
45
        self.failUnlessExists('branch/die-please')
50
46
        os.mkdir('no-die-please/child')
51
47
 
52
48
        clean_tree('branch', unknown=True, no_prompt=True)
53
 
        self.assertPathExists('no-die-please')
54
 
        self.assertPathExists('no-die-please/child')
 
49
        self.failUnlessExists('no-die-please')
 
50
        self.failUnlessExists('no-die-please/child')
55
51
 
56
52
    def test_iter_deletable(self):
57
53
        """Files are selected for deletion appropriately"""
80
76
            self.assertEqual([], dels)
81
77
        finally:
82
78
            tree.unlock()
83
 
 
84
 
    def test_delete_items_warnings(self):
85
 
        """Ensure delete_items issues warnings on EACCES. (bug #430785)
86
 
        """
87
 
        def _dummy_unlink(path):
88
 
            """unlink() files other than files named '0foo'.
89
 
            """
90
 
            if path.endswith('0foo'):
91
 
                # Simulate 'permission denied' error.
92
 
                # This should show up as a warning for the
93
 
                # user.
94
 
                e = OSError()
95
 
                e.errno = errno.EACCES
96
 
                raise e
97
 
 
98
 
        def _dummy_rmtree(path, ignore_errors=False, onerror=None):
99
 
            """Call user supplied error handler onerror.
100
 
            """
101
 
            # Indicate failure in removing 'path' if path is subdir0
102
 
            # We later check to ensure that this is indicated
103
 
            # to the user as a warning. We raise OSError to construct
104
 
            # proper excinfo that needs to be passed to onerror
105
 
            try:
106
 
                raise OSError
107
 
            except OSError, e:
108
 
                e.errno = errno.EACCES
109
 
                excinfo = sys.exc_info()
110
 
                function = os.remove
111
 
                if 'subdir0' not in path:
112
 
                    # onerror should show warning only for os.remove
113
 
                    # error. For any other failures the error should
114
 
                    # be shown to the user.
115
 
                    function = os.listdir
116
 
                onerror(function=function,
117
 
                    path=path, excinfo=excinfo)
118
 
 
119
 
        self.overrideAttr(os, 'unlink', _dummy_unlink)
120
 
        self.overrideAttr(shutil, 'rmtree', _dummy_rmtree)
121
 
        stdout = tests.StringIOWrapper()
122
 
        stderr = tests.StringIOWrapper()
123
 
        ui.ui_factory = tests.TestUIFactory(stdout=stdout, stderr=stderr)
124
 
 
125
 
        BzrDir.create_standalone_workingtree('.')
126
 
        self.build_tree(['0foo', '1bar', '2baz', 'subdir0/'])
127
 
        clean_tree('.', unknown=True, no_prompt=True)
128
 
        self.assertContainsRe(stderr.getvalue(),
129
 
            'bzr: warning: unable to remove.*0foo')
130
 
        self.assertContainsRe(stderr.getvalue(),
131
 
            'bzr: warning: unable to remove.*subdir0')
132
 
 
133
 
        # Ensure that error other than EACCES during os.remove are
134
 
        # not turned into warnings.
135
 
        self.build_tree(['subdir1/'])
136
 
        self.assertRaises(OSError, clean_tree, '.',
137
 
            unknown=True, no_prompt=True)
138