/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/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-06-06 13:24:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050606132418-1082c87e2473e266
- manpage generator by Hans Ulrich Niedermann

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
 
import os
18
 
import unittest
19
 
 
20
 
from bzrlib.tests import TestCaseWithTransport, TestCase
21
 
from bzrlib.branch import Branch
22
 
from bzrlib.errors import PathNotChild
23
 
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
24
 
 
25
 
 
26
 
class MoreTests(TestCaseWithTransport):
27
 
 
28
 
    def test_relpath(self):
29
 
        """test for branch path lookups
 
1
#! /usr/bin/python
 
2
 
 
3
from bzrlib.branch import ScratchBranch
 
4
from bzrlib.errors import NotBranchError
 
5
from unittest import TestCase
 
6
import os, unittest
 
7
 
 
8
class BranchPathTestCase(TestCase):
 
9
    """test for branch path lookups
 
10
 
 
11
    Branch.relpath and bzrlib.branch._relpath do a simple but subtle
 
12
    job: given a path (either relative to cwd or absolute), work out
 
13
    if it is inside a branch and return the path relative to the base.
 
14
    """
30
15
    
31
 
        bzrlib.osutils._relpath do a simple but subtle
32
 
        job: given a path (either relative to cwd or absolute), work out
33
 
        if it is inside a branch and return the path relative to the base.
34
 
        """
35
 
        import tempfile
36
 
        from bzrlib.osutils import rmtree
 
16
    def runTest(self):
 
17
        from bzrlib.branch import _relpath
 
18
        import tempfile, shutil
37
19
        
38
20
        savedir = os.getcwdu()
39
21
        dtmp = tempfile.mkdtemp()
40
 
        # On Mac OSX, /tmp actually expands to /private/tmp
41
 
        dtmp = realpath(dtmp)
42
22
 
43
23
        def rp(p):
44
 
            return relpath(dtmp, p)
 
24
            return _relpath(dtmp, p)
45
25
        
46
26
        try:
47
27
            # check paths inside dtmp while standing outside it
48
 
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
 
28
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
49
29
 
50
30
            # root = nothing
51
31
            self.assertEqual(rp(dtmp), '')
52
32
 
53
 
            self.assertRaises(PathNotChild,
 
33
            self.assertRaises(NotBranchError,
54
34
                              rp,
55
35
                              '/etc')
56
36
 
57
37
            # now some near-miss operations -- note that
58
38
            # os.path.commonprefix gets these wrong!
59
 
            self.assertRaises(PathNotChild,
 
39
            self.assertRaises(NotBranchError,
60
40
                              rp,
61
41
                              dtmp.rstrip('\\/') + '2')
62
42
 
63
 
            self.assertRaises(PathNotChild,
 
43
            self.assertRaises(NotBranchError,
64
44
                              rp,
65
45
                              dtmp.rstrip('\\/') + '2/foo')
66
46
 
74
54
 
75
55
            self.assertEqual(rp('./foo'), 'foo')
76
56
 
77
 
            self.assertEqual(rp(abspath('foo')), 'foo')
 
57
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
78
58
 
79
 
            self.assertRaises(PathNotChild,
 
59
            self.assertRaises(NotBranchError,
80
60
                              rp, '../foo')
81
61
 
82
62
        finally:
83
63
            os.chdir(savedir)
84
 
            rmtree(dtmp)
 
64
            shutil.rmtree(dtmp)
 
65
 
 
66
                              
 
67
if __name__ == '__main__':
 
68
    unittest.main()
 
69