149
151
""" % (datestring_first, datestring_first,
152
# poking at _revision_store isn't all that clean, but neither is
153
# having the ui test dependent on the exact overhead of a given store.
154
branch2.repository._revision_store.total_size(
155
branch2.repository.get_transaction())[1] / 1024,
151
157
self.assertEqual('', err)
154
160
# (creates backup as unknown)
155
161
branch1.bzrdir.sprout('bound')
156
162
knit1_format = bzrdir.format_registry.make_bzrdir('knit')
157
upgrade.upgrade('bound', knit1_format)
158
branch3 = bzrdir.BzrDir.open('bound').open_branch()
163
bzrlib.upgrade.upgrade('bound', knit1_format)
164
branch3 = bzrlib.bzrdir.BzrDir.open('bound').open_branch()
159
165
branch3.bind(branch1)
160
166
bound_tree = branch3.bzrdir.open_workingtree()
161
167
out, err = self.run_bzr('info -v bound')
196
203
""" % (bound_tree._format.get_format_description(),
197
204
branch3._format.get_format_description(),
198
205
branch3.repository._format.get_format_description(),
199
206
datestring_first, datestring_first,
207
# poking at _revision_store isn't all that clean, but neither is
208
# having the ui test dependent on the exact overhead of a given store.
209
branch3.repository._revision_store.total_size(
210
branch3.repository.get_transaction())[1] / 1024,
201
212
self.assertEqual('', err)
203
214
# Checkout standalone (same as above, but does not have parent set)
204
branch4 = bzrdir.BzrDir.create_branch_convenience('checkout',
215
branch4 = bzrlib.bzrdir.BzrDir.create_branch_convenience('checkout',
205
216
format=knit1_format)
206
217
branch4.bind(branch1)
207
218
branch4.bzrdir.open_workingtree().update()
240
252
""" % (branch4.repository._format.get_format_description(),
241
253
datestring_first, datestring_first,
254
# poking at _revision_store isn't all that clean, but neither is
255
# having the ui test dependent on the exact overhead of a given store.
256
branch4.repository._revision_store.total_size(
257
branch4.repository.get_transaction())[1] / 1024,
243
259
self.assertEqual('', err)
247
263
branch5 = tree5.branch
248
264
out, err = self.run_bzr('info -v lightcheckout')
249
265
self.assertEqualDiff(
250
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root \
251
or dirstate or dirstate-tags or \
252
pack-0.92 or rich-root or rich-root-pack)
266
"""Lightweight checkout (format: dirstate or dirstate-tags or knitpack-experimental)
254
268
light checkout root: lightcheckout
255
269
checkout of branch: standalone
370
387
""" % (branch3.repository._format.get_format_description(),
371
388
datestring_first, datestring_first,
389
# poking at _revision_store isn't all that clean, but neither is
390
# having the ui test dependent on the exact overhead of a given store.
391
branch3.repository._revision_store.total_size(
392
branch3.repository.get_transaction())[1] / 1024,
373
394
self.assertEqual('', err)
410
432
""" % (branch4.repository._format.get_format_description(),
411
433
datestring_first, datestring_first,
434
# poking at _revision_store isn't all that clean, but neither is
435
# having the ui test dependent on the exact overhead of a given store.
436
branch4.repository._revision_store.total_size(
437
branch4.repository.get_transaction())[1] / 1024,
413
439
self.assertEqual('', err)
415
441
# Out of date lightweight checkout
416
442
out, err = self.run_bzr('info lightcheckout --verbose')
417
443
self.assertEqualDiff(
418
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
419
dirstate or dirstate-tags or \
420
pack-0.92 or rich-root or rich-root-pack)
444
"""Lightweight checkout (format: dirstate or dirstate-tags or knitpack-experimental)
422
446
light checkout root: lightcheckout
423
447
checkout of branch: standalone
477
""" % (info.describe_format(repo.bzrdir, repo, branch, None),
478
format.get_branch_format().get_format_description(),
503
""" % (format.get_branch_format().get_format_description(),
479
504
format.repository_format.get_format_description(),
481
506
self.assertEqual('', err)
552
579
datestring_first = format_date(rev.timestamp, rev.timezone)
553
580
out, err = self.run_bzr('info tree/lightcheckout --verbose')
554
581
self.assertEqualDiff(
555
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
556
dirstate or dirstate-tags or \
557
pack-0.92 or rich-root or rich-root-pack)
582
"""Lightweight checkout (format: dirstate or dirstate-tags or knitpack-experimental)
559
584
light checkout root: tree/lightcheckout
560
585
checkout of branch: repo/branch
588
614
""" % (format.get_branch_format().get_format_description(),
589
615
format.repository_format.get_format_description(),
590
616
datestring_first, datestring_first,
617
# poking at _revision_store isn't all that clean, but neither is
618
# having the ui test dependent on the exact overhead of a given store.
619
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
592
621
self.assertEqual('', err)
667
698
""" % (format.get_branch_format().get_format_description(),
668
699
format.repository_format.get_format_description(),
669
700
datestring_first, datestring_first,
701
# poking at _revision_store isn't all that clean, but neither is
702
# having the ui test dependent on the exact overhead of a given store.
703
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
671
705
self.assertEqual('', err)
672
706
tree3.commit('commit two')
676
710
datestring_last = format_date(rev.timestamp, rev.timezone)
677
711
out, err = self.run_bzr('info tree/lightcheckout --verbose')
678
712
self.assertEqualDiff(
679
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
680
dirstate or dirstate-tags or \
681
pack-0.92 or rich-root or rich-root-pack)
713
"""Lightweight checkout (format: dirstate or dirstate-tags or knitpack-experimental)
683
715
light checkout root: tree/lightcheckout
684
716
checkout of branch: repo/branch
714
747
""" % (format.get_branch_format().get_format_description(),
715
748
format.repository_format.get_format_description(),
716
749
datestring_first, datestring_last,
750
# poking at _revision_store isn't all that clean, but neither is
751
# having the ui test dependent on the exact overhead of a given store.
752
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
718
754
self.assertEqual('', err)
742
779
""" % (format.get_branch_format().get_format_description(),
743
780
format.repository_format.get_format_description(),
744
781
datestring_first, datestring_last,
782
# poking at _revision_store isn't all that clean, but neither is
783
# having the ui test dependent on the exact overhead of a given store.
784
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
746
786
self.assertEqual('', err)
761
802
""" % (format.repository_format.get_format_description(),
803
# poking at _revision_store isn't all that clean, but neither is
804
# having the ui test dependent on the exact overhead of a given store.
805
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
763
807
self.assertEqual('', err)
870
917
""" % (format.get_branch_format().get_format_description(),
871
918
format.repository_format.get_format_description(),
872
919
datestring_first, datestring_first,
920
# poking at _revision_store isn't all that clean, but neither is
921
# having the ui test dependent on the exact overhead of a given store.
922
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
874
924
self.assertEqual('', err)
909
960
""" % (format.get_branch_format().get_format_description(),
910
961
format.repository_format.get_format_description(),
962
# poking at _revision_store isn't all that clean, but neither is
963
# having the ui test dependent on the exact overhead of a given store.
964
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
912
966
self.assertEqual('', err)
952
1007
""" % (format.get_branch_format().get_format_description(),
953
1008
format.repository_format.get_format_description(),
954
1009
datestring_first, datestring_first,
1010
# poking at _revision_store isn't all that clean, but neither is
1011
# having the ui test dependent on the exact overhead of a given store.
1012
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
956
1014
self.assertEqual('', err)
973
1032
""" % (format.repository_format.get_format_description(),
1033
# poking at _revision_store isn't all that clean, but neither is
1034
# having the ui test dependent on the exact overhead of a given store.
1035
repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
976
1038
self.assertEqual('', err)
1036
1100
""" % (format.get_branch_format().get_format_description(),
1037
1101
format.repository_format.get_format_description(),
1039
1103
self.assertEqual('', err)
1041
def assertCheckoutStatusOutput(self,
1105
def assertCheckoutStatusOutput(self,
1042
1106
command_string, lco_tree, shared_repo=None,
1043
1107
repo_branch=None,
1044
1108
tree_locked=False,
1063
1127
:param tree_locked: If true, expect the tree to be locked.
1064
1128
:param branch_locked: If true, expect the branch to be locked.
1065
1129
:param repo_locked: If true, expect the repository to be locked.
1066
Note that the lco_tree.branch.repository is inspected, and if is not
1067
actually locked then this parameter is overridden. This is because
1068
pack repositories do not have any public API for obtaining an
1069
exclusive repository wide lock.
1070
1130
:param verbose: If true, expect verbose output
1072
1132
def friendly_location(url):
1076
1136
except errors.PathNotChild:
1080
# We expect this to fail because of locking errors.
1081
# (A write-locked file cannot be read-locked
1082
# in the different process -- either on win32 or on linux).
1139
if tree_locked and sys.platform == 'win32':
1140
# We expect this to fail because of locking errors. (A write-locked
1141
# file cannot be read-locked in the same process).
1083
1142
# This should be removed when the locking errors are fixed.
1084
self.expectFailure('OS locks are exclusive '
1085
'for different processes (Bug #174055)',
1086
self.run_bzr_subprocess,
1087
'info ' + command_string)
1143
self.run_bzr_error([], 'info ' + command_string)
1088
1145
out, err = self.run_bzr('info %s' % command_string)
1089
1146
description = {
1090
1147
(True, True): 'Lightweight checkout',
1092
1149
(False, True): 'Lightweight checkout',
1093
1150
(False, False): 'Checkout',
1094
1151
}[(shared_repo is not None, light_checkout)]
1095
format = {True: '1.6 or 1.6.1-rich-root'
1096
' or dirstate or dirstate-tags or pack-0.92'
1097
' or rich-root or rich-root-pack',
1152
format = {True: 'dirstate or dirstate-tags or knitpack-experimental',
1098
1153
False: 'dirstate'}[light_checkout]
1100
repo_locked = lco_tree.branch.repository.get_physical_lock_status()
1101
1154
if repo_locked or branch_locked or tree_locked:
1102
1155
def locked_message(a_bool):
1185
1239
transport = self.get_transport()
1186
1240
# Create shared repository with a branch
1187
1241
repo = self.make_repository('repo', shared=True,
1188
format=bzrdir.BzrDirMetaFormat1())
1242
format=bzrlib.bzrdir.BzrDirMetaFormat1())
1189
1243
repo.set_make_working_trees(False)
1190
1244
repo.bzrdir.root_transport.mkdir('branch')
1191
1245
repo_branch = repo.bzrdir.create_branch_convenience('repo/branch',
1192
format=bzrdir.BzrDirMetaFormat1())
1246
format=bzrlib.bzrdir.BzrDirMetaFormat1())
1193
1247
# Do a heavy checkout
1194
1248
transport.mkdir('tree')
1195
1249
transport.mkdir('tree/checkout')
1196
co_branch = bzrdir.BzrDir.create_branch_convenience('tree/checkout',
1197
format=bzrdir.BzrDirMetaFormat1())
1250
co_branch = bzrlib.bzrdir.BzrDir.create_branch_convenience('tree/checkout',
1251
format=bzrlib.bzrdir.BzrDirMetaFormat1())
1198
1252
co_branch.bind(repo_branch)
1199
1253
# Do a light checkout of the heavy one
1200
1254
transport.mkdir('tree/lightcheckout')
1201
lco_dir = bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1202
branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
1255
lco_dir = bzrlib.bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1256
bzrlib.branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
1203
1257
lco_dir.create_workingtree()
1204
1258
lco_tree = lco_dir.open_workingtree()
1298
1352
raise TestSkipped("don't use oslocks on win32 in unix manner")
1300
1354
tree = self.make_branch_and_tree('branch',
1301
format=bzrdir.BzrDirFormat6())
1355
format=bzrlib.bzrdir.BzrDirFormat6())
1303
1357
# Test all permutations of locking the working tree, branch and repository
1304
1358
# XXX: Well not yet, as we can't query oslocks yet. Currently, it's
1371
1427
""" % ('branch', tree.branch.repository._format.get_format_description(),
1373
1429
self.assertEqual('', err)
1376
def test_info_stacked(self):
1377
# We have a mainline
1378
trunk_tree = self.make_branch_and_tree('mainline',
1379
format='development1')
1380
trunk_tree.commit('mainline')
1381
# and a branch from it which is stacked
1382
new_dir = trunk_tree.bzrdir.sprout('newbranch', stacked=True)
1383
out, err = self.run_bzr('info newbranch')
1385
"""Standalone tree (format: development1)
1387
branch root: newbranch
1390
parent branch: mainline
1391
stacked on: mainline
1393
self.assertEqual("", err)