~bzr-pqm/bzr/bzr.dev

4763.2.4 by John Arbash Meinel
merge bzr.2.1 in preparation for NEWS entry.
1
# Copyright (C) 2007-2010 Canonical Ltd
2363.5.11 by Aaron Bentley
All info tests pass
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2363.5.11 by Aaron Bentley
All info tests pass
16
2804.4.3 by Alexander Belchenko
fix for test_info-tests: using osutils.getcwd instead of os.getcwd (sigh)
17
import sys
1551.15.43 by Aaron Bentley
Provide ways of getting at unicode-clean output
18
from urllib import quote
2363.5.11 by Aaron Bentley
All info tests pass
19
2363.5.2 by Aaron Bentley
Implement layout description
20
from bzrlib import (
2363.5.5 by Aaron Bentley
add info.describe_format
21
    branch as _mod_branch,
2363.5.2 by Aaron Bentley
Implement layout description
22
    bzrdir,
23
    info,
24
    tests,
2363.5.5 by Aaron Bentley
add info.describe_format
25
    workingtree,
26
    repository as _mod_repository,
2363.5.2 by Aaron Bentley
Implement layout description
27
    )
28
29
30
class TestInfo(tests.TestCaseWithTransport):
31
32
    def test_describe_standalone_layout(self):
33
        tree = self.make_branch_and_tree('tree')
34
        self.assertEqual('Empty control directory', info.describe_layout())
35
        self.assertEqual('Unshared repository with trees',
36
            info.describe_layout(tree.branch.repository))
37
        tree.branch.repository.set_make_working_trees(False)
38
        self.assertEqual('Unshared repository',
39
            info.describe_layout(tree.branch.repository))
40
        self.assertEqual('Standalone branch',
41
            info.describe_layout(tree.branch.repository, tree.branch))
42
        self.assertEqual('Standalone branchless tree',
43
            info.describe_layout(tree.branch.repository, None, tree))
44
        self.assertEqual('Standalone tree',
45
            info.describe_layout(tree.branch.repository, tree.branch, tree))
46
        tree.branch.bind(tree.branch)
47
        self.assertEqual('Bound branch',
48
            info.describe_layout(tree.branch.repository, tree.branch))
49
        self.assertEqual('Checkout',
50
            info.describe_layout(tree.branch.repository, tree.branch, tree))
51
        checkout = tree.branch.create_checkout('checkout', lightweight=True)
52
        self.assertEqual('Lightweight checkout',
53
            info.describe_layout(checkout.branch.repository, checkout.branch,
54
                                 checkout))
55
56
    def test_describe_repository_layout(self):
57
        repository = self.make_repository('.', shared=True)
58
        tree = bzrdir.BzrDir.create_branch_convenience('tree',
59
            force_new_tree=True).bzrdir.open_workingtree()
60
        self.assertEqual('Shared repository with trees',
61
            info.describe_layout(tree.branch.repository))
62
        repository.set_make_working_trees(False)
63
        self.assertEqual('Shared repository',
64
            info.describe_layout(tree.branch.repository))
65
        self.assertEqual('Repository branch',
66
            info.describe_layout(tree.branch.repository, tree.branch))
67
        self.assertEqual('Repository branchless tree',
68
            info.describe_layout(tree.branch.repository, None, tree))
69
        self.assertEqual('Repository tree',
70
            info.describe_layout(tree.branch.repository, tree.branch, tree))
71
        tree.branch.bind(tree.branch)
72
        self.assertEqual('Repository checkout',
73
            info.describe_layout(tree.branch.repository, tree.branch, tree))
74
        checkout = tree.branch.create_checkout('checkout', lightweight=True)
2363.5.4 by Aaron Bentley
Eliminate the concept of a 'repository lightweight checkout'
75
        self.assertEqual('Lightweight checkout',
2363.5.2 by Aaron Bentley
Implement layout description
76
            info.describe_layout(checkout.branch.repository, checkout.branch,
77
                                 checkout))
2363.5.5 by Aaron Bentley
add info.describe_format
78
79
    def assertTreeDescription(self, format):
2363.5.22 by Aaron Bentley
Restructure tests
80
        """Assert a tree's format description matches expectations"""
