~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
    """
 
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
import os
 
18
import unittest
 
19
 
 
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
15
33
    
16
 
    def runTest(self):
17
 
        from bzrlib.branch import _relpath
18
 
        import tempfile, shutil
19
 
        
 
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
 
20
40
        savedir = os.getcwdu()
21
 
        dtmp = tempfile.mkdtemp()
 
41
        dtmp = osutils.mkdtemp()
 
42
        # On Mac OSX, /tmp actually expands to /private/tmp
 
43
        dtmp = realpath(dtmp)
22
44
 
23
45
        def rp(p):
24
 
            return _relpath(dtmp, p)
25
 
        
 
46
            return relpath(dtmp, p)
 
47
 
26
48
        try:
27
49
            # check paths inside dtmp while standing outside it
28
 
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
 
50
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
29
51
 
30
52
            # root = nothing
31
53
            self.assertEqual(rp(dtmp), '')
32
54
 
33
 
            self.assertRaises(NotBranchError,
 
55
            self.assertRaises(PathNotChild,
34
56
                              rp,
35
57
                              '/etc')
36
58
 
37
59
            # now some near-miss operations -- note that
38
60
            # os.path.commonprefix gets these wrong!
39
 
            self.assertRaises(NotBranchError,
 
61
            self.assertRaises(PathNotChild,
40
62
                              rp,
41
63
                              dtmp.rstrip('\\/') + '2')
42
64
 
43
 
            self.assertRaises(NotBranchError,
 
65
            self.assertRaises(PathNotChild,
44
66
                              rp,
45
67
                              dtmp.rstrip('\\/') + '2/foo')
46
68
 
54
76
 
55
77
            self.assertEqual(rp('./foo'), 'foo')
56
78
 
57
 
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
 
79
            self.assertEqual(rp(abspath('foo')), 'foo')
58
80
 
59
 
            self.assertRaises(NotBranchError,
 
81
            self.assertRaises(PathNotChild,
60
82
                              rp, '../foo')
61
83
 
62
84
        finally:
63
85
            os.chdir(savedir)
64
 
            shutil.rmtree(dtmp)
65
 
 
66
 
                              
67
 
if __name__ == '__main__':
68
 
    unittest.main()
69
 
    
 
86
            osutils.rmtree(dtmp)