~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/whitebox.py

Exclude more files from dumb-rsync upload

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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
1
import os
18
2
import unittest
19
3
 
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):
 
4
from bzrlib.selftest import TestCaseInTempDir, TestCase
 
5
from bzrlib.branch import ScratchBranch, Branch
 
6
from bzrlib.errors import NotBranchError
 
7
 
 
8
 
 
9
class TestBranch(TestCaseInTempDir):
 
10
 
 
11
    def test_unknowns(self):
 
12
        b = Branch.initialize('.')
 
13
 
 
14
        self.build_tree(['hello.txt',
 
15
                         'hello.txt~'])
 
16
 
 
17
        self.assertEquals(list(b.unknowns()),
 
18
                          ['hello.txt'])
 
19
 
 
20
    def test_no_changes(self):
 
21
        from bzrlib.errors import PointlessCommit
 
22
        
 
23
        b = Branch.initialize('.')
 
24
 
 
25
        self.build_tree(['hello.txt'])
 
26
 
 
27
        self.assertRaises(PointlessCommit,
 
28
                          b.working_tree().commit,
 
29
                          'commit without adding',
 
30
                          allow_pointless=False)
 
31
 
 
32
        b.working_tree().commit('commit pointless tree',
 
33
                 allow_pointless=True)
 
34
 
 
35
        b.add('hello.txt')
 
36
        
 
37
        b.working_tree().commit('commit first added file',
 
38
                 allow_pointless=False)
 
39
        
 
40
        self.assertRaises(PointlessCommit,
 
41
                          b.working_tree().commit,
 
42
                          'commit after adding file',
 
43
                          allow_pointless=False)
 
44
        
 
45
        b.working_tree().commit('commit pointless revision with one file',
 
46
                 allow_pointless=True)
 
47
 
 
48
 
 
49
class MoreTests(TestCaseInTempDir):
 
50
 
 
51
    def test_rename_dirs(self):
 
52
        """Test renaming directories and the files within them."""
 
53
        b = Branch.initialize('.')
 
54
        self.build_tree(['dir/', 'dir/sub/', 'dir/sub/file'])
 
55
        b.add(['dir', 'dir/sub', 'dir/sub/file'])
 
56
 
 
57
        b.working_tree().commit('create initial state')
 
58
 
 
59
        # TODO: lift out to a test helper that checks the shape of
 
60
        # an inventory
 
61
        
 
62
        revid = b.revision_history()[0]
 
63
        self.log('first revision_id is {%s}' % revid)
 
64
        
 
65
        inv = b.get_revision_inventory(revid)
 
66
        self.log('contents of inventory: %r' % inv.entries())
 
67
 
 
68
        self.check_inventory_shape(inv,
 
69
                                   ['dir', 'dir/sub', 'dir/sub/file'])
 
70
 
 
71
        b.rename_one('dir', 'newdir')
 
72
 
 
73
        self.check_inventory_shape(b.working_tree().read_working_inventory(),
 
74
                                   ['newdir', 'newdir/sub', 'newdir/sub/file'])
 
75
 
 
76
        b.rename_one('newdir/sub', 'newdir/newsub')
 
77
        self.check_inventory_shape(b.working_tree().read_working_inventory(),
 
78
                                   ['newdir', 'newdir/newsub',
 
79
                                    'newdir/newsub/file'])
30
80
 
31
81
    def test_relpath(self):
32
82
        """test for branch path lookups
35
85
        job: given a path (either relative to cwd or absolute), work out
36
86
        if it is inside a branch and return the path relative to the base.
37
87
        """
38
 
        import tempfile
 
88
        from bzrlib.osutils import relpath
 
89
        import tempfile, shutil
39
90
        
40
91
        savedir = os.getcwdu()
41
92
        dtmp = tempfile.mkdtemp()
42
93
        # On Mac OSX, /tmp actually expands to /private/tmp
43
 
        dtmp = realpath(dtmp)
 
94
        dtmp = os.path.realpath(dtmp)
44
95
 
45
96
        def rp(p):
46
97
            return relpath(dtmp, p)
47
98
        
48
99
        try:
49
100
            # check paths inside dtmp while standing outside it
50
 
            self.assertEqual(rp(pathjoin(dtmp, 'foo')), 'foo')
 
101
            self.assertEqual(rp(os.path.join(dtmp, 'foo')), 'foo')
51
102
 
52
103
            # root = nothing
53
104
            self.assertEqual(rp(dtmp), '')
54
105
 
55
 
            self.assertRaises(PathNotChild,
 
106
            self.assertRaises(NotBranchError,
56
107
                              rp,
57
108
                              '/etc')
58
109
 
59
110
            # now some near-miss operations -- note that
60
111
            # os.path.commonprefix gets these wrong!
61
 
            self.assertRaises(PathNotChild,
 
112
            self.assertRaises(NotBranchError,
62
113
                              rp,
63
114
                              dtmp.rstrip('\\/') + '2')
64
115
 
65
 
            self.assertRaises(PathNotChild,
 
116
            self.assertRaises(NotBranchError,
66
117
                              rp,
67
118
                              dtmp.rstrip('\\/') + '2/foo')
68
119
 
70
121
            # directory, or nearby
71
122
            os.chdir(dtmp)
72
123
 
73
 
            self.assertEqual(rp('foo/bar/quux'), 'foo/bar/quux')
 
124
            FOO_BAR_QUUX = os.path.join('foo', 'bar', 'quux')
 
125
            self.assertEqual(rp('foo/bar/quux'), FOO_BAR_QUUX)
74
126
 
75
127
            self.assertEqual(rp('foo'), 'foo')
76
128
 
77
129
            self.assertEqual(rp('./foo'), 'foo')
78
130
 
79
 
            self.assertEqual(rp(abspath('foo')), 'foo')
 
131
            self.assertEqual(rp(os.path.abspath('foo')), 'foo')
80
132
 
81
 
            self.assertRaises(PathNotChild,
 
133
            self.assertRaises(NotBranchError,
82
134
                              rp, '../foo')
83
135
 
84
136
        finally:
85
137
            os.chdir(savedir)
86
 
            osutils.rmtree(dtmp)
 
138
            shutil.rmtree(dtmp)