1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright (C) 2005-2010 Canonical Ltd
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
"""Tests of the 'bzr clean-tree' command."""
import os
from bzrlib import ignores
from bzrlib.tests import TestCaseWithTransport
from bzrlib.tests.script import run_script
class TestBzrTools(TestCaseWithTransport):
@staticmethod
def touch(filename):
my_file = open(filename, 'wb')
try:
my_file.write('')
finally:
my_file.close()
def test_clean_tree(self):
self.run_bzr('init')
self.run_bzr('ignore *~')
self.run_bzr('ignore *.pyc')
self.touch('name')
self.touch('name~')
self.assertPathExists('name~')
self.touch('name.pyc')
self.run_bzr('clean-tree --force')
self.assertPathExists('name~')
self.assertPathDoesNotExist('name')
self.touch('name')
self.run_bzr('clean-tree --detritus --force')
self.assertPathExists('name')
self.assertPathDoesNotExist('name~')
self.assertPathExists('name.pyc')
self.run_bzr('clean-tree --ignored --force')
self.assertPathExists('name')
self.assertPathDoesNotExist('name.pyc')
self.run_bzr('clean-tree --unknown --force')
self.assertPathDoesNotExist('name')
self.touch('name')
self.touch('name~')
self.touch('name.pyc')
self.run_bzr('clean-tree --unknown --ignored --force')
self.assertPathDoesNotExist('name')
self.assertPathDoesNotExist('name~')
self.assertPathDoesNotExist('name.pyc')
def test_clean_tree_nested_bzrdir(self):
# clean-tree should not blindly delete nested bzrdirs (branches)
# bug https://bugs.launchpad.net/bzr/+bug/572098
# so it will play well with scmproj/bzr-externals plugins.
wt1 = self.make_branch_and_tree('.')
wt2 = self.make_branch_and_tree('foo')
wt3 = self.make_branch_and_tree('bar')
ignores.tree_ignores_add_patterns(wt1, ['./foo'])
self.run_bzr(['clean-tree', '--unknown', '--force'])
self.assertPathExists('foo')
self.assertPathExists('bar')
self.run_bzr(['clean-tree', '--ignored', '--force'])
self.assertPathExists('foo')
self.assertPathExists('bar')
def test_clean_tree_directory(self):
"""Test --directory option"""
tree = self.make_branch_and_tree('a')
self.build_tree(['a/added', 'a/unknown', 'a/ignored'])
tree.add('added')
self.run_bzr('clean-tree -d a --unknown --ignored --force')
self.assertPathDoesNotExist('a/unknown')
self.assertPathDoesNotExist('a/ignored')
self.assertPathExists('a/added')
def test_clean_tree_interactive(self):
wt = self.make_branch_and_tree('.')
self.touch('bar')
self.touch('foo')
run_script(self, """
$ bzr clean-tree
bar
foo
2>Are you sure you wish to delete these? ([y]es, [n]o): no
<n
Canceled
""")
self.assertPathExists('bar')
self.assertPathExists('foo')
run_script(self, """
$ bzr clean-tree
bar
foo
2>Are you sure you wish to delete these? ([y]es, [n]o): yes
<y
2>deleting paths:
2> bar
2> foo
""")
self.assertPathDoesNotExist('bar')
self.assertPathDoesNotExist('foo')
|