~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_info.py

  • Committer: Launchpad Translations on behalf of bzr-core
  • Date: 2012-11-25 04:30:35 UTC
  • mto: (6581.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6582.
  • Revision ID: launchpad_translations_on_behalf_of_bzr-core-20121125043035-9abma98g1j6p5uox
Launchpad automatic translations update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007-2012 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
 
17
import sys
17
18
 
18
19
from bzrlib import (
19
20
    branch as _mod_branch,
20
 
    bzrdir,
 
21
    controldir,
21
22
    info,
22
23
    tests,
23
24
    workingtree,
30
31
    def test_describe_standalone_layout(self):
31
32
        tree = self.make_branch_and_tree('tree')
32
33
        self.assertEqual('Empty control directory', info.describe_layout())
33
 
        self.assertEqual('Unshared repository with trees',
34
 
            info.describe_layout(tree.branch.repository))
 
34
        self.assertEqual(
 
35
            'Unshared repository with trees and colocated branches',
 
36
            info.describe_layout(tree.branch.repository, control=tree.bzrdir))
35
37
        tree.branch.repository.set_make_working_trees(False)
36
 
        self.assertEqual('Unshared repository',
37
 
            info.describe_layout(tree.branch.repository))
 
38
        self.assertEqual('Unshared repository with colocated branches',
 
39
            info.describe_layout(tree.branch.repository, control=tree.bzrdir))
38
40
        self.assertEqual('Standalone branch',
39
 
            info.describe_layout(tree.branch.repository, tree.branch))
 
41
            info.describe_layout(tree.branch.repository, tree.branch,
 
42
                control=tree.bzrdir))
40
43
        self.assertEqual('Standalone branchless tree',
41
 
            info.describe_layout(tree.branch.repository, None, tree))
 
44
            info.describe_layout(tree.branch.repository, None, tree,
 
45
                control=tree.bzrdir))
42
46
        self.assertEqual('Standalone tree',
43
 
            info.describe_layout(tree.branch.repository, tree.branch, tree))
 
47
            info.describe_layout(tree.branch.repository, tree.branch, tree,
 
48
                control=tree.bzrdir))
44
49
        tree.branch.bind(tree.branch)
45
50
        self.assertEqual('Bound branch',
46
 
            info.describe_layout(tree.branch.repository, tree.branch))
 
51
            info.describe_layout(tree.branch.repository, tree.branch,
 
52
                control=tree.bzrdir))
47
53
        self.assertEqual('Checkout',
48
 
            info.describe_layout(tree.branch.repository, tree.branch, tree))
 
54
            info.describe_layout(tree.branch.repository, tree.branch, tree,
 
55
                control=tree.bzrdir))
49
56
        checkout = tree.branch.create_checkout('checkout', lightweight=True)
50
57
        self.assertEqual('Lightweight checkout',
51
58
            info.describe_layout(checkout.branch.repository, checkout.branch,
52
 
                                 checkout))
 
59
                                 checkout, control=tree.bzrdir))
53
60
 
54
61
    def test_describe_repository_layout(self):
55
62
        repository = self.make_repository('.', shared=True)
56
 
        tree = bzrdir.BzrDir.create_branch_convenience('tree',
 
63
        tree = controldir.ControlDir.create_branch_convenience('tree',
57
64
            force_new_tree=True).bzrdir.open_workingtree()
58
 
        self.assertEqual('Shared repository with trees',
59
 
            info.describe_layout(tree.branch.repository))
 
65
        self.assertEqual('Shared repository with trees and colocated branches',
 
66
            info.describe_layout(tree.branch.repository, control=tree.bzrdir))
60
67
        repository.set_make_working_trees(False)
61
 
        self.assertEqual('Shared repository',
62
 
            info.describe_layout(tree.branch.repository))
 
68
        self.assertEqual('Shared repository with colocated branches',
 
69
            info.describe_layout(tree.branch.repository, control=tree.bzrdir))
63
70
        self.assertEqual('Repository branch',
64
 
            info.describe_layout(tree.branch.repository, tree.branch))
 
71
            info.describe_layout(tree.branch.repository, tree.branch,
 
72
                control=tree.bzrdir))
