~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: 2011-09-22 14:12:18 UTC
  • mfrom: (6155.3.1 jam)
  • Revision ID: pqm@pqm.ubuntu.com-20110922141218-86s4uu6nqvourw4f
(jameinel) Cleanup comments bzrlib/smart/__init__.py (John A Meinel)

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
 
1
17
import os
2
 
import unittest
3
18
 
4
 
from bzrlib.tests import TestCaseWithTransport, TestCase
5
 
from bzrlib.branch import ScratchBranch, Branch
 
19
from bzrlib import (
 
20
    osutils,
 
21
    )
 
22
from bzrlib.tests import TestCaseWithTransport
6
23
from bzrlib.errors import PathNotChild
7
24
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
8
25
 
11
28
 
12
29
    def test_relpath(self):
13
30
        """test for branch path lookups
14
 
    
 
31
 
15
32
        bzrlib.osutils._relpath do a simple but subtle
16
33
        job: given a path (either relative to cwd or absolute), work out
17
34
        if it is inside a branch and return the path relative to the base.
18
35
        """
19
36
        import tempfile
20
 
        from bzrlib.osutils import rmtree
21
 
        
 
37
 
22
38
        savedir = os.getcwdu()
23
 
        dtmp = tempfile.mkdtemp()
 
39
        dtmp = osutils.mkdtemp()
24
40
        # On Mac OSX, /tmp actually expands to /private/tmp
25
41
        dtmp = realpath(dtmp)
26
42
 
27
43
        def rp(p):
28
44
            return relpath(dtmp, p)
29
 
        
 
45
 
30
46
        try:
31
47
            # check paths inside dtmp while standing outside it
32
48
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
65
81
 
66
82
        finally:
67
83
            os.chdir(savedir)
68
 
            rmtree(dtmp)
 
84
            osutils.rmtree(dtmp)