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
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):
4
from bzrlib.selftest import TestCaseInTempDir, TestCase
5
from bzrlib.branch import ScratchBranch, Branch
6
from bzrlib.errors import NotBranchError, NotVersionedError
9
class TestBranch(TestCaseInTempDir):
11
def test_unknowns(self):
12
b = Branch.initialize('.')
14
self.build_tree(['hello.txt',
17
self.assertEquals(list(b.unknowns()),
20
def test_no_changes(self):
21
from bzrlib.errors import PointlessCommit
23
b = Branch.initialize('.')
25
self.build_tree(['hello.txt'])
27
self.assertRaises(PointlessCommit,
29
'commit without adding',
30
allow_pointless=False)
32
b.commit('commit pointless tree',
37
b.commit('commit first added file',
38
allow_pointless=False)
40
self.assertRaises(PointlessCommit,
42
'commit after adding file',
43
allow_pointless=False)
45
b.commit('commit pointless revision with one file',
49
class MoreTests(TestCaseInTempDir):
51
def test_revert(self):
52
"""Test selected-file revert"""
53
b = Branch.initialize('.')
55
self.build_tree(['hello.txt'])
56
file('hello.txt', 'w').write('initial hello')
58
self.assertRaises(NotVersionedError,
59
b.revert, ['hello.txt'])
62
b.commit('create initial hello.txt')
64
self.check_file_contents('hello.txt', 'initial hello')
65
file('hello.txt', 'w').write('new hello')
66
self.check_file_contents('hello.txt', 'new hello')
68
# revert file modified since last revision
69
b.revert(['hello.txt'])
70
self.check_file_contents('hello.txt', 'initial hello')
71
self.check_file_contents('hello.txt~', 'new hello')
73
# reverting again clobbers the backup
74
b.revert(['hello.txt'])
75
self.check_file_contents('hello.txt', 'initial hello')
76
self.check_file_contents('hello.txt~', 'initial hello')
78
def test_rename_dirs(self):
79
"""Test renaming directories and the files within them."""
80
b = Branch.initialize('.')
81
self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
82
b.add(['dir', 'dir/sub', 'dir/sub/file'])
84
b.commit('create initial state')
86
# TODO: lift out to a test helper that checks the shape of
89
revid = b.revision_history()[0]
90
self.log('first revision_id is {%s}' % revid)
92
inv = b.get_revision_inventory(revid)
93
self.log('contents of inventory: %r' % inv.entries())
95
self.check_inventory_shape(inv,
96
['dir', 'dir/sub', 'dir/sub/file'])
98
b.rename_one('dir', 'newdir')
100
self.check_inventory_shape(b.inventory,
101
['newdir', 'newdir/sub', 'newdir/sub/file'])
103
b.rename_one('newdir/sub', 'newdir/newsub')
104
self.check_inventory_shape(b.inventory,
105
['newdir', 'newdir/newsub',
106
'newdir/newsub/file'])
31
108
def test_relpath(self):
32
109
"""test for branch path lookups
35
112
job: given a path (either relative to cwd or absolute), work out
36
113
if it is inside a branch and return the path relative to the base.
115
from bzrlib.osutils import relpath
116
import tempfile, shutil
40
118
savedir = os.getcwdu()
41
119
dtmp = tempfile.mkdtemp()
42
120
# On Mac OSX, /tmp actually expands to /private/tmp
121
dtmp = os.path.realpath(dtmp)
46
124
return relpath(dtmp, p)
49
127
# check paths inside dtmp while standing outside it
50
self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
128
self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
53
131
self.assertEqual(rp(dtmp), '')
55
self.assertRaises(PathNotChild,
133
self.assertRaises(NotBranchError,
59
137
# now some near-miss operations -- note that
60
138
# os.path.commonprefix gets these wrong!
61
self.assertRaises(PathNotChild,
139
self.assertRaises(NotBranchError,
63
141
dtmp.rstrip('\\/') + '2')
65
self.assertRaises(PathNotChild,
143
self.assertRaises(NotBranchError,
67
145
dtmp.rstrip('\\/') + '2/foo')