1
# Copyright (C) 2005, 2006 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
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
17
from cStringIO import StringIO
4
21
from bzrlib import errors, ignores, osutils
5
from bzrlib.add import smart_add, smart_add_tree
22
from bzrlib.add import (
6
28
from bzrlib.tests import TestCase, TestCaseWithTransport, TestSkipped
7
29
from bzrlib.errors import NoSuchFile
8
30
from bzrlib.inventory import InventoryFile, Inventory
211
245
self.assertEqual(None, wt.path2id(path.rstrip('/')),
212
246
'Accidentally added path: %s' % (path,))
248
def test_custom_ids(self):
250
action = AddCustomIDAction(to_file=sio, should_print=True)
251
self.build_tree(['file1', 'dir1/', 'dir1/file2'])
253
wt = self.make_branch_and_tree('.')
254
smart_add_tree(wt, ['.'], action=action)
255
# The order of adds is not strictly fixed:
257
lines = sorted(sio.readlines())
258
self.assertEqualDiff(['added dir1 with id directory-dir1\n',
259
'added dir1/file2 with id file-dir1%file2\n',
260
'added file1 with id file-file1\n',
262
self.assertEqual([('', wt.inventory.root.file_id),
263
('dir1', 'directory-dir1'),
264
('dir1/file2', 'file-dir1%file2'),
265
('file1', 'file-file1'),
266
], [(path, ie.file_id) for path, ie
267
in wt.inventory.iter_entries()])
270
class TestAddFrom(TestCaseWithTransport):
271
"""Tests for AddFromBaseAction"""
273
def make_base_tree(self):
274
self.base_tree = self.make_branch_and_tree('base')
275
self.build_tree(['base/a', 'base/b',
276
'base/dir/', 'base/dir/a',
280
self.base_tree.add(['a', 'b', 'dir', 'dir/a',
281
'dir/subdir', 'dir/subdir/b'])
282
self.base_tree.commit('creating initial tree.')
284
def add_helper(self, base_tree, base_path, new_tree, file_list,
287
base_tree.lock_read()
289
new_tree.lock_write()
291
action = AddFromBaseAction(base_tree, base_path,
293
should_print=should_print)
294
smart_add_tree(new_tree, file_list, action=action)
299
return to_file.getvalue()
301
def test_copy_all(self):
302
self.make_base_tree()
303
new_tree = self.make_branch_and_tree('new')
309
self.build_tree(['new/' + fn for fn in files])
310
self.add_helper(self.base_tree, '', new_tree, ['new'])
313
base_file_id = self.base_tree.path2id(fn)
314
new_file_id = new_tree.path2id(fn)
315
self.assertEqual(base_file_id, new_file_id)
317
def test_copy_from_dir(self):
318
self.make_base_tree()
319
new_tree = self.make_branch_and_tree('new')
321
self.build_tree(['new/a', 'new/b', 'new/c',
322
'new/subdir/', 'new/subdir/b', 'new/subdir/d'])
323
new_tree.set_root_id(self.base_tree.get_root_id())
324
self.add_helper(self.base_tree, 'dir', new_tree, ['new'])
326
# We know 'a' and 'b' exist in the root, and they are being added
327
# in a new 'root'. Since ROOT ids have been set as the same, we will
329
self.assertEqual(self.base_tree.path2id('a'),
330
new_tree.path2id('a'))
331
self.assertEqual(self.base_tree.path2id('b'),
332
new_tree.path2id('b'))
334
# Because we specified 'dir/' as the base path, and we have
335
# nothing named 'subdir' in the base tree, we should grab the
337
self.assertEqual(self.base_tree.path2id('dir/subdir'),
338
new_tree.path2id('subdir'))
339
self.assertEqual(self.base_tree.path2id('dir/subdir/b'),
340
new_tree.path2id('subdir/b'))
342
# These should get newly generated ids
343
c_id = new_tree.path2id('c')
344
self.assertNotEqual(None, c_id)
345
self.failIf(c_id in self.base_tree)
347
d_id = new_tree.path2id('subdir/d')
348
self.assertNotEqual(None, d_id)
349
self.failIf(d_id in self.base_tree)
351
def test_copy_existing_dir(self):
352
self.make_base_tree()
353
new_tree = self.make_branch_and_tree('new')
354
self.build_tree(['new/subby/', 'new/subby/a', 'new/subby/b'])
356
subdir_file_id = self.base_tree.path2id('dir/subdir')
357
new_tree.add(['subby'], [subdir_file_id])
358
self.add_helper(self.base_tree, '', new_tree, ['new'])
359
# Because 'subby' already points to subdir, we should add
360
# 'b' with the same id
361
self.assertEqual(self.base_tree.path2id('dir/subdir/b'),
362
new_tree.path2id('subby/b'))
364
# 'subby/a' should be added with a new id because there is no
365
# matching path or child of 'subby'.
366
a_id = new_tree.path2id('subby/a')
367
self.assertNotEqual(None, a_id)
368
self.failIf(a_id in self.base_tree)
215
371
class TestAddNonNormalized(TestCaseWithTransport):