4
from bzrlib.tests import TestCaseInTempDir, TestCase
4
from bzrlib.selftest import TestCaseInTempDir, TestCase
5
5
from bzrlib.branch import ScratchBranch, Branch
6
from bzrlib.errors import NotBranchError
6
from bzrlib.errors import NotBranchError, NotVersionedError
9
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()),
11
20
def test_no_changes(self):
12
21
from bzrlib.errors import PointlessCommit
16
25
self.build_tree(['hello.txt'])
18
27
self.assertRaises(PointlessCommit,
19
b.working_tree().commit,
20
29
'commit without adding',
21
30
allow_pointless=False)
23
b.working_tree().commit('commit pointless tree',
32
b.commit('commit pointless tree',
24
33
allow_pointless=True)
26
b.working_tree().add('hello.txt')
28
b.working_tree().commit('commit first added file',
37
b.commit('commit first added file',
29
38
allow_pointless=False)
31
40
self.assertRaises(PointlessCommit,
32
b.working_tree().commit,
33
42
'commit after adding file',
34
43
allow_pointless=False)
36
b.working_tree().commit('commit pointless revision with one file',
45
b.commit('commit pointless revision with one file',
37
46
allow_pointless=True)
40
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')
42
78
def test_rename_dirs(self):
43
79
"""Test renaming directories and the files within them."""
44
80
b = Branch.initialize('.')
45
81
self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
46
b.working_tree().add(['dir', 'dir/sub', 'dir/sub/file'])
82
b.add(['dir', 'dir/sub', 'dir/sub/file'])
48
b.working_tree().commit('create initial state')
84
b.commit('create initial state')
50
86
# TODO: lift out to a test helper that checks the shape of
59
95
self.check_inventory_shape(inv,
60
96
['dir', 'dir/sub', 'dir/sub/file'])
62
b.working_tree().rename_one('dir', 'newdir')
98
b.rename_one('dir', 'newdir')
64
self.check_inventory_shape(b.working_tree().read_working_inventory(),
100
self.check_inventory_shape(b.inventory,
65
101
['newdir', 'newdir/sub', 'newdir/sub/file'])
67
b.working_tree().rename_one('newdir/sub', 'newdir/newsub')
68
self.check_inventory_shape(b.working_tree().read_working_inventory(),
103
b.rename_one('newdir/sub', 'newdir/newsub')
104
self.check_inventory_shape(b.inventory,
69
105
['newdir', 'newdir/newsub',
70
106
'newdir/newsub/file'])
72
108
def test_relpath(self):
73
109
"""test for branch path lookups
75
bzrlib.osutils._relpath do a simple but subtle
111
Branch.relpath and bzrlib.branch._relpath do a simple but subtle
76
112
job: given a path (either relative to cwd or absolute), work out
77
113
if it is inside a branch and return the path relative to the base.
79
from bzrlib.osutils import relpath
115
from bzrlib.branch import _relpath
80
116
import tempfile, shutil
82
118
savedir = os.getcwdu()