65
73
        self.assertEqual('Repository branchless tree',
66
 
            info.describe_layout(tree.branch.repository, None, tree))
 
74
            info.describe_layout(tree.branch.repository, None, tree,
 
75
                control=tree.bzrdir))
67
76
        self.assertEqual('Repository tree',
68
 
            info.describe_layout(tree.branch.repository, tree.branch, tree))
 
77
            info.describe_layout(tree.branch.repository, tree.branch, tree,
 
78
                control=tree.bzrdir))
69
79
        tree.branch.bind(tree.branch)
70
80
        self.assertEqual('Repository checkout',
71
 
            info.describe_layout(tree.branch.repository, tree.branch, tree))
 
81
            info.describe_layout(tree.branch.repository, tree.branch, tree,
 
82
                control=tree.bzrdir))
72
83
        checkout = tree.branch.create_checkout('checkout', lightweight=True)
73
84
        self.assertEqual('Lightweight checkout',
74
85
            info.describe_layout(checkout.branch.repository, checkout.branch,
75
 
                                 checkout))
 
86
                                 checkout, control=tree.bzrdir))
76
87
 
77
88
    def assertTreeDescription(self, format):
78
89
        """Assert a tree's format description matches expectations"""
89
100
        # this ought to be easier...
90
101
        branch.create_checkout('%s_co' % format,
91
102
            lightweight=True).bzrdir.destroy_workingtree()
92
 
        control = bzrdir.BzrDir.open('%s_co' % format)
 
103
        control = controldir.ControlDir.open('%s_co' % format)
93
104
        old_format = control._format.workingtree_format
94
105
        try:
95
106
            control._format.workingtree_format = \
96
 
                bzrdir.format_registry.make_bzrdir(format).workingtree_format
 
107
                controldir.format_registry.make_bzrdir(format).workingtree_format
97
108
            control.create_workingtree()
98
109
            tree = workingtree.WorkingTree.open('%s_co' % format)
99
 
            self.assertEqual(expected, info.describe_format(tree.bzrdir,
100
 
                tree.branch.repository, tree.branch, tree))
 
110
            format_description = info.describe_format(tree.bzrdir,
 
111
                    tree.branch.repository, tree.branch, tree)
 
112
            self.assertEqual(expected, format_description,
 
113
                "checkout of format called %r was described as %r" %
 
114
                (expected, format_description))
101
115
        finally:
102
116
            control._format.workingtree_format = old_format
103
117
 
120
134
            repo, None, None))
121
135
 
122
136
    def test_describe_tree_format(self):
123
 
        for key in bzrdir.format_registry.keys():
124
 
            if key == 'default':
 
137
        for key in controldir.format_registry.keys():
 
138
            if key in controldir.format_registry.aliases():
125
139
                continue
126
140
            self.assertTreeDescription(key)
127
141
 
128
142
    def test_describe_checkout_format(self):
129
 
        for key in bzrdir.format_registry.keys():
130
 
            if key in ('default', 'weave'):
 
143
        for key in controldir.format_registry.keys():
 
144
            if key in controldir.format_registry.aliases():
 
145
                # Aliases will not describe correctly in the UI because the
 
146
                # real format is found.
 
147
                continue
 
148
            # legacy: weave does not support checkouts
 
149
            if key == 'weave':
 
150
                continue
 
151
            if controldir.format_registry.get_info(key).experimental:
 
152
                # We don't require that experimental formats support checkouts
 
153
                # or describe correctly in the UI.
 
154
                continue
 
155
            if controldir.format_registry.get_info(key).hidden:
131
156
                continue
132
157
            expected = None
133
 
            if key in ('dirstate', 'dirstate-tags', 'dirstate-with-subtree'):
134
 
                expected = 'dirstate or dirstate-tags'
135
 
            if key in ('knit', 'metaweave'):
136
 
                expected = 'knit or metaweave'
 
158
            if key in ('pack-0.92',):
 
159
                expected = 'pack-0.92'
 
160
            elif key in ('knit', 'metaweave'):
 
161
                if 'metaweave' in controldir.format_registry:
 
162
                    expected = 'knit or metaweave'
 
163
                else:
 