2363.5.6 by Aaron Bentley
Add short format description
81
        self.make_branch_and_tree('%s_tree' % format, format=format)
2363.5.5 by Aaron Bentley
add info.describe_format
82
        tree = workingtree.WorkingTree.open('%s_tree' % format)
83
        self.assertEqual(format, info.describe_format(tree.bzrdir,
84
            tree.branch.repository, tree.branch, tree))
85
2363.5.6 by Aaron Bentley
Add short format description
86
    def assertCheckoutDescription(self, format, expected=None):
2363.5.22 by Aaron Bentley
Restructure tests
87
        """Assert a checkout's format description matches expectations"""
2363.5.6 by Aaron Bentley
Add short format description
88
        if expected is None:
89
            expected = format
90
        branch = self.make_branch('%s_cobranch' % format, format=format)
91
        # this ought to be easier...
92
        branch.create_checkout('%s_co' % format,
93
            lightweight=True).bzrdir.destroy_workingtree()
94
        control = bzrdir.BzrDir.open('%s_co' % format)
2363.5.13 by Aaron Bentley
Fix environment pollution with assertCheckoutDescription
95
        old_format = control._format.workingtree_format
96
        try:
97
            control._format.workingtree_format = \
98
                bzrdir.format_registry.make_bzrdir(format).workingtree_format
99
            control.create_workingtree()
100
            tree = workingtree.WorkingTree.open('%s_co' % format)
2592.4.2 by Martin Pool
exempt experimental-* formats from test_describe_checkout_format
101
            format_description = info.describe_format(tree.bzrdir,
102
                    tree.branch.repository, tree.branch, tree)
103
            self.assertEqual(expected, format_description,
104
                "checkout of format called %r was described as %r" %
105
                (expected, format_description))
2363.5.13 by Aaron Bentley
Fix environment pollution with assertCheckoutDescription
106
        finally:
107
            control._format.workingtree_format = old_format
2363.5.6 by Aaron Bentley
Add short format description
108
2363.5.5 by Aaron Bentley
add info.describe_format
109
    def assertBranchDescription(self, format, expected=None):
2363.5.22 by Aaron Bentley
Restructure tests
110
        """Assert branch's format description matches expectations"""
2363.5.5 by Aaron Bentley
add info.describe_format
111
        if expected is None:
112
            expected = format
2363.5.6 by Aaron Bentley
Add short format description
113
        self.make_branch('%s_branch' % format, format=format)
2363.5.5 by Aaron Bentley
add info.describe_format
114
        branch = _mod_branch.Branch.open('%s_branch' % format)
115
        self.assertEqual(expected, info.describe_format(branch.bzrdir,
116
            branch.repository, branch, None))
117
118
    def assertRepoDescription(self, format, expected=None):
2363.5.22 by Aaron Bentley
Restructure tests
119
        """Assert repository's format description matches expectations"""
2363.5.5 by Aaron Bentley
add info.describe_format
120
        if expected is None:
121
            expected = format
2363.5.6 by Aaron Bentley
Add short format description
122
        self.make_repository('%s_repo' % format, format=format)
2363.5.5 by Aaron Bentley
add info.describe_format
123
        repo = _mod_repository.Repository.open('%s_repo' % format)
124
        self.assertEqual(expected, info.describe_format(repo.bzrdir,
125
            repo, None, None))
126
2363.5.22 by Aaron Bentley
Restructure tests
127
    def test_describe_tree_format(self):
2363.5.5 by Aaron Bentley
add info.describe_format
128
        for key in bzrdir.format_registry.keys():
3152.2.2 by Robert Collins
The bzrdir format registry now accepts an ``alias`` keyword to
129
            if key in bzrdir.format_registry.aliases():
2363.5.5 by Aaron Bentley
add info.describe_format
130
                continue
131
            self.assertTreeDescription(key)
132
2363.5.22 by Aaron Bentley
Restructure tests
133
    def test_describe_checkout_format(self):
2363.5.5 by Aaron Bentley
add info.describe_format
134
        for key in bzrdir.format_registry.keys():
