1
# Copyright (C) 2005, 2006 by 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
4
from bzrlib.tests import TestCaseInTempDir, TestCase
5
from bzrlib.branch import ScratchBranch, Branch
20
from bzrlib.tests import TestCaseWithTransport, TestCase
21
from bzrlib.branch import Branch
6
22
from bzrlib.errors import PathNotChild
7
23
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
10
class TestBranch(TestCaseInTempDir):
12
def test_no_changes(self):
13
from bzrlib.errors import PointlessCommit
15
b = Branch.initialize(u'.')
17
self.build_tree(['hello.txt'])
19
self.assertRaises(PointlessCommit,
20
b.working_tree().commit,
21
'commit without adding',
22
allow_pointless=False)
24
b.working_tree().commit('commit pointless tree',
27
b.working_tree().add('hello.txt')
29
b.working_tree().commit('commit first added file',
30
allow_pointless=False)
32
self.assertRaises(PointlessCommit,
33
b.working_tree().commit,
34
'commit after adding file',
35
allow_pointless=False)
37
b.working_tree().commit('commit pointless revision with one file',
41
class MoreTests(TestCaseInTempDir):
43
def test_rename_dirs(self):
44
"""Test renaming directories and the files within them."""
45
b = Branch.initialize(u'.')
46
self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
47
b.working_tree().add(['dir', 'dir/sub', 'dir/sub/file'])
49
b.working_tree().commit('create initial state')
51
# TODO: lift out to a test helper that checks the shape of
54
revid = b.revision_history()[0]
55
self.log('first revision_id is {%s}' % revid)
57
inv = b.get_revision_inventory(revid)
58
self.log('contents of inventory: %r' % inv.entries())
60
self.check_inventory_shape(inv,
61
['dir', 'dir/sub', 'dir/sub/file'])
63
b.working_tree().rename_one('dir', 'newdir')
65
self.check_inventory_shape(b.working_tree().read_working_inventory(),
66
['newdir', 'newdir/sub', 'newdir/sub/file'])
68
b.working_tree().rename_one('newdir/sub', 'newdir/newsub')
69
self.check_inventory_shape(b.working_tree().read_working_inventory(),
70
['newdir', 'newdir/newsub',
71
'newdir/newsub/file'])
26
class MoreTests(TestCaseWithTransport):
73
28
def test_relpath(self):
74
29
"""test for branch path lookups