1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
1
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
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
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18
18
"""Tests of the 'bzr add' command."""
22
from bzrlib import osutils
23
from bzrlib.tests import (
25
split_suite_by_condition,
22
29
from bzrlib.tests.blackbox import ExternalBase
23
30
from bzrlib.tests.test_win32utils import NeedsGlobExpansionFeature
33
def load_tests(standard_tests, module, loader):
34
"""Parameterize tests for view-aware vs not."""
35
to_adapt, result = split_suite_by_condition(
36
standard_tests, condition_isinstance(TestAdd))
38
('pre-views', {'branch_tree_format': 'pack-0.92'}),
39
('view-aware', {'branch_tree_format': 'development6-rich-root'}),
41
return multiply_tests(to_adapt, scenarios, result)
26
44
class TestAdd(ExternalBase):
46
def make_branch_and_tree(self, dir):
47
return ExternalBase.make_branch_and_tree(self, dir,
48
format=self.branch_tree_format)
28
50
def test_add_reports(self):
29
51
"""add command prints the names of added files."""
30
52
tree = self.make_branch_and_tree('.')
33
55
out = self.run_bzr('add')[0]
34
56
# the ordering is not defined at the moment
35
57
results = sorted(out.rstrip('\n').split('\n'))
36
self.assertEquals(['If you wish to add some of these files, please'\
42
'ignored 1 file(s).'],
58
self.assertEquals(['adding .bzrignore',
44
63
out = self.run_bzr('add -v')[0]
45
64
results = sorted(out.rstrip('\n').split('\n'))
46
self.assertEquals(['If you wish to add some of these files, please'\
48
'ignored CVS matching "CVS"'],
65
self.assertEquals(['ignored CVS matching "CVS"'],
51
68
def test_add_quiet_is(self):
52
69
"""add -q does not print the names of added files."""
53
tree = self.make_branch_and_tree('.')
70
tree = self.make_branch_and_tree('.')
54
71
self.build_tree(['top.txt', 'dir/', 'dir/sub.txt'])
55
72
out = self.run_bzr('add -q')[0]
56
73
# the ordering is not defined at the moment
100
117
eq = self.assertEqual
101
118
ass = self.assertTrue
104
121
t = self.make_branch_and_tree('.')
106
123
self.build_tree(['src/', 'README'])
108
125
eq(sorted(t.unknowns()),
109
126
['README', 'src'])
111
128
self.run_bzr('add src')
113
130
self.build_tree(['src/foo.c'])
115
132
# add with no arguments in a subdirectory gets only files below that
122
139
versioned = [path for path, entry in t.iter_entries_by_dir()]
123
140
self.assertEquals(versioned,
124
141
['', 'src', 'src/foo.c'])
126
143
# add from the parent directory should pick up all file names
128
145
self.run_bzr('add')
147
164
out, err = self.run_bzr('add --file-ids-from ../base')
148
165
self.assertEqual('', err)
149
self.assertEqualDiff('added a w/ file id from a\n'
150
'added b w/ file id from b\n'
151
'added b/c w/ file id from b/c\n',
166
self.assertEqualDiff('adding a w/ file id from a\n'
167
'adding b w/ file id from b\n'
168
'adding b/c w/ file id from b/c\n',
153
170
new_tree = new_tree.bzrdir.open_workingtree()
154
171
self.assertEqual(base_tree.path2id('a'), new_tree.path2id('a'))
168
185
out, err = self.run_bzr('add --file-ids-from ../base/b')
169
186
self.assertEqual('', err)
170
self.assertEqualDiff('added c w/ file id from b/c\n'
171
'added d w/ file id from b/d\n',
187
self.assertEqualDiff('adding c w/ file id from b/c\n'
188
'adding d w/ file id from b/d\n',
174
191
new_tree = new_tree.bzrdir.open_workingtree()
207
224
self.build_tree([u'\u1234A', u'\u1235A', u'\u1235AA', 'cc'])
208
225
self.run_bzr(['add', u'\u1234?', u'\u1235*'])
209
226
self.assertEquals(self.run_bzr('unknowns')[0], 'cc\n')
228
def test_add_via_symlink(self):
229
self.requireFeature(SymlinkFeature)
230
self.make_branch_and_tree('source')
231
self.build_tree(['source/top.txt'])
232
os.symlink('source', 'link')
233
out = self.run_bzr(['add', 'link/top.txt'])[0]
234
self.assertEquals(out, 'adding top.txt\n')
236
def test_add_symlink_to_abspath(self):
237
self.requireFeature(SymlinkFeature)
238
self.make_branch_and_tree('tree')
239
os.symlink(osutils.abspath('target'), 'tree/link')
240
out = self.run_bzr(['add', 'tree/link'])[0]
241
self.assertEquals(out, 'adding link\n')