3152.2.2 by Robert Collins
The bzrdir format registry now accepts an ``alias`` keyword to
135
            if key in bzrdir.format_registry.aliases():
136
                # Aliases will not describe correctly in the UI because the
137
                # real format is found.
138
                continue
139
            # legacy: weave does not support checkouts
140
            if key == 'weave':
141
                continue
142
            if bzrdir.format_registry.get_info(key).experimental:
143
                # We don't require that experimental formats support checkouts
144
                # or describe correctly in the UI.
2363.5.6 by Aaron Bentley
Add short format description
145
                continue
4976.2.1 by Ian Clatworthy
Hide most storage formats
146
            if bzrdir.format_registry.get_info(key).hidden:
147
                continue
2363.5.6 by Aaron Bentley
Add short format description
148
            expected = None
4977.1.2 by Ian Clatworthy
(igc) Fix comparison bug in format name tests (trivial)
149
            if key in ('pack-0.92',):
4976.2.1 by Ian Clatworthy
Hide most storage formats
150
                expected = 'pack-0.92'
3586.2.6 by Ian Clatworthy
add 1.7 and 1.7-rich-root formats
151
            elif key in ('knit', 'metaweave'):
2363.5.17 by Aaron Bentley
Change separator from '/' to 'or'
152
                expected = 'knit or metaweave'
4210.4.1 by Ian Clatworthy
replace experimental development-wt5 formats with 1.14 formats
153
            elif key in ('1.14', '1.14-rich-root'):
4265.1.1 by John Arbash Meinel
Merge the a couple rev older brisbane-core into bzr.dev, most things are resolve in favor of bzr.dev
154
                expected = '1.14 or 1.14-rich-root'
2363.5.6 by Aaron Bentley
Add short format description
155
            self.assertCheckoutDescription(key, expected)
156
2363.5.22 by Aaron Bentley
Restructure tests
157
    def test_describe_branch_format(self):
2363.5.6 by Aaron Bentley
Add short format description
158
        for key in bzrdir.format_registry.keys():
3152.2.2 by Robert Collins
The bzrdir format registry now accepts an ``alias`` keyword to
159
            if key in bzrdir.format_registry.aliases():
2363.5.5 by Aaron Bentley
add info.describe_format
160
                continue
4210.4.2 by Ian Clatworthy
split filtered views support out into WorkingTreeFormat6
161
            if bzrdir.format_registry.get_info(key).hidden:
162
                continue
2363.5.5 by Aaron Bentley
add info.describe_format
163
            expected = None
164
            if key in ('dirstate', 'knit'):
2363.5.17 by Aaron Bentley
Change separator from '/' to 'or'
165
                expected = 'dirstate or knit'
4977.1.2 by Ian Clatworthy
(igc) Fix comparison bug in format name tests (trivial)
166
            elif key in ('1.14',):
4976.2.1 by Ian Clatworthy
Hide most storage formats
167
                expected = '1.14'
4977.1.2 by Ian Clatworthy
(igc) Fix comparison bug in format name tests (trivial)
168
            elif key in ('1.14-rich-root',):
4976.2.1 by Ian Clatworthy
Hide most storage formats
169
                expected = '1.14-rich-root'
2363.5.5 by Aaron Bentley
add info.describe_format
170
            self.assertBranchDescription(key, expected)
171
2363.5.22 by Aaron Bentley
Restructure tests
172
    def test_describe_repo_format(self):
2363.5.5 by Aaron Bentley
add info.describe_format
173
        for key in bzrdir.format_registry.keys():
3152.2.2 by Robert Collins
The bzrdir format registry now accepts an ``alias`` keyword to
174
            if key in bzrdir.format_registry.aliases():
2363.5.5 by Aaron Bentley
add info.describe_format
175
                continue
4210.4.2 by Ian Clatworthy
split filtered views support out into WorkingTreeFormat6
176
            if bzrdir.format_registry.get_info(key).hidden:
177
                continue
2363.5.5 by Aaron Bentley
add info.describe_format
178
            expected = None
179
            if key in ('dirstate', 'knit', 'dirstate-tags'):
2363.5.17 by Aaron Bentley
Change separator from '/' to 'or'
180
                expected = 'dirstate or dirstate-tags or knit'
