~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

  • Committer: Jelmer Vernooij
  • Date: 2011-11-30 20:02:16 UTC
  • mto: This revision was merged to the branch mainline in revision 6333.
  • Revision ID: jelmer@samba.org-20111130200216-aoju21pdl20d1gkd
Consistently pass tree path when exporting.

Show diffs side-by-side

added added

removed removed

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