32
31
def test_describe_standalone_layout(self):
33
32
tree = self.make_branch_and_tree('tree')
34
33
self.assertEqual('Empty control directory', info.describe_layout())
35
self.assertEqual('Unshared repository with trees',
36
info.describe_layout(tree.branch.repository))
35
'Unshared repository with trees and colocated branches',
36
info.describe_layout(tree.branch.repository, control=tree.bzrdir))
37
37
tree.branch.repository.set_make_working_trees(False)
38
self.assertEqual('Unshared repository',
39
info.describe_layout(tree.branch.repository))
38
self.assertEqual('Unshared repository with colocated branches',
39
info.describe_layout(tree.branch.repository, control=tree.bzrdir))
40
40
self.assertEqual('Standalone branch',
41
info.describe_layout(tree.branch.repository, tree.branch))
41
info.describe_layout(tree.branch.repository, tree.branch,
42
43
self.assertEqual('Standalone branchless tree',
43
info.describe_layout(tree.branch.repository, None, tree))
44
info.describe_layout(tree.branch.repository, None, tree,
44
46
self.assertEqual('Standalone tree',
45
info.describe_layout(tree.branch.repository, tree.branch, tree))
47
info.describe_layout(tree.branch.repository, tree.branch, tree,
46
49
tree.branch.bind(tree.branch)
47
50
self.assertEqual('Bound branch',
48
info.describe_layout(tree.branch.repository, tree.branch))
51
info.describe_layout(tree.branch.repository, tree.branch,
49
53
self.assertEqual('Checkout',
50
info.describe_layout(tree.branch.repository, tree.branch, tree))
54
info.describe_layout(tree.branch.repository, tree.branch, tree,
51
56
checkout = tree.branch.create_checkout('checkout', lightweight=True)
52
57
self.assertEqual('Lightweight checkout',
53
58
info.describe_layout(checkout.branch.repository, checkout.branch,
59
checkout, control=tree.bzrdir))
56
61
def test_describe_repository_layout(self):
57
62
repository = self.make_repository('.', shared=True)
58
tree = bzrdir.BzrDir.create_branch_convenience('tree',
63
tree = controldir.ControlDir.create_branch_convenience('tree',
59
64
force_new_tree=True).bzrdir.open_workingtree()
60
self.assertEqual('Shared repository with trees',
61
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))
62
67
repository.set_make_working_trees(False)
63
self.assertEqual('Shared repository',
64
info.describe_layout(tree.branch.repository))
68
self.assertEqual('Shared repository with colocated branches',
69
info.describe_layout(tree.branch.repository, control=tree.bzrdir))
65
70
self.assertEqual('Repository branch',
66
info.describe_layout(tree.branch.repository, tree.branch))
71
info.describe_layout(tree.branch.repository, tree.branch,
67
73
self.assertEqual('Repository branchless tree',
68
info.describe_layout(tree.branch.repository, None, tree))
74
info.describe_layout(tree.branch.repository, None, tree,
69
76
self.assertEqual('Repository tree',
70
info.describe_layout(tree.branch.repository, tree.branch, tree))
77
info.describe_layout(tree.branch.repository, tree.branch, tree,
71
79
tree.branch.bind(tree.branch)
72
80
self.assertEqual('Repository checkout',
73
info.describe_layout(tree.branch.repository, tree.branch, tree))
81
info.describe_layout(tree.branch.repository, tree.branch, tree,
74
83
checkout = tree.branch.create_checkout('checkout', lightweight=True)
75
84
self.assertEqual('Lightweight checkout',
76
85
info.describe_layout(checkout.branch.repository, checkout.branch,
86
checkout, control=tree.bzrdir))
79
88
def assertTreeDescription(self, format):
80
89
"""Assert a tree's format description matches expectations"""
125
134
repo, None, None))
127
136
def test_describe_tree_format(self):
128
for key in bzrdir.format_registry.keys():
137
for key in controldir.format_registry.keys():
138
if key in controldir.format_registry.aliases():
131
140
self.assertTreeDescription(key)
133
142
def test_describe_checkout_format(self):
134
for key in bzrdir.format_registry.keys():
135
if key in ('default', 'weave', 'experimental'):
137
if key.startswith('experimental-'):
138
# these are typically hidden or aliases for other formats
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.
148
# legacy: weave does not support checkouts
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.
155
if controldir.format_registry.get_info(key).hidden:
141
if key in ('dirstate', 'dirstate-tags', 'dirstate-with-subtree',
142
'pack-0.92', 'pack-0.92-subtree', 'rich-root',
144
expected = 'dirstate or dirstate-tags or pack-0.92 or'\
145
' rich-root or rich-root-pack'
146
if key in ('knit', 'metaweave'):
147
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'
165
elif key in ('1.14', '1.14-rich-root'):
166
expected = '1.14 or 1.14-rich-root'
148
167
self.assertCheckoutDescription(key, expected)
150
169
def test_describe_branch_format(self):
151
for key in bzrdir.format_registry.keys():
170
for key in controldir.format_registry.keys():
171
if key in controldir.format_registry.aliases():
173
if controldir.format_registry.get_info(key).hidden:
155
176
if key in ('dirstate', 'knit'):
156
177
expected = 'dirstate or knit'
178
elif key in ('1.14',):
180
elif key in ('1.14-rich-root',):
181
expected = '1.14-rich-root'
157
182
self.assertBranchDescription(key, expected)
159
184
def test_describe_repo_format(self):
160
for key in bzrdir.format_registry.keys():
185
for key in controldir.format_registry.keys():
186
if key in controldir.format_registry.aliases():
188
if controldir.format_registry.get_info(key).hidden:
164
191
if key in ('dirstate', 'knit', 'dirstate-tags'):
165
192
expected = 'dirstate or dirstate-tags or knit'
193
elif key in ('1.14',):
195
elif key in ('1.14-rich-root',):
196
expected = '1.14-rich-root'
166
197
self.assertRepoDescription(key, expected)
168
format = bzrdir.format_registry.make_bzrdir('metaweave')
199
format = controldir.format_registry.make_bzrdir('knit')
169
200
format.set_branch_format(_mod_branch.BzrBranchFormat6())
170
201
tree = self.make_branch_and_tree('unknown', format=format)
171
202
self.assertEqual('unnamed', info.describe_format(tree.bzrdir,
172
203
tree.branch.repository, tree.branch, tree))
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))
174
210
def test_gather_location_standalone(self):
175
211
tree = self.make_branch_and_tree('tree')
176
212
self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
177
info.gather_location_info(tree.branch.repository, tree.branch,
213
info.gather_location_info(
214
tree.branch.repository, tree.branch, tree, control=tree.bzrdir))
179
215
self.assertEqual([('branch root', tree.bzrdir.root_transport.base)],
180
info.gather_location_info(tree.branch.repository, tree.branch))
216
info.gather_location_info(
217
tree.branch.repository, tree.branch, control=tree.bzrdir))
183
220
def test_gather_location_repo(self):
184
221
srepo = self.make_repository('shared', shared=True)
185
self.assertEqual([('shared repository',
186
srepo.bzrdir.root_transport.base)],
187
info.gather_location_info(srepo))
223
[('shared repository', srepo.bzrdir.root_transport.base)],
224
info.gather_location_info(srepo, control=srepo.bzrdir))
188
225
urepo = self.make_repository('unshared')
189
self.assertEqual([('repository',
190
urepo.bzrdir.root_transport.base)],
191
info.gather_location_info(urepo))
227
[('repository', urepo.bzrdir.root_transport.base)],
228
info.gather_location_info(urepo, control=urepo.bzrdir))
193
230
def test_gather_location_repo_branch(self):
194
231
srepo = self.make_repository('shared', shared=True)
195
self.assertEqual([('shared repository',
196
srepo.bzrdir.root_transport.base)],
197
info.gather_location_info(srepo))
233
[('shared repository', srepo.bzrdir.root_transport.base)],
234
info.gather_location_info(srepo, control=srepo.bzrdir))
198
235
tree = self.make_branch_and_tree('shared/tree')
199
self.assertEqual([('shared repository',
200
srepo.bzrdir.root_transport.base),
201
('repository branch', tree.branch.base)],
202
info.gather_location_info(srepo, tree.branch, tree))
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))
204
241
def test_gather_location_light_checkout(self):
205
242
tree = self.make_branch_and_tree('tree')