1
# Copyright (C) 2006-2010 Canonical Ltd
1
# Copyright (C) 2006, 2007, 2008 Canonical Ltd
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
32
from bzrlib.transport import memory
35
class TestInfo(tests.TestCaseWithTransport):
38
super(TestInfo, self).setUp()
39
self._repo_strings = "2a"
31
from bzrlib.osutils import format_date
32
from bzrlib.tests import TestSkipped
33
from bzrlib.tests.blackbox import ExternalBase
36
class TestInfo(ExternalBase):
41
38
def test_info_non_existing(self):
42
self.vfs_transport_factory = memory.MemoryServer
43
location = self.get_url()
39
if sys.platform == "win32":
40
location = "C:/i/do/not/exist/"
42
location = "/i/do/not/exist/"
44
43
out, err = self.run_bzr('info '+location, retcode=3)
45
44
self.assertEqual(out, '')
46
45
self.assertEqual(err, 'bzr: ERROR: Not a branch: "%s".\n' % location)
49
48
transport = self.get_transport()
51
50
# Create initial standalone branch
52
tree1 = self.make_branch_and_tree('standalone', 'knit')
51
tree1 = self.make_branch_and_tree('standalone', 'weave')
53
52
self.build_tree(['standalone/a'])
55
54
branch1 = tree1.branch
57
56
out, err = self.run_bzr('info standalone')
58
57
self.assertEqualDiff(
59
"""Standalone tree (format: knit)
58
"""Standalone tree (format: weave)
61
60
branch root: standalone
65
64
# Standalone branch - verbose mode
66
65
out, err = self.run_bzr('info standalone -v')
67
66
self.assertEqualDiff(
68
"""Standalone tree (format: knit)
67
"""Standalone tree (format: weave)
70
69
branch root: standalone
73
control: Meta directory format 1
74
working tree: Working tree format 3
75
branch: Branch format 5
76
repository: Knit repository format 1
72
control: All-in-one format 6
73
working tree: Working tree format 2
74
branch: Branch format 4
75
repository: Weave repository format 6
78
77
In the working tree:
96
95
# Standalone branch - really verbose mode
97
96
out, err = self.run_bzr('info standalone -vv')
98
97
self.assertEqualDiff(
99
"""Standalone tree (format: knit)
98
"""Standalone tree (format: weave)
101
100
branch root: standalone
104
control: Meta directory format 1
105
working tree: Working tree format 3
106
branch: Branch format 5
107
repository: Knit repository format 1
103
control: All-in-one format 6
104
working tree: Working tree format 2
105
branch: Branch format 4
106
repository: Weave repository format 6
109
108
In the working tree:
126
125
self.assertEqual('', err)
127
126
tree1.commit('commit one')
128
127
rev = branch1.repository.get_revision(branch1.revision_history()[0])
129
datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
128
datestring_first = format_date(rev.timestamp, rev.timezone)
131
130
# Branch standalone with push location
132
131
branch2 = branch1.bzrdir.sprout('branch').open_branch()
155
154
parent branch: standalone
158
control: Meta directory format 1
159
working tree: Working tree format 3
160
branch: Branch format 5
161
repository: Knit repository format 1
157
control: All-in-one format 6
158
working tree: Working tree format 2
159
branch: Branch format 4
160
repository: Weave repository format 6
163
162
In the working tree:
276
275
tree5 = branch1.create_checkout('lightcheckout', lightweight=True)
277
276
branch5 = tree5.branch
278
277
out, err = self.run_bzr('info -v lightcheckout')
279
if "metaweave" in bzrdir.format_registry:
280
format_description = "knit or metaweave"
282
format_description = "knit"
283
278
self.assertEqualDiff(
284
"""Lightweight checkout (format: %s)
279
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root \
280
or 1.9 or 1.9-rich-root \
281
or dirstate or dirstate-tags or \
282
pack-0.92 or rich-root or rich-root-pack)
286
284
light checkout root: lightcheckout
287
285
checkout of branch: standalone
290
288
control: Meta directory format 1
291
working tree: Working tree format 3
292
branch: Branch format 5
293
repository: Knit repository format 1
289
working tree: Working tree format 4
290
branch: Branch format 4
291
repository: Weave repository format 6
295
293
In the working tree:
313
""" % (format_description, datestring_first, datestring_first,), out)
311
""" % (datestring_first, datestring_first,), out)
314
312
self.assertEqual('', err)
316
314
# Update initial standalone branch
319
317
tree1.commit('commit two')
320
318
rev = branch1.repository.get_revision(branch1.revision_history()[-1])
321
datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
319
datestring_last = format_date(rev.timestamp, rev.timezone)
323
321
# Out of date branched standalone branch will not be detected
324
322
out, err = self.run_bzr('info -v branch')
325
323
self.assertEqualDiff(
326
"""Standalone tree (format: knit)
324
"""Standalone tree (format: weave)
328
326
branch root: branch
332
330
parent branch: standalone
335
control: Meta directory format 1
336
working tree: Working tree format 3
337
branch: Branch format 5
338
repository: Knit repository format 1
333
control: All-in-one format 6
334
working tree: Working tree format 2
335
branch: Branch format 4
336
repository: Weave repository format 6
340
338
In the working tree:
443
441
# Out of date lightweight checkout
444
442
out, err = self.run_bzr('info lightcheckout --verbose')
445
443
self.assertEqualDiff(
446
"""Lightweight checkout (format: %s)
444
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
445
1.9 or 1.9-rich-root or \
446
dirstate or dirstate-tags or \
447
pack-0.92 or rich-root or rich-root-pack)
448
449
light checkout root: lightcheckout
449
450
checkout of branch: standalone
452
453
control: Meta directory format 1
453
working tree: Working tree format 3
454
branch: Branch format 5
455
repository: Knit repository format 1
454
working tree: Working tree format 4
455
branch: Branch format 4
456
repository: Weave repository format 6
457
458
Working tree is out of date: missing 1 revision.
477
""" % (format_description, datestring_first, datestring_last,), out)
478
""" % (datestring_first, datestring_last,), out)
478
479
self.assertEqual('', err)
480
481
def test_info_standalone_no_tree(self):
573
574
tree2.commit('commit one')
574
575
rev = repo.get_revision(branch2.revision_history()[0])
575
datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
576
datestring_first = format_date(rev.timestamp, rev.timezone)
576
577
out, err = self.run_bzr('info tree/lightcheckout --verbose')
577
578
self.assertEqualDiff(
578
"""Lightweight checkout (format: %s)
579
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
580
1.9 or 1.9-rich-root or \
581
dirstate or dirstate-tags or \
582
pack-0.92 or rich-root or rich-root-pack)
580
584
light checkout root: tree/lightcheckout
581
585
checkout of branch: repo/branch
608
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
612
""" % (format.get_branch_format().get_format_description(),
609
613
format.repository_format.get_format_description(),
610
614
datestring_first, datestring_first,
614
618
# Out of date checkout
615
619
out, err = self.run_bzr('info -v tree/checkout')
616
620
self.assertEqualDiff(
617
"""Checkout (format: unnamed)
621
"""Checkout (format: dirstate)
619
623
checkout root: tree/checkout
620
624
checkout of branch: repo/branch
623
627
control: Meta directory format 1
624
working tree: Working tree format 6
628
working tree: Working tree format 4
654
658
out, err = self.run_bzr('info tree/checkout --verbose')
655
659
self.assertEqualDiff(
656
"""Checkout (format: unnamed)
660
"""Checkout (format: dirstate)
658
662
checkout root: tree/checkout
659
663
checkout of branch: repo/branch
662
666
control: Meta directory format 1
663
working tree: Working tree format 6
667
working tree: Working tree format 4
692
696
# Out of date lightweight checkout
693
697
rev = repo.get_revision(branch1.revision_history()[-1])
694
datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
698
datestring_last = format_date(rev.timestamp, rev.timezone)
695
699
out, err = self.run_bzr('info tree/lightcheckout --verbose')
696
700
self.assertEqualDiff(
697
"""Lightweight checkout (format: %s)
701
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
702
1.9 or 1.9-rich-root or \
703
dirstate or dirstate-tags or \
704
pack-0.92 or rich-root or rich-root-pack)
699
706
light checkout root: tree/lightcheckout
700
707
checkout of branch: repo/branch
729
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
736
""" % (format.get_branch_format().get_format_description(),
730
737
format.repository_format.get_format_description(),
731
738
datestring_first, datestring_last,
848
855
tree1.commit('commit one')
849
856
rev = repo.get_revision(branch1.revision_history()[0])
850
datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
857
datestring_first = format_date(rev.timestamp, rev.timezone)
851
858
out, err = self.run_bzr('info -v repo/branch1')
852
859
self.assertEqualDiff(
853
860
"""Repository tree (format: knit)
1127
1134
(False, True): 'Lightweight checkout',
1128
1135
(False, False): 'Checkout',
1129
1136
}[(shared_repo is not None, light_checkout)]
1130
format = {True: self._repo_strings,
1131
False: 'unnamed'}[light_checkout]
1137
format = {True: '1.6 or 1.6.1-rich-root'
1138
' or 1.9 or 1.9-rich-root'
1139
' or dirstate or dirstate-tags or pack-0.92'
1140
' or rich-root or rich-root-pack',
1141
False: 'dirstate'}[light_checkout]
1132
1142
if repo_locked:
1133
1143
repo_locked = lco_tree.branch.repository.get_physical_lock_status()
1134
1144
if repo_locked or branch_locked or tree_locked:
1232
1242
# Do a light checkout of the heavy one
1233
1243
transport.mkdir('tree/lightcheckout')
1234
1244
lco_dir = bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1235
branch.BranchReferenceFormat().initialize(lco_dir,
1236
target_branch=co_branch)
1245
branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
1237
1246
lco_dir.create_workingtree()
1238
1247
lco_tree = lco_dir.open_workingtree()
1327
1336
self.knownFailure('Win32 cannot run "bzr info"'
1328
1337
' when the tree is locked.')
1339
def test_info_locking_oslocks(self):
1340
if sys.platform == "win32":
1341
raise TestSkipped("don't use oslocks on win32 in unix manner")
1343
tree = self.make_branch_and_tree('branch',
1344
format=bzrdir.BzrDirFormat6())
1346
# Test all permutations of locking the working tree, branch and repository
1347
# XXX: Well not yet, as we can't query oslocks yet. Currently, it's
1348
# implemented by raising NotImplementedError and get_physical_lock_status()
1349
# always returns false. This makes bzr info hide the lock status. (Olaf)
1353
out, err = self.run_bzr('info -v branch')
1354
self.assertEqualDiff(
1355
"""Standalone tree (format: weave)
1360
control: All-in-one format 6
1361
working tree: Working tree format 2
1362
branch: Branch format 4
1365
In the working tree:
1373
0 versioned subdirectories
1380
""" % ('branch', tree.branch.repository._format.get_format_description(),
1382
self.assertEqual('', err)
1385
out, err = self.run_bzr('info -v branch')
1386
self.assertEqualDiff(
1387
"""Standalone tree (format: weave)
1392
control: All-in-one format 6
1393
working tree: Working tree format 2
1394
branch: Branch format 4
1397
In the working tree:
1405
0 versioned subdirectories
1412
""" % ('branch', tree.branch.repository._format.get_format_description(),
1414
self.assertEqual('', err)
1330
1417
def test_info_stacked(self):
1331
1418
# We have a mainline
1332
1419
trunk_tree = self.make_branch_and_tree('mainline',