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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23
from bzrlib.tests import TestCaseWithTransport, TestCase
24
from bzrlib.branch import Branch
25
from bzrlib.errors import PathNotChild
26
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
29
class MoreTests(TestCaseWithTransport):
31
def test_relpath(self):
32
"""test for branch path lookups
34
bzrlib.osutils._relpath do a simple but subtle
35
job: given a path (either relative to cwd or absolute), work out
36
if it is inside a branch and return the path relative to the base.
6
from bzrlib.selftest import InTempDir, TestBase
7
from bzrlib.branch import ScratchBranch, Branch
8
from bzrlib.errors import NotBranchError, NotVersionedError
11
class Unknowns(InTempDir):
13
b = Branch('.', init=True)
15
self.build_tree(['hello.txt',
18
self.assertEquals(list(b.unknowns()),
23
class ValidateRevisionId(TestBase):
25
from bzrlib.revision import validate_revision_id
26
validate_revision_id('mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe')
28
self.assertRaises(ValueError,
33
self.assertRaises(ValueError,
35
'mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe\n')
38
self.assertRaises(ValueError,
40
' mbp@sourcefrog.net-20050311061123-96a255005c7c9dbe')
42
self.assertRaises(ValueError,
44
'Martin Pool <mbp@sourcefrog.net>-20050311061123-96a255005c7c9dbe')
48
class PendingMerges(InTempDir):
49
"""Tracking pending-merged revisions."""
51
b = Branch('.', init=True)
53
self.assertEquals(b.pending_merges(), [])
55
b.add_pending_merge('foo@azkhazan-123123-abcabc')
57
self.assertEquals(b.pending_merges(), ['foo@azkhazan-123123-abcabc'])
59
b.add_pending_merge('foo@azkhazan-123123-abcabc')
61
self.assertEquals(b.pending_merges(), ['foo@azkhazan-123123-abcabc'])
63
b.add_pending_merge('wibble@fofof--20050401--1928390812')
64
self.assertEquals(b.pending_merges(),
65
['foo@azkhazan-123123-abcabc',
66
'wibble@fofof--20050401--1928390812'])
68
b.commit("commit from base with two merges")
70
rev = b.get_revision(b.revision_history()[0])
71
self.assertEquals(len(rev.parents), 2)
72
self.assertEquals(rev.parents[0].revision_id,
73
'foo@azkhazan-123123-abcabc')
74
self.assertEquals(rev.parents[1].revision_id,
75
'wibble@fofof--20050401--1928390812')
79
class Revert(InTempDir):
80
"""Test selected-file revert"""
82
b = Branch('.', init=True)
84
self.build_tree(['hello.txt'])
85
file('hello.txt', 'w').write('initial hello')
87
self.assertRaises(NotVersionedError,
88
b.revert, ['hello.txt'])
91
b.commit('create initial hello.txt')
93
self.check_file_contents('hello.txt', 'initial hello')
94
file('hello.txt', 'w').write('new hello')
95
self.check_file_contents('hello.txt', 'new hello')
97
# revert file modified since last revision
98
b.revert(['hello.txt'])
99
self.check_file_contents('hello.txt', 'initial hello')
100
self.check_file_contents('hello.txt~', 'new hello')
102
# reverting again clobbers the backup
103
b.revert(['hello.txt'])
104
self.check_file_contents('hello.txt', 'initial hello')
105
self.check_file_contents('hello.txt~', 'initial hello')
109
class RenameDirs(InTempDir):
110
"""Test renaming directories and the files within them."""
112
b = Branch('.', init=True)
113
self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
114
b.add(['dir', 'dir/sub', 'dir/sub/file'])
116
b.commit('create initial state')
118
# TODO: lift out to a test helper that checks the shape of
121
revid = b.revision_history()[0]
122
self.log('first revision_id is {%s}' % revid)
124
inv = b.get_revision_inventory(revid)
125
self.log('contents of inventory: %r' % inv.entries())
127
self.check_inventory_shape(inv,
128
['dir', 'dir/sub', 'dir/sub/file'])
130
b.rename_one('dir', 'newdir')
132
self.check_inventory_shape(b.inventory,
133
['newdir', 'newdir/sub', 'newdir/sub/file'])
135
b.rename_one('newdir/sub', 'newdir/newsub')
136
self.check_inventory_shape(b.inventory,
137
['newdir', 'newdir/newsub',
138
'newdir/newsub/file'])
143
class BranchPathTestCase(TestBase):
144
"""test for branch path lookups
146
Branch.relpath and bzrlib.branch._relpath do a simple but subtle
147
job: given a path (either relative to cwd or absolute), work out
148
if it is inside a branch and return the path relative to the base.
152
from bzrlib.branch import _relpath
153
import tempfile, shutil
40
155
savedir = os.getcwdu()
41
dtmp = osutils.mkdtemp()
42
# On Mac OSX, /tmp actually expands to /private/tmp
156
dtmp = tempfile.mkdtemp()
46
return relpath(dtmp, p)
159
return _relpath(dtmp, p)
49
162
# check paths inside dtmp while standing outside it
50
self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
163
self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
53
166
self.assertEqual(rp(dtmp), '')
55
self.assertRaises(PathNotChild,
168
self.assertRaises(NotBranchError,
59
172
# now some near-miss operations -- note that
60
173
# os.path.commonprefix gets these wrong!
61
self.assertRaises(PathNotChild,
174
self.assertRaises(NotBranchError,
63
176
dtmp.rstrip('\\/') + '2')
65
self.assertRaises(PathNotChild,
178
self.assertRaises(NotBranchError,
67
180
dtmp.rstrip('\\/') + '2/foo')