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()),
 
 
22
class Revert(InTempDir):
 
 
23
    """Test selected-file revert"""
 
 
25
        b = Branch('.', init=True)
 
 
27
        self.build_tree(['hello.txt'])
 
 
28
        file('hello.txt', 'w').write('initial hello')
 
 
30
        self.assertRaises(NotVersionedError,
 
 
31
                          b.revert, ['hello.txt'])
 
 
34
        b.commit('create initial hello.txt')
 
 
36
        self.check_file_contents('hello.txt', 'initial hello')
 
 
37
        file('hello.txt', 'w').write('new hello')
 
 
38
        self.check_file_contents('hello.txt', 'new hello')
 
 
40
        # revert file modified since last revision
 
 
41
        b.revert(['hello.txt'])
 
 
42
        self.check_file_contents('hello.txt', 'initial hello')
 
 
43
        self.check_file_contents('hello.txt~', 'new hello')
 
 
45
        # reverting again clobbers the backup
 
 
46
        b.revert(['hello.txt'])
 
 
47
        self.check_file_contents('hello.txt', 'initial hello')
 
 
48
        self.check_file_contents('hello.txt~', 'initial hello')
 
 
52
class RenameDirs(InTempDir):
 
 
53
    """Test renaming directories and the files within them."""
 
 
55
        b = Branch('.', init=True)
 
 
56
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
 
 
57
        b.add(['dir', 'dir/sub', 'dir/sub/file'])
 
 
59
        b.commit('create initial state')
 
 
61
        # TODO: lift out to a test helper that checks the shape of
 
 
64
        revid = b.revision_history()[0]
 
 
65
        self.log('first revision_id is {%s}' % revid)
 
 
67
        inv = b.get_revision_inventory(revid)
 
 
68
        self.log('contents of inventory: %r' % inv.entries())
 
 
70
        self.check_inventory_shape(inv,
 
 
71
                                   ['dir', 'dir/sub', 'dir/sub/file'])
 
 
73
        b.rename_one('dir', 'newdir')
 
 
75
        self.check_inventory_shape(b.inventory,
 
 
76
                                   ['newdir', 'newdir/sub', 'newdir/sub/file'])
 
 
78
        b.rename_one('newdir/sub', 'newdir/newsub')
 
 
79
        self.check_inventory_shape(b.inventory,
 
 
80
                                   ['newdir', 'newdir/newsub',
 
 
81
                                    'newdir/newsub/file'])
 
 
86
class BranchPathTestCase(TestBase):
 
 
87
    """test for branch path lookups
 
 
89
    Branch.relpath and bzrlib.branch._relpath do a simple but subtle
 
 
90
    job: given a path (either relative to cwd or absolute), work out
 
 
91
    if it is inside a branch and return the path relative to the base.
 
 
95
        from bzrlib.branch import _relpath
 
 
96
        import tempfile, shutil
 
 
98
        savedir = os.getcwdu()
 
 
99
        dtmp = tempfile.mkdtemp()
 
 
102
            return _relpath(dtmp, p)
 
 
105
            # check paths inside dtmp while standing outside it
 
 
106
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
 
 
109
            self.assertEqual(rp(dtmp), '')
 
 
111
            self.assertRaises(NotBranchError,
 
 
115
            # now some near-miss operations -- note that
 
 
116
            # os.path.commonprefix gets these wrong!
 
 
117
            self.assertRaises(NotBranchError,
 
 
119
                              dtmp.rstrip('\\/') + '2')
 
 
121
            self.assertRaises(NotBranchError,
 
 
123
                              dtmp.rstrip('\\/') + '2/foo')
 
 
125
            # now operations based on relpath of files in current
 
 
126
            # directory, or nearby
 
 
129
            self.assertEqual(rp('foo/bar/quux'), 'foo/bar/quux')
 
 
131
            self.assertEqual(rp('foo'), 'foo')
 
 
133
            self.assertEqual(rp('./foo'), 'foo')
 
 
135
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
 
 
137
            self.assertRaises(NotBranchError,