4977.1.2 by Ian Clatworthy
(igc) Fix comparison bug in format name tests (trivial)
181
            elif key in ('1.14',):
4976.2.1 by Ian Clatworthy
Hide most storage formats
182
                expected = '1.14'
4977.1.2 by Ian Clatworthy
(igc) Fix comparison bug in format name tests (trivial)
183
            elif key in ('1.14-rich-root',):
4976.2.1 by Ian Clatworthy
Hide most storage formats
184
                expected = '1.14-rich-root'
2363.5.5 by Aaron Bentley
add info.describe_format
185
            self.assertRepoDescription(key, expected)
186
187
        format = bzrdir.format_registry.make_bzrdir('metaweave')
188
        format.set_branch_format(_mod_branch.BzrBranchFormat6())
189
        tree = self.make_branch_and_tree('unknown', format=format)
190
        self.assertEqual('unnamed', info.describe_format(tree.bzrdir,
191
            tree.branch.repository, tree.branch, tree))
2363.5.18 by Aaron Bentley
Get all tests passing
192
193
    def test_gather_location_standalone(self):
194
        tree = self.make_branch_and_tree('tree')
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
195
        self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
2363.5.18 by Aaron Bentley
Get all tests passing
196
            info.gather_location_info(tree.branch.repository, tree.branch,
197
                                      tree))
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
198
        self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
2363.5.18 by Aaron Bentley
Get all tests passing
199
            info.gather_location_info(tree.branch.repository, tree.branch))
200
        return tree
201
202
    def test_gather_location_repo(self):
203
        srepo = self.make_repository('shared', shared=True)
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
204
        self.assertEqual([('shared repository',
205
                          srepo.bzrdir.root_transport.base)],
2363.5.18 by Aaron Bentley
Get all tests passing
206
                          info.gather_location_info(srepo))
207
        urepo = self.make_repository('unshared')
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
208
        self.assertEqual([('repository',
209
                          urepo.bzrdir.root_transport.base)],
2363.5.18 by Aaron Bentley
Get all tests passing
210
                          info.gather_location_info(urepo))
211
212
    def test_gather_location_repo_branch(self):
213
        srepo = self.make_repository('shared', shared=True)
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
214
        self.assertEqual([('shared repository',
215
                          srepo.bzrdir.root_transport.base)],
2363.5.18 by Aaron Bentley
Get all tests passing
216
                          info.gather_location_info(srepo))
217
        tree = self.make_branch_and_tree('shared/tree')
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
218
        self.assertEqual([('shared repository',
219
                          srepo.bzrdir.root_transport.base),
1551.15.41 by Aaron Bentley
Make info provide more related brances, and format all branches nicely
220
                          ('repository branch', tree.branch.base)],
2363.5.25 by Aaron Bentley
Update deprecations to 0.18.0
221
                          info.gather_location_info(srepo, tree.branch, tree))
2363.5.18 by Aaron Bentley
Get all tests passing
222
2363.5.22 by Aaron Bentley
Restructure tests
223
    def test_gather_location_light_checkout(self):
2363.5.18 by Aaron Bentley
Get all tests passing
224
        tree = self.make_branch_and_tree('tree')
225
        lcheckout = tree.branch.create_checkout('lcheckout', lightweight=True)
226
        self.assertEqual(
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
227
            [('light checkout root', lcheckout.bzrdir.root_transport.base),
228
             ('checkout of branch', tree.bzrdir.root_transport.base)],
2363.5.22 by Aaron Bentley
Restructure tests
229
            self.gather_tree_location_info(lcheckout))
230
231
    def test_gather_location_heavy_checkout(self):
232
        tree = self.make_branch_and_tree('tree')
233
        checkout = tree.branch.create_checkout('checkout')
234
        self.assertEqual(
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
235
            [('checkout root', checkout.bzrdir.root_transport.base),
236
             ('checkout of branch', tree.bzrdir.root_transport.base)],
2363.5.22 by Aaron Bentley
Restructure tests
237
            self.gather_tree_location_info(checkout))
238
        light_checkout = checkout.branch.create_checkout('light_checkout',
239
                                                         lightweight=True)
