~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-07-04 05:29:56 UTC
  • Revision ID: mbp@sourcefrog.net-20050704052956-49a5b8f5e04a36e1
- stubbed out call to merge_core tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 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
 
1
#! /usr/bin/python
16
2
 
17
3
import os
18
4
import unittest
19
5
 
20
 
from bzrlib import (
21
 
    osutils,
22
 
    )
23
 
from bzrlib.tests import TestCaseWithTransport, TestCase
24
 
from bzrlib.branch import Branch
25
 
from bzrlib.errors import PathNotChild
26
 
from bzrlib.osutils import relpath, pathjoin, abspath, realpath
27
 
 
28
 
 
29
 
class MoreTests(TestCaseWithTransport):
30
 
 
31
 
    def test_relpath(self):
32
 
        """test for branch path lookups
33
 
 
34
 
        bzrlib.osutils._relpath do a simple but subtle
35
 
        job: given a path (either relative to cwd or absolute), work out
36
 
        if it is inside a branch and return the path relative to the base.
37
 
        """
38
 
        import tempfile
39
 
 
 
6
from bzrlib.selftest import InTempDir, TestBase
 
7
from bzrlib.branch import ScratchBranch, Branch
 
8
from bzrlib.errors import NotBranchError, NotVersionedError
 
9
 
 
10
 
 
11
class Unknowns(InTempDir):
 
12
    def runTest(self):
 
13
        b = Branch('.', init=True)
 
14
 
 
15
        self.build_tree(['hello.txt',
 
16
                         'hello.txt~'])
 
17
 
 
18
        self.assertEquals(list(b.unknowns()),
 
19
                          ['hello.txt'])
 
20
 
 
21
 
 
22
class Revert(InTempDir):
 
23
    """Test selected-file revert"""
 
24
    def runTest(self):
 
25
        b = Branch('.', init=True)
 
26
 
 
27
        self.build_tree(['hello.txt'])
 
28
        file('hello.txt', 'w').write('initial hello')
 
29
 
 
30
        self.assertRaises(NotVersionedError,
 
31
                          b.revert, ['hello.txt'])
 
32
        
 
33
        b.add(['hello.txt'])
 
34
        b.commit('create initial hello.txt')
 
35
 
 
36
        self.check_file_contents('hello.txt', 'initial hello')
 
37
        file('hello.txt', 'w').write('new hello')
 
38
        self.check_file_contents('hello.txt', 'new hello')
 
39
 
 
40
        # revert file modified since last revision
 
41
        b.revert(['hello.txt'])
 
42
        self.check_file_contents('hello.txt', 'initial hello')
 
43
        self.check_file_contents('hello.txt~', 'new hello')
 
44
 
 
45
        # reverting again clobbers the backup
 
46
        b.revert(['hello.txt'])
 
47
        self.check_file_contents('hello.txt', 'initial hello')
 
48
        self.check_file_contents('hello.txt~', 'initial hello')
 
49
 
 
50
 
 
51
 
 
52
class RenameDirs(InTempDir):
 
53
    """Test renaming directories and the files within them."""
 
54
    def runTest(self):
 
55
        b = Branch('.', init=True)
 
56
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
 
57
        b.add(['dir', 'dir/sub', 'dir/sub/file'])
 
58
 
 
59
        b.commit('create initial state')
 
60
 
 
61
        # TODO: lift out to a test helper that checks the shape of
 
62
        # an inventory
 
63
        
 
64
        revid = b.revision_history()[0]
 
65
        self.log('first revision_id is {%s}' % revid)
 
66
        
 
67
        inv = b.get_revision_inventory(revid)
 
68
        self.log('contents of inventory: %r' % inv.entries())
 
69
 
 
70
        self.check_inventory_shape(inv,
 
71
                                   ['dir', 'dir/sub', 'dir/sub/file'])
 
72
 
 
73
        b.rename_one('dir', 'newdir')
 
74
 
 
75
        self.check_inventory_shape(b.inventory,
 
76
                                   ['newdir', 'newdir/sub', 'newdir/sub/file'])
 
77
 
 
78
        b.rename_one('newdir/sub', 'newdir/newsub')
 
79
        self.check_inventory_shape(b.inventory,
 
80
                                   ['newdir', 'newdir/newsub',
 
81
                                    'newdir/newsub/file'])
 
82
 
 
83
        
 
84
 
 
85
 
 
86
class BranchPathTestCase(TestBase):
 
87
    """test for branch path lookups
 
88
 
 
89
    Branch.relpath and bzrlib.branch._relpath do a simple but subtle
 
90
    job: given a path (either relative to cwd or absolute), work out
 
91
    if it is inside a branch and return the path relative to the base.
 
92
    """
 
93
 
 
94
    def runTest(self):
 
95
        from bzrlib.branch import _relpath
 
96
        import tempfile, shutil
 
97
        
40
98
        savedir = os.getcwdu()
41
 
        dtmp = osutils.mkdtemp()
42
 
        # On Mac OSX, /tmp actually expands to /private/tmp
43
 
        dtmp = realpath(dtmp)
 
99
        dtmp = tempfile.mkdtemp()
44
100
 
45
101
        def rp(p):
46
 
            return relpath(dtmp, p)
47
 
 
 
102
            return _relpath(dtmp, p)
 
103
        
48
104
        try:
49
105
            # check paths inside dtmp while standing outside it
50
 
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
 
106
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
51
107
 
52
108
            # root = nothing
53
109
            self.assertEqual(rp(dtmp), '')
54
110
 
55
 
            self.assertRaises(PathNotChild,
 
111
            self.assertRaises(NotBranchError,
56
112
                              rp,
57
113
                              '/etc')
58
114
 
59
115
            # now some near-miss operations -- note that
60
116
            # os.path.commonprefix gets these wrong!
61
 
            self.assertRaises(PathNotChild,
 
117
            self.assertRaises(NotBranchError,
62
118
                              rp,
63
119
                              dtmp.rstrip('\\/') + '2')
64
120
 
65
 
            self.assertRaises(PathNotChild,
 
121
            self.assertRaises(NotBranchError,
66
122
                              rp,
67
123
                              dtmp.rstrip('\\/') + '2/foo')
68
124
 
76
132
 
77
133
            self.assertEqual(rp('./foo'), 'foo')
78
134
 
79
 
            self.assertEqual(rp(abspath('foo')), 'foo')
 
135
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
80
136
 
81
 
            self.assertRaises(PathNotChild,
 
137
            self.assertRaises(NotBranchError,
82
138
                              rp, '../foo')
83
139
 
84
140
        finally:
85
141
            os.chdir(savedir)
86
 
            osutils.rmtree(dtmp)
 
142
            shutil.rmtree(dtmp)