164
                    expected = 'knit'
 
165
            elif key in ('1.14', '1.14-rich-root'):
 
166
                expected = '1.14 or 1.14-rich-root'
137
167
            self.assertCheckoutDescription(key, expected)
138
168
 
139
169
    def test_describe_branch_format(self):
140
 
        for key in bzrdir.format_registry.keys():
141
 
            if key == 'default':
 
170
        for key in controldir.format_registry.keys():
 
171
            if key in controldir.format_registry.aliases():
 
172
                continue
 
173
            if controldir.format_registry.get_info(key).hidden:
142
174
                continue
143
175
            expected = None
144
176
            if key in ('dirstate', 'knit'):
145
177
                expected = 'dirstate or knit'
 
178
            elif key in ('1.14',):
 
179
                expected = '1.14'
 
180
            elif key in ('1.14-rich-root',):
 
181
                expected = '1.14-rich-root'
146
182
            self.assertBranchDescription(key, expected)
147
183
 
148
184
    def test_describe_repo_format(self):
149
 
        for key in bzrdir.format_registry.keys():
150
 
            if key == 'default':
 
185
        for key in controldir.format_registry.keys():
 
186
            if key in controldir.format_registry.aliases():
 
187
                continue
 
188
            if controldir.format_registry.get_info(key).hidden:
151
189
                continue
152
190
            expected = None
153
191
            if key in ('dirstate', 'knit', 'dirstate-tags'):
154
192
                expected = 'dirstate or dirstate-tags or knit'
 
193
            elif key in ('1.14',):
 
194
                expected = '1.14'
 
195
            elif key in ('1.14-rich-root',):
 
196
                expected = '1.14-rich-root'
155
197
            self.assertRepoDescription(key, expected)
156
198
 
157
 
        format = bzrdir.format_registry.make_bzrdir('metaweave')
 
199
        format = controldir.format_registry.make_bzrdir('knit')
158
200
        format.set_branch_format(_mod_branch.BzrBranchFormat6())
159
201
        tree = self.make_branch_and_tree('unknown', format=format)
160
202
        self.assertEqual('unnamed', info.describe_format(tree.bzrdir,
161
203
            tree.branch.repository, tree.branch, tree))
162
204
 
 
205
    def test_gather_location_controldir_only(self):
 
206
        bzrdir = self.make_bzrdir('.')
 
207
        self.assertEqual([('control directory', bzrdir.user_url)],
 
208
            info.gather_location_info(control=bzrdir))
 
209
 
163
210
    def test_gather_location_standalone(self):
164
211
        tree = self.make_branch_and_tree('tree')
165
212
        self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
166
 
            info.gather_location_info(tree.branch.repository, tree.branch,
167
 
                                      tree))
 
213
            info.gather_location_info(
 
214
                tree.branch.repository, tree.branch, tree, control=tree.bzrdir))
168
215
        self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
169
 
            info.gather_location_info(tree.branch.repository, tree.branch))
 
216
            info.gather_location_info(
 
217
                tree.branch.repository, tree.branch, control=tree.bzrdir))
170
218
        return tree
171
219
 
172
220
    def test_gather_location_repo(self):
173
221
        srepo = self.make_repository('shared', shared=True)
174
 
        self.assertEqual([('shared repository',
175
 
                          srepo.bzrdir.root_transport.base)],
176
 
                          info.gather_location_info(srepo))
 
222
        self.assertEqual(
 
223
            [('shared repository', srepo.bzrdir.root_transport.base)],
 
224
            info.gather_location_info(srepo, control=srepo.bzrdir))
177
225
        urepo = self.make_repository('unshared')
178
 
        self.assertEqual([('repository',
179
 
                          urepo.bzrdir.root_transport.base)],
180
 
                          info.gather_location_info(urepo))
 
226
        self.assertEqual(
 
227
            [('repository', urepo.bzrdir.root_transport.base)],
 
228
            info.gather_location_info(urepo, control=urepo.bzrdir))
181
229
 
182
230
    def test_gather_location_repo_branch(self):
183
231
        srepo = self.make_repository('shared', shared=True)
184
 
        self.assertEqual([('shared repository',
185
 
                          srepo.bzrdir.root_transport.base)],
186
 
                          info.gather_location_info(srepo))
 