240
        self.assertEqual(
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
241
            [('light checkout root',
242
              light_checkout.bzrdir.root_transport.base),
243
             ('checkout root', checkout.bzrdir.root_transport.base),
244
             ('checkout of branch', tree.bzrdir.root_transport.base)],
2363.5.22 by Aaron Bentley
Restructure tests
245
             self.gather_tree_location_info(light_checkout)
246
             )
247
248
    def test_gather_location_shared_repo_checkout(self):
249
        tree = self.make_branch_and_tree('tree')
2363.5.18 by Aaron Bentley
Get all tests passing
250
        srepo = self.make_repository('shared', shared=True)
2363.5.22 by Aaron Bentley
Restructure tests
251
        shared_checkout = tree.branch.create_checkout('shared/checkout')
2363.5.18 by Aaron Bentley
Get all tests passing
252
        self.assertEqual(
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
253
            [('repository checkout root',
254
              shared_checkout.bzrdir.root_transport.base),
255
             ('checkout of branch', tree.bzrdir.root_transport.base),
256
             ('shared repository', srepo.bzrdir.root_transport.base)],
2363.5.22 by Aaron Bentley
Restructure tests
257
             self.gather_tree_location_info(shared_checkout))
258
259
    def gather_tree_location_info(self, tree):
260
        return info.gather_location_info(tree.branch.repository, tree.branch,
261
                                         tree)
2363.5.19 by Aaron Bentley
Add support for bound branches
262
263
    def test_gather_location_bound(self):
264
        branch = self.make_branch('branch')
265
        bound_branch = self.make_branch('bound_branch')
266
        bound_branch.bind(branch)
267
        self.assertEqual(
2363.5.23 by Aaron Bentley
Output 2-tuples from gather_locations
268
            [('branch root', bound_branch.bzrdir.root_transport.base),
269
             ('bound to branch', branch.bzrdir.root_transport.base)],
2363.5.19 by Aaron Bentley
Add support for bound branches
270
            info.gather_location_info(bound_branch.repository, bound_branch)
271
        )
1551.15.41 by Aaron Bentley
Make info provide more related brances, and format all branches nicely
272
273
    def test_location_list(self):
2804.4.3 by Alexander Belchenko
fix for test_info-tests: using osutils.getcwd instead of os.getcwd (sigh)
274
        if sys.platform == 'win32':
275
            raise tests.TestSkipped('Windows-unfriendly test')
1551.15.41 by Aaron Bentley
Make info provide more related brances, and format all branches nicely
276
        locs = info.LocationList('/home/foo')
277
        locs.add_url('a', 'file:///home/foo/')
278
        locs.add_url('b', 'file:///home/foo/bar/')
279
        locs.add_url('c', 'file:///home/bar/bar')
280
        locs.add_url('d', 'http://example.com/example/')
281
        locs.add_url('e', None)
1551.15.43 by Aaron Bentley
Provide ways of getting at unicode-clean output
282
        self.assertEqual(locs.locs, [('a', '.'),
1551.15.41 by Aaron Bentley
Make info provide more related brances, and format all branches nicely
283
                                     ('b', 'bar'),
284
                                     ('c', '/home/bar/bar'),
285
                                     ('d', 'http://example.com/example/')])
1551.15.43 by Aaron Bentley
Provide ways of getting at unicode-clean output
286
        self.assertEqualDiff('  a: .\n  b: bar\n  c: /home/bar/bar\n'
287
                             '  d: http://example.com/example/\n',
288
                             ''.join(locs.get_lines()))
1551.15.41 by Aaron Bentley
Make info provide more related brances, and format all branches nicely
289
290
    def test_gather_related_braches(self):
291
        branch = self.make_branch('.')
292
        branch.set_public_branch('baz')
293
        branch.set_push_location('bar')
294
        branch.set_parent('foo')
295
        branch.set_submit_branch('qux')
296
        self.assertEqual(
297
            [('public branch', 'baz'), ('push branch', 'bar'),
298
             ('parent branch', 'foo'), ('submit branch', 'qux')],
1551.15.43 by Aaron Bentley
Provide ways of getting at unicode-clean output
299
            info._gather_related_branches(branch).locs)