~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-06-11 01:33:22 UTC
  • Revision ID: mbp@sourcefrog.net-20050611013322-f12014bf65accd0c
- don't show progress bar unless completion is known

Show diffs side-by-side

added added

removed removed

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