232
        self.assertEqual(
 
233
            [('shared repository', srepo.bzrdir.root_transport.base)],
 
234
            info.gather_location_info(srepo, control=srepo.bzrdir))
187
235
        tree = self.make_branch_and_tree('shared/tree')
188
 
        self.assertEqual([('shared repository',
189
 
                          srepo.bzrdir.root_transport.base),
190
 
                          ('repository branch', 'tree')],
191
 
                          info.gather_location_info(srepo, tree.branch, tree))
 
236
        self.assertEqual(
 
237
            [('shared repository', srepo.bzrdir.root_transport.base),
 
238
             ('repository branch', tree.branch.base)],
 
239
            info.gather_location_info(srepo, tree.branch, tree, srepo.bzrdir))
192
240
 
193
241
    def test_gather_location_light_checkout(self):
194
242
        tree = self.make_branch_and_tree('tree')
227
275
             self.gather_tree_location_info(shared_checkout))
228
276
 
229
277
    def gather_tree_location_info(self, tree):
230
 
        return info.gather_location_info(tree.branch.repository, tree.branch,
231
 
                                         tree)
 
278
        return info.gather_location_info(
 
279
            tree.branch.repository, tree.branch, tree, tree.bzrdir)
232
280
 
233
281
    def test_gather_location_bound(self):
234
282
        branch = self.make_branch('branch')
237
285
        self.assertEqual(
238
286
            [('branch root', bound_branch.bzrdir.root_transport.base),
239
287
             ('bound to branch', branch.bzrdir.root_transport.base)],
 
288
            info.gather_location_info(
 
289
                bound_branch.repository, bound_branch, control=bound_branch.bzrdir)
 
290
        )
 
291
 
 
292
    def test_gather_location_bound_in_repository(self):
 
293
        repo = self.make_repository('repo', shared=True)
 
294
        repo.set_make_working_trees(False)
 
295
        branch = self.make_branch('branch')
 
296
        bound_branch = controldir.ControlDir.create_branch_convenience(
 
297
            'repo/bound_branch')
 
298
        bound_branch.bind(branch)
 
299
        self.assertEqual(
 
300
            [('shared repository', bound_branch.repository.bzrdir.user_url),
 
301
             ('repository branch', bound_branch.bzrdir.user_url),
 
302
             ('bound to branch', branch.bzrdir.user_url)],
240
303
            info.gather_location_info(bound_branch.repository, bound_branch)
241
304
        )
 
305
 
 
306
    def test_location_list(self):
 
307
        if sys.platform == 'win32':
 
308
            raise tests.TestSkipped('Windows-unfriendly test')
 
309
        locs = info.LocationList('/home/foo')
 
310
        locs.add_url('a', 'file:///home/foo/')
 
311
        locs.add_url('b', 'file:///home/foo/bar/')
 
312
        locs.add_url('c', 'file:///home/bar/bar')
 
313
        locs.add_url('d', 'http://example.com/example/')
 
314
        locs.add_url('e', None)
 
315
        self.assertEqual(locs.locs, [('a', '.'),
 
316
                                     ('b', 'bar'),
 
317
                                     ('c', '/home/bar/bar'),
 
318
                                     ('d', 'http://example.com/example/')])
 
319
        self.assertEqualDiff('  a: .\n  b: bar\n  c: /home/bar/bar\n'
 
320
                             '  d: http://example.com/example/\n',
 
321
                             ''.join(locs.get_lines()))
 
322
 
 
323
    def test_gather_related_braches(self):
 
324
        branch = self.make_branch('.')
 
325
        branch.lock_write()
 
326
        try:
 
327
            branch.set_public_branch('baz')
 
328
            branch.set_push_location('bar')
 
329
            branch.set_parent('foo')
 
330
            branch.set_submit_branch('qux')
 
331
        finally:
 
332
            branch.unlock()
 
333
        self.assertEqual(
 
334
            [('public branch', 'baz'), ('push branch', 'bar'),
 
335
             ('parent branch', 'foo'), ('submit branch', 'qux')],
 
336
            info._gather_related_branches(branch).locs)