~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_whitebox.py

  • Committer: Robert Collins
  • Date: 2007-10-23 22:14:32 UTC
  • mto: (2592.6.3 repository)
  • mto: This revision was merged to the branch mainline in revision 2967.
  • Revision ID: robertc@robertcollins.net-20071023221432-j8zndh1oiegql3cu
* Commit updates the state of the working tree via a delta rather than
  supplying entirely new basis trees. For commit of a single specified file
  this reduces the wall clock time for commit by roughly a 30%.
  (Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2008, 2009, 2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
import os
 
18
import unittest
18
19
 
19
20
from bzrlib import (
20
21
    osutils,
21
22
    )
22
 
from bzrlib.tests import TestCaseWithTransport
 
23
from bzrlib.tests import TestCaseWithTransport, TestCase
 
24
from bzrlib.branch import Branch
23
25
from bzrlib.errors import PathNotChild
24
26
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
25
27
 
28
30
 
29
31
    def test_relpath(self):
30
32
        """test for branch path lookups
31
 
 
 
33
    
32
34
        bzrlib.osutils._relpath do a simple but subtle
33
35
        job: given a path (either relative to cwd or absolute), work out
34
36
        if it is inside a branch and return the path relative to the base.
35
37
        """
36
38
        import tempfile
37
 
 
 
39
        
38
40
        savedir = os.getcwdu()
39
 
        dtmp = osutils.mkdtemp()
 
41
        dtmp = tempfile.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')