/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-06-24 09:18:43 UTC
  • Revision ID: mbp@sourcefrog.net-20050624091843-3918fa12930fdc04
- remove done TODO items

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
2
 
#
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.
7
 
#
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.
12
 
#
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
 
1
#! /usr/bin/python
16
2
 
17
3
import os
18
4
import unittest
19
5
 
20
 
from bzrlib import (
21
 
    osutils,
22
 
    )
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
27
 
 
28
 
 
29
 
class MoreTests(TestCaseWithTransport):
30
 
 
31
 
    def test_relpath(self):
32
 
        """test for branch path lookups
33
 
 
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.
37
 
        """
38
 
        import tempfile
39
 
 
 
6
from bzrlib.selftest import InTempDir, TestBase
 
7
from bzrlib.branch import ScratchBranch, Branch
 
8
from bzrlib.errors import NotBranchError
 
9
 
 
10
 
 
11
class RenameDirs(InTempDir):
 
12
    """Test renaming directories and the files within them."""
 
13
    def runTest(self):
 
14
        from bzrlib.commit import commit
 
15
 
 
16
        b = Branch('.', init=True)
 
17
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
 
18
        b.add(['dir', 'dir/sub', 'dir/sub/file'])
 
19
 
 
20
        b.commit('create initial state')
 
21
 
 
22
        # TODO: lift out to a test helper that checks the shape of
 
23
        # an inventory
 
24
        
 
25
        revid = b.revision_history()[0]
 
26
        self.log('first revision_id is {%s}' % revid)
 
27
        
 
28
        inv = b.get_revision_inventory(revid)
 
29
        self.log('contents of inventory: %r' % inv.entries())
 
30
 
 
31
        self.check_inventory_shape(inv,
 
32
                                   ['dir', 'dir/sub', 'dir/sub/file'])
 
33
 
 
34
        b.rename_one('dir', 'newdir')
 
35
 
 
36
        self.check_inventory_shape(b.inventory,
 
37
                                   ['newdir', 'newdir/sub', 'newdir/sub/file'])
 
38
 
 
39
        b.rename_one('newdir/sub', 'newdir/newsub')
 
40
        self.check_inventory_shape(b.inventory,
 
41
                                   ['newdir', 'newdir/newsub',
 
42
                                    'newdir/newsub/file'])
 
43
 
 
44
        
 
45
 
 
46
 
 
47
class BranchPathTestCase(TestBase):
 
48
    """test for branch path lookups
 
49
 
 
50
    Branch.relpath and bzrlib.branch._relpath do a simple but subtle
 
51
    job: given a path (either relative to cwd or absolute), work out
 
52
    if it is inside a branch and return the path relative to the base.
 
53
    """
 
54
 
 
55
    def runTest(self):
 
56
        from bzrlib.branch import _relpath
 
57
        import tempfile, shutil
 
58
        
40
59
        savedir = os.getcwdu()
41
 
        dtmp = osutils.mkdtemp()
42
 
        # On Mac OSX, /tmp actually expands to /private/tmp
43
 
        dtmp = realpath(dtmp)
 
60
        dtmp = tempfile.mkdtemp()
44
61
 
45
62
        def rp(p):
46
 
            return relpath(dtmp, p)
47
 
 
 
63
            return _relpath(dtmp, p)
 
64
        
48
65
        try:
49
66
            # check paths inside dtmp while standing outside it
50
 
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
 
67
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
51
68
 
52
69
            # root = nothing
53
70
            self.assertEqual(rp(dtmp), '')
54
71
 
55
 
            self.assertRaises(PathNotChild,
 
72
            self.assertRaises(NotBranchError,
56
73
                              rp,
57
74
                              '/etc')
58
75
 
59
76
            # now some near-miss operations -- note that
60
77
            # os.path.commonprefix gets these wrong!
61
 
            self.assertRaises(PathNotChild,
 
78
            self.assertRaises(NotBranchError,
62
79
                              rp,
63
80
                              dtmp.rstrip('\\/') + '2')
64
81
 
65
 
            self.assertRaises(PathNotChild,
 
82
            self.assertRaises(NotBranchError,
66
83
                              rp,
67
84
                              dtmp.rstrip('\\/') + '2/foo')
68
85
 
76
93
 
77
94
            self.assertEqual(rp('./foo'), 'foo')
78
95
 
79
 
            self.assertEqual(rp(abspath('foo')), 'foo')
 
96
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
80
97
 
81
 
            self.assertRaises(PathNotChild,
 
98
            self.assertRaises(NotBranchError,
82
99
                              rp, '../foo')
83
100
 
84
101
        finally:
85
102
            os.chdir(savedir)
86
 
            osutils.rmtree(dtmp)
 
103
            shutil.rmtree(dtmp)