~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

  • Committer: Patch Queue Manager
  • Date: 2012-10-25 11:13:27 UTC
  • mfrom: (6570.1.6 rubberstamp)
  • Revision ID: pqm@pqm.ubuntu.com-20121025111327-p0ylql0nh9fla0rs
(gz) Set approved revision and vote "Approve" when using lp-propose
 --approve (Jonathan Lange)

Show diffs side-by-side

added added

removed removed

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