~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

  • Committer: Aaron Bentley
  • Date: 2009-03-24 15:47:32 UTC
  • mto: This revision was merged to the branch mainline in revision 4241.
  • Revision ID: aaron@aaronbentley.com-20090324154732-bwkvi4dx3o90a7dq
Add output, emit minimal inventory delta.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
 
1
# Copyright (C) 2005, 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
import os
18
18
import unittest
19
19
 
 
20
from bzrlib import (
 
21
    osutils,
 
22
    )
20
23
from bzrlib.tests import TestCaseWithTransport, TestCase
21
24
from bzrlib.branch import Branch
22
25
from bzrlib.errors import PathNotChild
27
30
 
28
31
    def test_relpath(self):
29
32
        """test for branch path lookups
30
 
    
 
33
 
31
34
        bzrlib.osutils._relpath do a simple but subtle
32
35
        job: given a path (either relative to cwd or absolute), work out
33
36
        if it is inside a branch and return the path relative to the base.
34
37
        """
35
38
        import tempfile
36
 
        from bzrlib.osutils import rmtree
37
 
        
 
39
 
38
40
        savedir = os.getcwdu()
39
 
        dtmp = tempfile.mkdtemp()
 
41
        dtmp = osutils.mkdtemp()
40
42
        # On Mac OSX, /tmp actually expands to /private/tmp
41
43
        dtmp = realpath(dtmp)
42
44
 
43
45
        def rp(p):
44
46
            return relpath(dtmp, p)
45
 
        
 
47
 
46
48
        try:
47
49
            # check paths inside dtmp while standing outside it
48
50
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
81
83
 
82
84
        finally:
83
85
            os.chdir(savedir)
84
 
            rmtree(dtmp)
 
86
            osutils.rmtree(dtmp)