~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_info.py

  • Committer: Robert Collins
  • Date: 2007-05-07 16:48:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2485.
  • Revision ID: robertc@robertcollins.net-20070507164814-wpagonutf4b5cf8s
Move HACKING to docs/developers/HACKING and adjust Makefile to accomodate this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2012 Canonical Ltd
 
1
# Copyright (C) 2006, 2007 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
18
"""Tests for the info command of bzr."""
19
19
 
20
 
import shutil
21
20
import sys
22
21
 
 
22
import bzrlib
23
23
from bzrlib import (
24
 
    branch,
25
24
    bzrdir,
26
 
    controldir,
27
 
    errors,
28
 
    info,
29
 
    osutils,
30
 
    tests,
31
 
    upgrade,
32
 
    urlutils,
 
25
    repository,
33
26
    )
34
 
from bzrlib.tests.matchers import ContainsNoVfsCalls
35
 
from bzrlib.transport import memory
36
 
 
37
 
 
38
 
class TestInfo(tests.TestCaseWithTransport):
39
 
 
40
 
    def setUp(self):
41
 
        super(TestInfo, self).setUp()
42
 
        self._repo_strings = "2a"
 
27
from bzrlib.osutils import format_date
 
28
from bzrlib.tests import TestSkipped
 
29
from bzrlib.tests.blackbox import ExternalBase
 
30
 
 
31
 
 
32
class TestInfo(ExternalBase):
43
33
 
44
34
    def test_info_non_existing(self):
45
 
        self.vfs_transport_factory = memory.MemoryServer
46
 
        location = self.get_url()
47
 
        out, err = self.run_bzr('info '+location, retcode=3)
 
35
        if sys.platform == "win32":
 
36
            location = "C:/i/do/not/exist/"
 
37
        else:
 
38
            location = "/i/do/not/exist/"
 
39
        out, err = self.runbzr('info '+location, retcode=3)
48
40
        self.assertEqual(out, '')
49
 
        self.assertEqual(err, 'bzr: ERROR: Not a branch: "%s".\n' % location)
50
 
 
51
 
    def test_info_empty_controldir(self):
52
 
        self.make_bzrdir('ctrl')
53
 
        out, err = self.run_bzr('info ctrl')
54
 
        self.assertEquals(out,
55
 
            'Empty control directory (format: 2a or pack-0.92)\n'
56
 
            'Location:\n'
57
 
            '  control directory: ctrl\n')
58
 
        self.assertEquals(err, '')
59
 
 
60
 
    def test_info_empty_controldir_verbose(self):
61
 
        self.make_bzrdir('ctrl')
62
 
        out, err = self.run_bzr('info -v ctrl')
63
 
        self.assertEqualDiff(out,
64
 
            'Empty control directory (format: 2a or pack-0.92)\n'
65
 
            'Location:\n'
66
 
            '  control directory: ctrl\n\n'
67
 
            'Format:\n'
68
 
            '       control: Meta directory format 1\n\n'
69
 
            'Control directory:\n'
70
 
            '         0 branches\n')
71
 
        self.assertEquals(err, '')
72
 
 
73
 
    def test_info_dangling_branch_reference(self):
74
 
        br = self.make_branch('target')
75
 
        br.create_checkout('from', lightweight=True)
76
 
        shutil.rmtree('target')
77
 
        out, err = self.run_bzr('info from')
78
 
        self.assertEquals(out,
79
 
            'Dangling branch reference (format: 2a or pack-0.92)\n'
80
 
            'Location:\n'
81
 
            '   control directory: from\n'
82
 
            '  checkout of branch: target\n')
83
 
        self.assertEquals(err, '')
 
41
        self.assertEqual(err, 'bzr: ERROR: Not a branch: %s\n' % location)
84
42
 
85
43
    def test_info_standalone(self):
86
44
        transport = self.get_transport()
87
45
 
88
46
        # Create initial standalone branch
89
 
        tree1 = self.make_branch_and_tree('standalone', 'knit')
 
47
        tree1 = self.make_branch_and_tree('standalone', 'weave')
90
48
        self.build_tree(['standalone/a'])
91
49
        tree1.add('a')
92
50
        branch1 = tree1.branch
93
 
 
94
 
        out, err = self.run_bzr('info standalone')
95
 
        self.assertEqualDiff(
96
 
"""Standalone tree (format: knit)
97
 
Location:
98
 
  branch root: standalone
99
 
""", out)
100
 
        self.assertEqual('', err)
101
 
 
102
 
        # Standalone branch - verbose mode
103
 
        out, err = self.run_bzr('info standalone -v')
104
 
        self.assertEqualDiff(
105
 
"""Standalone tree (format: knit)
106
 
Location:
107
 
  branch root: standalone
108
 
 
109
 
Format:
110
 
       control: Meta directory format 1
111
 
  working tree: Working tree format 3
112
 
        branch: Branch format 5
113
 
    repository: Knit repository format 1
114
 
 
115
 
Control directory:
116
 
         1 branches
117
 
 
118
 
In the working tree:
119
 
         0 unchanged
120
 
         0 modified
121
 
         1 added
122
 
         0 removed
123
 
         0 renamed
124
 
         0 unknown
125
 
         0 ignored
126
 
         0 versioned subdirectories
127
 
 
128
 
Branch history:
129
 
         0 revisions
130
 
 
131
 
Repository:
132
 
         0 revisions
133
 
""", out)
134
 
        self.assertEqual('', err)
135
 
 
136
 
        # Standalone branch - really verbose mode
137
 
        out, err = self.run_bzr('info standalone -vv')
138
 
        self.assertEqualDiff(
139
 
"""Standalone tree (format: knit)
140
 
Location:
141
 
  branch root: standalone
142
 
 
143
 
Format:
144
 
       control: Meta directory format 1
145
 
  working tree: Working tree format 3
146
 
        branch: Branch format 5
147
 
    repository: Knit repository format 1
148
 
 
149
 
Control directory:
150
 
         1 branches
151
 
 
152
 
In the working tree:
153
 
         0 unchanged
154
 
         0 modified
155
 
         1 added
156
 
         0 removed
157
 
         0 renamed
158
 
         0 unknown
159
 
         0 ignored
160
 
         0 versioned subdirectories
161
 
 
162
 
Branch history:
163
 
         0 revisions
164
 
         0 committers
165
 
 
166
 
Repository:
167
 
         0 revisions
168
 
""", out)
 
51
        out, err = self.runbzr('info standalone')
 
52
        self.assertEqualDiff(
 
53
"""Location:
 
54
  branch root: %s
 
55
 
 
56
Format:
 
57
       control: All-in-one format 6
 
58
  working tree: Working tree format 2
 
59
        branch: Branch format 4
 
60
    repository: Weave repository format 6
 
61
 
 
62
In the working tree:
 
63
         0 unchanged
 
64
         0 modified
 
65
         1 added
 
66
         0 removed
 
67
         0 renamed
 
68
         0 unknown
 
69
         0 ignored
 
70
         0 versioned subdirectories
 
71
 
 
72
Branch history:
 
73
         0 revisions
 
74
 
 
75
Repository:
 
76
         0 revisions
 
77
         0 KiB
 
78
""" % branch1.bzrdir.root_transport.base, out)
169
79
        self.assertEqual('', err)
170
80
        tree1.commit('commit one')
171
 
        rev = branch1.repository.get_revision(branch1.last_revision())
172
 
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
 
81
        rev = branch1.repository.get_revision(branch1.revision_history()[0])
 
82
        datestring_first = format_date(rev.timestamp, rev.timezone)
173
83
 
174
84
        # Branch standalone with push location
175
85
        branch2 = branch1.bzrdir.sprout('branch').open_branch()
176
86
        branch2.set_push_location(branch1.bzrdir.root_transport.base)
177
 
 
178
 
        out, err = self.run_bzr('info branch')
179
 
        self.assertEqualDiff(
180
 
"""Standalone tree (format: knit)
181
 
Location:
182
 
  branch root: branch
183
 
 
184
 
Related branches:
185
 
    push branch: standalone
186
 
  parent branch: standalone
187
 
""", out)
188
 
        self.assertEqual('', err)
189
 
 
190
 
        out, err = self.run_bzr('info branch --verbose')
191
 
        self.assertEqualDiff(
192
 
"""Standalone tree (format: knit)
193
 
Location:
194
 
  branch root: branch
195
 
 
196
 
Related branches:
197
 
    push branch: standalone
198
 
  parent branch: standalone
 
87
        out, err = self.runbzr('info branch --verbose')
 
88
        self.assertEqualDiff(
 
89
"""Location:
 
90
  branch root: %s
 
91
 
 
92
Related branches:
 
93
      parent branch: %s
 
94
  publish to branch: %s
199
95
 
200
96
Format:
201
 
       control: Meta directory format 1
202
 
  working tree: Working tree format 3
203
 
        branch: Branch format 5
204
 
    repository: Knit repository format 1
205
 
 
206
 
Control directory:
207
 
         1 branches
 
97
       control: All-in-one format 6
 
98
  working tree: Working tree format 2
 
99
        branch: Branch format 4
 
100
    repository: Weave repository format 6
208
101
 
209
102
In the working tree:
210
103
         1 unchanged
218
111
 
219
112
Branch history:
220
113
         1 revision
 
114
         1 committer
221
115
         0 days old
222
116
   first revision: %s
223
117
  latest revision: %s
224
118
 
225
119
Repository:
226
120
         1 revision
227
 
""" % (datestring_first, datestring_first,
 
121
         %d KiB
 
122
""" % (branch2.bzrdir.root_transport.base,
 
123
       branch1.bzrdir.root_transport.base,
 
124
       branch1.bzrdir.root_transport.base,
 
125
       datestring_first, datestring_first,
 
126
       # poking at _revision_store isn't all that clean, but neither is
 
127
       # having the ui test dependent on the exact overhead of a given store.
 
128
       branch2.repository._revision_store.total_size(
 
129
        branch2.repository.get_transaction())[1] / 1024,
228
130
       ), out)
229
131
        self.assertEqual('', err)
230
132
 
231
133
        # Branch and bind to standalone, needs upgrade to metadir
232
134
        # (creates backup as unknown)
233
135
        branch1.bzrdir.sprout('bound')
234
 
        knit1_format = controldir.format_registry.make_bzrdir('knit')
235
 
        upgrade.upgrade('bound', knit1_format)
236
 
        branch3 = controldir.ControlDir.open('bound').open_branch()
 
136
        knit1_format = bzrdir.format_registry.make_bzrdir('knit')
 
137
        bzrlib.upgrade.upgrade('bound', knit1_format)
 
138
        branch3 = bzrlib.bzrdir.BzrDir.open('bound').open_branch()
237
139
        branch3.bind(branch1)
238
140
        bound_tree = branch3.bzrdir.open_workingtree()
239
 
        out, err = self.run_bzr('info -v bound')
 
141
        out, err = self.runbzr('info bound')
240
142
        self.assertEqualDiff(
241
 
"""Checkout (format: knit)
242
 
Location:
243
 
       checkout root: bound
244
 
  checkout of branch: standalone
 
143
"""Location:
 
144
       checkout root: %s
 
145
  checkout of branch: %s
245
146
 
246
147
Related branches:
247
 
  parent branch: standalone
 
148
  parent branch: %s
248
149
 
249
150
Format:
250
151
       control: Meta directory format 1
252
153
        branch: %s
253
154
    repository: %s
254
155
 
255
 
Control directory:
256
 
         1 branches
257
 
 
258
156
In the working tree:
259
157
         1 unchanged
260
158
         0 modified
261
159
         0 added
262
160
         0 removed
263
161
         0 renamed
264
 
         0 unknown
 
162
         1 unknown
265
163
         0 ignored
266
164
         0 versioned subdirectories
267
165
 
273
171
 
274
172
Repository:
275
173
         1 revision
276
 
""" % (bound_tree._format.get_format_description(),
 
174
         %d KiB
 
175
""" % (branch3.bzrdir.root_transport.base,
 
176
       branch1.bzrdir.root_transport.base,
 
177
       branch1.bzrdir.root_transport.base,
 
178
       bound_tree._format.get_format_description(),      
277
179
       branch3._format.get_format_description(),
278
180
       branch3.repository._format.get_format_description(),
279
181
       datestring_first, datestring_first,
 
182
       # poking at _revision_store isn't all that clean, but neither is
 
183
       # having the ui test dependent on the exact overhead of a given store.
 
184
       branch3.repository._revision_store.total_size(
 
185
        branch3.repository.get_transaction())[1] / 1024,
280
186
       ), out)
281
187
        self.assertEqual('', err)
282
188
 
283
189
        # Checkout standalone (same as above, but does not have parent set)
284
 
        branch4 = controldir.ControlDir.create_branch_convenience('checkout',
 
190
        branch4 = bzrlib.bzrdir.BzrDir.create_branch_convenience('checkout',
285
191
            format=knit1_format)
286
192
        branch4.bind(branch1)
287
193
        branch4.bzrdir.open_workingtree().update()
288
 
        out, err = self.run_bzr('info checkout --verbose')
 
194
        out, err = self.runbzr('info checkout --verbose')
289
195
        self.assertEqualDiff(
290
 
"""Checkout (format: knit)
291
 
Location:
292
 
       checkout root: checkout
293
 
  checkout of branch: standalone
 
196
"""Location:
 
197
       checkout root: %s
 
198
  checkout of branch: %s
294
199
 
295
200
Format:
296
201
       control: Meta directory format 1
298
203
        branch: Branch format 5
299
204
    repository: %s
300
205
 
301
 
Control directory:
302
 
         1 branches
303
 
 
304
206
In the working tree:
305
207
         1 unchanged
306
208
         0 modified
313
215
 
314
216
Branch history:
315
217
         1 revision
 
218
         1 committer
316
219
         0 days old
317
220
   first revision: %s
318
221
  latest revision: %s
319
222
 
320
223
Repository:
321
224
         1 revision
322
 
""" % (branch4.repository._format.get_format_description(),
 
225
         %d KiB
 
226
""" % (branch4.bzrdir.root_transport.base,
 
227
       branch1.bzrdir.root_transport.base,
 
228
       branch4.repository._format.get_format_description(),
323
229
       datestring_first, datestring_first,
 
230
       # poking at _revision_store isn't all that clean, but neither is
 
231
       # having the ui test dependent on the exact overhead of a given store.
 
232
       branch4.repository._revision_store.total_size(
 
233
        branch4.repository.get_transaction())[1] / 1024,
324
234
       ), out)
325
235
        self.assertEqual('', err)
326
236
 
327
237
        # Lightweight checkout (same as above, different branch and repository)
328
238
        tree5 = branch1.create_checkout('lightcheckout', lightweight=True)
329
239
        branch5 = tree5.branch
330
 
        out, err = self.run_bzr('info -v lightcheckout')
331
 
        if "metaweave" in controldir.format_registry:
332
 
            format_description = "knit or metaweave"
333
 
        else:
334
 
            format_description = "knit"
 
240
        out, err = self.runbzr('info lightcheckout')
335
241
        self.assertEqualDiff(
336
 
"""Lightweight checkout (format: %s)
337
 
Location:
338
 
  light checkout root: lightcheckout
339
 
   checkout of branch: standalone
 
242
"""Location:
 
243
 light checkout root: %s
 
244
  checkout of branch: %s
340
245
 
341
246
Format:
342
247
       control: Meta directory format 1
343
 
  working tree: Working tree format 3
344
 
        branch: Branch format 5
345
 
    repository: Knit repository format 1
346
 
 
347
 
Control directory:
348
 
         1 branches
 
248
  working tree: Working tree format 4
 
249
        branch: Branch format 4
 
250
    repository: Weave repository format 6
349
251
 
350
252
In the working tree:
351
253
         1 unchanged
365
267
 
366
268
Repository:
367
269
         1 revision
368
 
""" % (format_description, datestring_first, datestring_first,), out)
 
270
         0 KiB
 
271
""" % (tree5.bzrdir.root_transport.base,
 
272
       branch1.bzrdir.root_transport.base,
 
273
       datestring_first, datestring_first,
 
274
       ), out)
369
275
        self.assertEqual('', err)
370
276
 
371
277
        # Update initial standalone branch
372
278
        self.build_tree(['standalone/b'])
373
279
        tree1.add('b')
374
280
        tree1.commit('commit two')
375
 
        rev = branch1.repository.get_revision(branch1.last_revision())
376
 
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
 
281
        rev = branch1.repository.get_revision(branch1.revision_history()[-1])
 
282
        datestring_last = format_date(rev.timestamp, rev.timezone)
377
283
 
378
284
        # Out of date branched standalone branch will not be detected
379
 
        out, err = self.run_bzr('info -v branch')
 
285
        out, err = self.runbzr('info branch')
380
286
        self.assertEqualDiff(
381
 
"""Standalone tree (format: knit)
382
 
Location:
383
 
  branch root: branch
 
287
"""Location:
 
288
  branch root: %s
384
289
 
385
290
Related branches:
386
 
    push branch: standalone
387
 
  parent branch: standalone
 
291
      parent branch: %s
 
292
  publish to branch: %s
388
293
 
389
294
Format:
390
 
       control: Meta directory format 1
391
 
  working tree: Working tree format 3
392
 
        branch: Branch format 5
393
 
    repository: Knit repository format 1
394
 
 
395
 
Control directory:
396
 
         1 branches
 
295
       control: All-in-one format 6
 
296
  working tree: Working tree format 2
 
297
        branch: Branch format 4
 
298
    repository: Weave repository format 6
397
299
 
398
300
In the working tree:
399
301
         1 unchanged
413
315
 
414
316
Repository:
415
317
         1 revision
416
 
""" % (datestring_first, datestring_first,
 
318
         0 KiB
 
319
""" % (branch2.bzrdir.root_transport.base,
 
320
       branch1.bzrdir.root_transport.base,
 
321
       branch1.bzrdir.root_transport.base,
 
322
       datestring_first, datestring_first,
417
323
       ), out)
418
324
        self.assertEqual('', err)
419
325
 
420
326
        # Out of date bound branch
421
 
        out, err = self.run_bzr('info -v bound')
 
327
        out, err = self.runbzr('info bound')
422
328
        self.assertEqualDiff(
423
 
"""Checkout (format: knit)
424
 
Location:
425
 
       checkout root: bound
426
 
  checkout of branch: standalone
 
329
"""Location:
 
330
       checkout root: %s
 
331
  checkout of branch: %s
427
332
 
428
333
Related branches:
429
 
  parent branch: standalone
 
334
  parent branch: %s
430
335
 
431
336
Format:
432
337
       control: Meta directory format 1
434
339
        branch: Branch format 5
435
340
    repository: %s
436
341
 
437
 
Control directory:
438
 
         1 branches
439
 
 
440
342
Branch is out of date: missing 1 revision.
441
343
 
442
344
In the working tree:
445
347
         0 added
446
348
         0 removed
447
349
         0 renamed
448
 
         0 unknown
 
350
         1 unknown
449
351
         0 ignored
450
352
         0 versioned subdirectories
451
353
 
457
359
 
458
360
Repository:
459
361
         1 revision
460
 
""" % (branch3.repository._format.get_format_description(),
 
362
         %d KiB
 
363
""" % (branch3.bzrdir.root_transport.base,
 
364
       branch1.bzrdir.root_transport.base,
 
365
       branch1.bzrdir.root_transport.base,
 
366
       branch3.repository._format.get_format_description(),
461
367
       datestring_first, datestring_first,
 
368
       # poking at _revision_store isn't all that clean, but neither is
 
369
       # having the ui test dependent on the exact overhead of a given store.
 
370
       branch3.repository._revision_store.total_size(
 
371
        branch3.repository.get_transaction())[1] / 1024,
462
372
       ), out)
463
373
        self.assertEqual('', err)
464
374
 
465
375
        # Out of date checkout
466
 
        out, err = self.run_bzr('info -v checkout')
 
376
        out, err = self.runbzr('info checkout')
467
377
        self.assertEqualDiff(
468
 
"""Checkout (format: knit)
469
 
Location:
470
 
       checkout root: checkout
471
 
  checkout of branch: standalone
 
378
"""Location:
 
379
       checkout root: %s
 
380
  checkout of branch: %s
472
381
 
473
382
Format:
474
383
       control: Meta directory format 1
476
385
        branch: Branch format 5
477
386
    repository: %s
478
387
 
479
 
Control directory:
480
 
         1 branches
481
 
 
482
388
Branch is out of date: missing 1 revision.
483
389
 
484
390
In the working tree:
499
405
 
500
406
Repository:
501
407
         1 revision
502
 
""" % (branch4.repository._format.get_format_description(),
 
408
         %d KiB
 
409
""" % (branch4.bzrdir.root_transport.base,
 
410
       branch1.bzrdir.root_transport.base,
 
411
       branch4.repository._format.get_format_description(),
503
412
       datestring_first, datestring_first,
 
413
       # poking at _revision_store isn't all that clean, but neither is
 
414
       # having the ui test dependent on the exact overhead of a given store.
 
415
       branch4.repository._revision_store.total_size(
 
416
        branch4.repository.get_transaction())[1] / 1024,
504
417
       ), out)
505
418
        self.assertEqual('', err)
506
419
 
507
420
        # Out of date lightweight checkout
508
 
        out, err = self.run_bzr('info lightcheckout --verbose')
 
421
        out, err = self.runbzr('info lightcheckout --verbose')
509
422
        self.assertEqualDiff(
510
 
"""Lightweight checkout (format: %s)
511
 
Location:
512
 
  light checkout root: lightcheckout
513
 
   checkout of branch: standalone
 
423
"""Location:
 
424
 light checkout root: %s
 
425
  checkout of branch: %s
514
426
 
515
427
Format:
516
428
       control: Meta directory format 1
517
 
  working tree: Working tree format 3
518
 
        branch: Branch format 5
519
 
    repository: Knit repository format 1
520
 
 
521
 
Control directory:
522
 
         1 branches
 
429
  working tree: Working tree format 4
 
430
        branch: Branch format 4
 
431
    repository: Weave repository format 6
523
432
 
524
433
Working tree is out of date: missing 1 revision.
525
434
 
535
444
 
536
445
Branch history:
537
446
         2 revisions
 
447
         1 committer
538
448
         0 days old
539
449
   first revision: %s
540
450
  latest revision: %s
541
451
 
542
452
Repository:
543
453
         2 revisions
544
 
""" % (format_description, datestring_first, datestring_last,), out)
 
454
         0 KiB
 
455
""" % (tree5.bzrdir.root_transport.base,
 
456
       branch1.bzrdir.root_transport.base,
 
457
       datestring_first, datestring_last,
 
458
       ), out)
545
459
        self.assertEqual('', err)
546
460
 
547
461
    def test_info_standalone_no_tree(self):
548
462
        # create standalone branch without a working tree
549
 
        format = controldir.format_registry.make_bzrdir('default')
 
463
        format = bzrdir.format_registry.make_bzrdir('default')
550
464
        branch = self.make_branch('branch')
551
465
        repo = branch.repository
552
 
        out, err = self.run_bzr('info branch -v')
 
466
        out, err = self.runbzr('info branch')
553
467
        self.assertEqualDiff(
554
 
"""Standalone branch (format: %s)
555
 
Location:
556
 
  branch root: branch
 
468
"""Location:
 
469
  branch root: %s
557
470
 
558
471
Format:
559
472
       control: Meta directory format 1
560
473
        branch: %s
561
474
    repository: %s
562
475
 
563
 
Control directory:
564
 
         1 branches
565
 
 
566
476
Branch history:
567
477
         0 revisions
568
478
 
569
479
Repository:
570
480
         0 revisions
571
 
""" % (info.describe_format(repo.bzrdir, repo, branch, None),
 
481
         0 KiB
 
482
""" % (branch.bzrdir.root_transport.base,
572
483
       format.get_branch_format().get_format_description(),
573
484
       format.repository_format.get_format_description(),
574
485
       ), out)
575
486
        self.assertEqual('', err)
576
487
 
577
488
    def test_info_shared_repository(self):
578
 
        format = controldir.format_registry.make_bzrdir('knit')
 
489
        format = bzrdir.format_registry.make_bzrdir('knit')
579
490
        transport = self.get_transport()
580
491
 
581
492
        # Create shared repository
582
493
        repo = self.make_repository('repo', shared=True, format=format)
583
494
        repo.set_make_working_trees(False)
584
 
        out, err = self.run_bzr('info -v repo')
 
495
        out, err = self.runbzr('info repo')
585
496
        self.assertEqualDiff(
586
 
"""Shared repository (format: dirstate or dirstate-tags or knit)
587
 
Location:
 
497
"""Location:
588
498
  shared repository: %s
589
499
 
590
500
Format:
591
501
       control: Meta directory format 1
592
502
    repository: %s
593
503
 
594
 
Control directory:
595
 
         0 branches
596
 
 
597
504
Repository:
598
505
         0 revisions
599
 
""" % ('repo', format.repository_format.get_format_description(),
 
506
         0 KiB
 
507
""" % (repo.bzrdir.root_transport.base,
 
508
       format.repository_format.get_format_description(),
600
509
       ), out)
601
510
        self.assertEqual('', err)
602
511
 
603
512
        # Create branch inside shared repository
604
513
        repo.bzrdir.root_transport.mkdir('branch')
605
 
        branch1 = controldir.ControlDir.create_branch_convenience(
606
 
            'repo/branch', format=format)
607
 
        out, err = self.run_bzr('info -v repo/branch')
 
514
        branch1 = repo.bzrdir.create_branch_convenience('repo/branch',
 
515
            format=format)
 
516
        out, err = self.runbzr('info repo/branch')
608
517
        self.assertEqualDiff(
609
 
"""Repository branch (format: dirstate or knit)
610
 
Location:
611
 
  shared repository: repo
612
 
  repository branch: repo/branch
 
518
"""Location:
 
519
  shared repository: %s
 
520
  repository branch: branch
613
521
 
614
522
Format:
615
523
       control: Meta directory format 1
616
524
        branch: %s
617
525
    repository: %s
618
526
 
619
 
Control directory:
620
 
         1 branches
621
 
 
622
527
Branch history:
623
528
         0 revisions
624
529
 
625
530
Repository:
626
531
         0 revisions
627
 
""" % (format.get_branch_format().get_format_description(),
 
532
         0 KiB
 
533
""" % (repo.bzrdir.root_transport.base,
 
534
       format.get_branch_format().get_format_description(),
628
535
       format.repository_format.get_format_description(),
629
536
       ), out)
630
537
        self.assertEqual('', err)
632
539
        # Create lightweight checkout
633
540
        transport.mkdir('tree')
634
541
        transport.mkdir('tree/lightcheckout')
635
 
        tree2 = branch1.create_checkout('tree/lightcheckout',
 
542
        tree2 = branch1.create_checkout('tree/lightcheckout', 
636
543
            lightweight=True)
637
544
        branch2 = tree2.branch
638
 
        self.assertCheckoutStatusOutput('-v tree/lightcheckout', tree2,
639
 
                   shared_repo=repo, repo_branch=branch1, verbose=True)
 
545
        self.assertCheckoutStatusOutput('tree/lightcheckout', tree2, 
 
546
                   shared_repo=repo)
640
547
 
641
548
        # Create normal checkout
642
549
        tree3 = branch1.create_checkout('tree/checkout')
647
554
        self.build_tree(['tree/lightcheckout/a'])
648
555
        tree2.add('a')
649
556
        tree2.commit('commit one')
650
 
        rev = repo.get_revision(branch2.last_revision())
651
 
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
652
 
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
 
557
        rev = repo.get_revision(branch2.revision_history()[0])
 
558
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
559
        out, err = self.runbzr('info tree/lightcheckout --verbose')
653
560
        self.assertEqualDiff(
654
 
"""Lightweight checkout (format: %s)
655
 
Location:
656
 
  light checkout root: tree/lightcheckout
657
 
   checkout of branch: repo/branch
658
 
    shared repository: repo
 
561
"""Location:
 
562
 light checkout root: %s
 
563
   shared repository: %s
 
564
   repository branch: branch
659
565
 
660
566
Format:
661
567
       control: Meta directory format 1
662
 
  working tree: Working tree format 6
 
568
  working tree: Working tree format 4
663
569
        branch: %s
664
570
    repository: %s
665
571
 
666
 
Control directory:
667
 
         1 branches
668
 
 
669
572
In the working tree:
670
573
         1 unchanged
671
574
         0 modified
678
581
 
679
582
Branch history:
680
583
         1 revision
 
584
         1 committer
681
585
         0 days old
682
586
   first revision: %s
683
587
  latest revision: %s
684
588
 
685
589
Repository:
686
590
         1 revision
687
 
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
 
591
         %d KiB
 
592
""" % (tree2.bzrdir.root_transport.base,
 
593
       repo.bzrdir.root_transport.base,
 
594
       format.get_branch_format().get_format_description(),
688
595
       format.repository_format.get_format_description(),
689
596
       datestring_first, datestring_first,
 
597
       # poking at _revision_store isn't all that clean, but neither is
 
598
       # having the ui test dependent on the exact overhead of a given store.
 
599
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
690
600
       ), out)
691
601
        self.assertEqual('', err)
692
602
 
693
603
        # Out of date checkout
694
 
        out, err = self.run_bzr('info -v tree/checkout')
 
604
        out, err = self.runbzr('info tree/checkout')
695
605
        self.assertEqualDiff(
696
 
"""Checkout (format: unnamed)
697
 
Location:
698
 
       checkout root: tree/checkout
699
 
  checkout of branch: repo/branch
 
606
"""Location:
 
607
       checkout root: %s
 
608
  checkout of branch: %s
700
609
 
701
610
Format:
702
611
       control: Meta directory format 1
703
 
  working tree: Working tree format 6
 
612
  working tree: Working tree format 4
704
613
        branch: %s
705
614
    repository: %s
706
615
 
707
 
Control directory:
708
 
         1 branches
709
 
 
710
616
Branch is out of date: missing 1 revision.
711
617
 
712
618
In the working tree:
724
630
 
725
631
Repository:
726
632
         0 revisions
727
 
""" % (format.get_branch_format().get_format_description(),
 
633
         0 KiB
 
634
""" % (tree3.bzrdir.root_transport.base,
 
635
       branch1.bzrdir.root_transport.base,
 
636
       format.get_branch_format().get_format_description(),
728
637
       format.repository_format.get_format_description(),
729
638
       ), out)
730
639
        self.assertEqual('', err)
733
642
        tree3.update()
734
643
        self.build_tree(['tree/checkout/b'])
735
644
        tree3.add('b')
736
 
        out, err = self.run_bzr('info tree/checkout --verbose')
 
645
        out, err = self.runbzr('info tree/checkout --verbose')
737
646
        self.assertEqualDiff(
738
 
"""Checkout (format: unnamed)
739
 
Location:
740
 
       checkout root: tree/checkout
741
 
  checkout of branch: repo/branch
 
647
"""Location:
 
648
       checkout root: %s
 
649
  checkout of branch: %s
742
650
 
743
651
Format:
744
652
       control: Meta directory format 1
745
 
  working tree: Working tree format 6
 
653
  working tree: Working tree format 4
746
654
        branch: %s
747
655
    repository: %s
748
656
 
749
 
Control directory:
750
 
         1 branches
751
 
 
752
657
In the working tree:
753
658
         1 unchanged
754
659
         0 modified
761
666
 
762
667
Branch history:
763
668
         1 revision
 
669
         1 committer
764
670
         0 days old
765
671
   first revision: %s
766
672
  latest revision: %s
767
673
 
768
674
Repository:
769
675
         1 revision
770
 
""" % (format.get_branch_format().get_format_description(),
 
676
         %d KiB
 
677
""" % (tree3.bzrdir.root_transport.base, branch1.bzrdir.root_transport.base,
 
678
       format.get_branch_format().get_format_description(),
771
679
       format.repository_format.get_format_description(),
772
680
       datestring_first, datestring_first,
 
681
       # poking at _revision_store isn't all that clean, but neither is
 
682
       # having the ui test dependent on the exact overhead of a given store.
 
683
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
773
684
       ), out)
774
685
        self.assertEqual('', err)
775
686
        tree3.commit('commit two')
776
687
 
777
688
        # Out of date lightweight checkout
778
 
        rev = repo.get_revision(branch1.last_revision())
779
 
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
780
 
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
 
689
        rev = repo.get_revision(branch1.revision_history()[-1])
 
690
        datestring_last = format_date(rev.timestamp, rev.timezone)
 
691
        out, err = self.runbzr('info tree/lightcheckout --verbose')
781
692
        self.assertEqualDiff(
782
 
"""Lightweight checkout (format: %s)
783
 
Location:
784
 
  light checkout root: tree/lightcheckout
785
 
   checkout of branch: repo/branch
786
 
    shared repository: repo
 
693
"""Location:
 
694
 light checkout root: %s
 
695
   shared repository: %s
 
696
   repository branch: branch
787
697
 
788
698
Format:
789
699
       control: Meta directory format 1
790
 
  working tree: Working tree format 6
 
700
  working tree: Working tree format 4
791
701
        branch: %s
792
702
    repository: %s
793
703
 
794
 
Control directory:
795
 
         1 branches
796
 
 
797
704
Working tree is out of date: missing 1 revision.
798
705
 
799
706
In the working tree:
808
715
 
809
716
Branch history:
810
717
         2 revisions
 
718
         1 committer
811
719
         0 days old
812
720
   first revision: %s
813
721
  latest revision: %s
814
722
 
815
723
Repository:
816
724
         2 revisions
817
 
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
 
725
         %d KiB
 
726
""" % (tree2.bzrdir.root_transport.base,
 
727
       repo.bzrdir.root_transport.base,
 
728
       format.get_branch_format().get_format_description(),
818
729
       format.repository_format.get_format_description(),
819
730
       datestring_first, datestring_last,
 
731
       # poking at _revision_store isn't all that clean, but neither is
 
732
       # having the ui test dependent on the exact overhead of a given store.
 
733
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
820
734
       ), out)
821
735
        self.assertEqual('', err)
822
736
 
823
737
        # Show info about shared branch
824
 
        out, err = self.run_bzr('info repo/branch --verbose')
 
738
        out, err = self.runbzr('info repo/branch --verbose')
825
739
        self.assertEqualDiff(
826
 
"""Repository branch (format: dirstate or knit)
827
 
Location:
828
 
  shared repository: repo
829
 
  repository branch: repo/branch
 
740
"""Location:
 
741
  shared repository: %s
 
742
  repository branch: branch
830
743
 
831
744
Format:
832
745
       control: Meta directory format 1
833
746
        branch: %s
834
747
    repository: %s
835
748
 
836
 
Control directory:
837
 
         1 branches
838
 
 
839
749
Branch history:
840
750
         2 revisions
 
751
         1 committer
841
752
         0 days old
842
753
   first revision: %s
843
754
  latest revision: %s
844
755
 
845
756
Repository:
846
757
         2 revisions
847
 
""" % (format.get_branch_format().get_format_description(),
 
758
         %d KiB
 
759
""" % (repo.bzrdir.root_transport.base,
 
760
       format.get_branch_format().get_format_description(),
848
761
       format.repository_format.get_format_description(),
849
762
       datestring_first, datestring_last,
 
763
       # poking at _revision_store isn't all that clean, but neither is
 
764
       # having the ui test dependent on the exact overhead of a given store.
 
765
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
850
766
       ), out)
851
767
        self.assertEqual('', err)
852
768
 
853
769
        # Show info about repository with revisions
854
 
        out, err = self.run_bzr('info -v repo')
 
770
        out, err = self.runbzr('info repo')
855
771
        self.assertEqualDiff(
856
 
"""Shared repository (format: dirstate or dirstate-tags or knit)
857
 
Location:
858
 
  shared repository: repo
 
772
"""Location:
 
773
  shared repository: %s
859
774
 
860
775
Format:
861
776
       control: Meta directory format 1
862
777
    repository: %s
863
778
 
864
 
Control directory:
865
 
         0 branches
866
 
 
867
779
Repository:
868
780
         2 revisions
869
 
""" % (format.repository_format.get_format_description(),
 
781
         %d KiB
 
782
""" % (repo.bzrdir.root_transport.base,
 
783
       format.repository_format.get_format_description(),
 
784
       # poking at _revision_store isn't all that clean, but neither is
 
785
       # having the ui test dependent on the exact overhead of a given store.
 
786
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
870
787
       ), out)
871
788
        self.assertEqual('', err)
872
789
 
873
790
    def test_info_shared_repository_with_trees(self):
874
 
        format = controldir.format_registry.make_bzrdir('knit')
 
791
        format = bzrdir.format_registry.make_bzrdir('knit')
875
792
        transport = self.get_transport()
876
793
 
877
794
        # Create shared repository with working trees
878
795
        repo = self.make_repository('repo', shared=True, format=format)
879
796
        repo.set_make_working_trees(True)
880
 
        out, err = self.run_bzr('info -v repo')
 
797
        out, err = self.runbzr('info repo')
881
798
        self.assertEqualDiff(
882
 
"""Shared repository with trees (format: dirstate or dirstate-tags or knit)
883
 
Location:
884
 
  shared repository: repo
 
799
"""Location:
 
800
  shared repository: %s
885
801
 
886
802
Format:
887
803
       control: Meta directory format 1
888
804
    repository: %s
889
805
 
890
 
Control directory:
891
 
         0 branches
892
 
 
893
806
Create working tree for new branches inside the repository.
894
807
 
895
808
Repository:
896
809
         0 revisions
897
 
""" % (format.repository_format.get_format_description(),
 
810
         0 KiB
 
811
""" % (repo.bzrdir.root_transport.base,
 
812
       format.repository_format.get_format_description(),
898
813
       ), out)
899
814
        self.assertEqual('', err)
900
815
 
901
816
        # Create two branches
902
817
        repo.bzrdir.root_transport.mkdir('branch1')
903
 
        branch1 = controldir.ControlDir.create_branch_convenience('repo/branch1',
 
818
        branch1 = repo.bzrdir.create_branch_convenience('repo/branch1',
904
819
            format=format)
905
820
        branch2 = branch1.bzrdir.sprout('repo/branch2').open_branch()
906
821
 
907
822
        # Empty first branch
908
 
        out, err = self.run_bzr('info repo/branch1 --verbose')
 
823
        out, err = self.runbzr('info repo/branch1 --verbose')
909
824
        self.assertEqualDiff(
910
 
"""Repository tree (format: knit)
911
 
Location:
912
 
  shared repository: repo
913
 
  repository branch: repo/branch1
 
825
"""Location:
 
826
    shared repository: %s
 
827
  repository checkout: branch1
914
828
 
915
829
Format:
916
830
       control: Meta directory format 1
918
832
        branch: %s
919
833
    repository: %s
920
834
 
921
 
Control directory:
922
 
         1 branches
923
 
 
924
835
In the working tree:
925
836
         0 unchanged
926
837
         0 modified
933
844
 
934
845
Branch history:
935
846
         0 revisions
 
847
         0 committers
936
848
 
937
849
Repository:
938
850
         0 revisions
939
 
""" % (format.get_branch_format().get_format_description(),
 
851
         0 KiB
 
852
""" % (repo.bzrdir.root_transport.base,
 
853
       format.get_branch_format().get_format_description(),
940
854
       format.repository_format.get_format_description(),
941
855
       ), out)
942
856
        self.assertEqual('', err)
946
860
        tree1 = branch1.bzrdir.open_workingtree()
947
861
        tree1.add('a')
948
862
        tree1.commit('commit one')
949
 
        rev = repo.get_revision(branch1.last_revision())
950
 
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
951
 
        out, err = self.run_bzr('info -v repo/branch1')
 
863
        rev = repo.get_revision(branch1.revision_history()[0])
 
864
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
865
        out, err = self.runbzr('info repo/branch1')
952
866
        self.assertEqualDiff(
953
 
"""Repository tree (format: knit)
954
 
Location:
955
 
  shared repository: repo
956
 
  repository branch: repo/branch1
 
867
"""Location:
 
868
    shared repository: %s
 
869
  repository checkout: branch1
957
870
 
958
871
Format:
959
872
       control: Meta directory format 1
961
874
        branch: %s
962
875
    repository: %s
963
876
 
964
 
Control directory:
965
 
         1 branches
966
 
 
967
877
In the working tree:
968
878
         1 unchanged
969
879
         0 modified
982
892
 
983
893
Repository:
984
894
         1 revision
985
 
""" % (format.get_branch_format().get_format_description(),
 
895
         %d KiB
 
896
""" % (repo.bzrdir.root_transport.base,
 
897
       format.get_branch_format().get_format_description(),
986
898
       format.repository_format.get_format_description(),
987
899
       datestring_first, datestring_first,
 
900
       # poking at _revision_store isn't all that clean, but neither is
 
901
       # having the ui test dependent on the exact overhead of a given store.
 
902
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
988
903
       ), out)
989
904
        self.assertEqual('', err)
990
905
 
991
906
        # Out of date second branch
992
 
        out, err = self.run_bzr('info repo/branch2 --verbose')
 
907
        out, err = self.runbzr('info repo/branch2 --verbose')
993
908
        self.assertEqualDiff(
994
 
"""Repository tree (format: knit)
995
 
Location:
996
 
  shared repository: repo
997
 
  repository branch: repo/branch2
 
909
"""Location:
 
910
    shared repository: %s
 
911
  repository checkout: branch2
998
912
 
999
913
Related branches:
1000
 
  parent branch: repo/branch1
 
914
  parent branch: %s
1001
915
 
1002
916
Format:
1003
917
       control: Meta directory format 1
1005
919
        branch: %s
1006
920
    repository: %s
1007
921
 
1008
 
Control directory:
1009
 
         1 branches
1010
 
 
1011
922
In the working tree:
1012
923
         0 unchanged
1013
924
         0 modified
1020
931
 
1021
932
Branch history:
1022
933
         0 revisions
 
934
         0 committers
1023
935
 
1024
936
Repository:
1025
937
         1 revision
1026
 
""" % (format.get_branch_format().get_format_description(),
 
938
         %d KiB
 
939
""" % (repo.bzrdir.root_transport.base,
 
940
       branch1.bzrdir.root_transport.base,
 
941
       format.get_branch_format().get_format_description(),
1027
942
       format.repository_format.get_format_description(),
 
943
       # poking at _revision_store isn't all that clean, but neither is
 
944
       # having the ui test dependent on the exact overhead of a given store.
 
945
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
1028
946
       ), out)
1029
947
        self.assertEqual('', err)
1030
948
 
1031
949
        # Update second branch
1032
950
        tree2 = branch2.bzrdir.open_workingtree()
1033
951
        tree2.pull(branch1)
1034
 
        out, err = self.run_bzr('info -v repo/branch2')
 
952
        out, err = self.runbzr('info repo/branch2')
1035
953
        self.assertEqualDiff(
1036
 
"""Repository tree (format: knit)
1037
 
Location:
1038
 
  shared repository: repo
1039
 
  repository branch: repo/branch2
 
954
"""Location:
 
955
    shared repository: %s
 
956
  repository checkout: branch2
1040
957
 
1041
958
Related branches:
1042
 
  parent branch: repo/branch1
 
959
  parent branch: %s
1043
960
 
1044
961
Format:
1045
962
       control: Meta directory format 1
1047
964
        branch: %s
1048
965
    repository: %s
1049
966
 
1050
 
Control directory:
1051
 
         1 branches
1052
 
 
1053
967
In the working tree:
1054
968
         1 unchanged
1055
969
         0 modified
1068
982
 
1069
983
Repository:
1070
984
         1 revision
1071
 
""" % (format.get_branch_format().get_format_description(),
 
985
         %d KiB
 
986
""" % (repo.bzrdir.root_transport.base,
 
987
       branch1.bzrdir.root_transport.base,
 
988
       format.get_branch_format().get_format_description(),
1072
989
       format.repository_format.get_format_description(),
1073
990
       datestring_first, datestring_first,
 
991
       # poking at _revision_store isn't all that clean, but neither is
 
992
       # having the ui test dependent on the exact overhead of a given store.
 
993
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
1074
994
       ), out)
1075
995
        self.assertEqual('', err)
1076
996
 
1077
997
        # Show info about repository with revisions
1078
 
        out, err = self.run_bzr('info -v repo')
 
998
        out, err = self.runbzr('info repo')
1079
999
        self.assertEqualDiff(
1080
 
"""Shared repository with trees (format: dirstate or dirstate-tags or knit)
1081
 
Location:
1082
 
  shared repository: repo
 
1000
"""Location:
 
1001
  shared repository: %s
1083
1002
 
1084
1003
Format:
1085
1004
       control: Meta directory format 1
1086
1005
    repository: %s
1087
1006
 
1088
 
Control directory:
1089
 
         0 branches
1090
 
 
1091
1007
Create working tree for new branches inside the repository.
1092
1008
 
1093
1009
Repository:
1094
1010
         1 revision
1095
 
""" % (format.repository_format.get_format_description(),
 
1011
         %d KiB
 
1012
""" % (repo.bzrdir.root_transport.base,
 
1013
       format.repository_format.get_format_description(),
 
1014
       # poking at _revision_store isn't all that clean, but neither is
 
1015
       # having the ui test dependent on the exact overhead of a given store.
 
1016
       repo._revision_store.total_size(repo.get_transaction())[1] / 1024,
1096
1017
       ),
1097
1018
       out)
1098
1019
        self.assertEqual('', err)
1099
 
 
 
1020
    
1100
1021
    def test_info_shared_repository_with_tree_in_root(self):
1101
 
        format = controldir.format_registry.make_bzrdir('knit')
 
1022
        format = bzrdir.format_registry.make_bzrdir('knit')
1102
1023
        transport = self.get_transport()
1103
1024
 
1104
1025
        # Create shared repository with working trees
1105
1026
        repo = self.make_repository('repo', shared=True, format=format)
1106
1027
        repo.set_make_working_trees(True)
1107
 
        out, err = self.run_bzr('info -v repo')
 
1028
        out, err = self.runbzr('info repo')
1108
1029
        self.assertEqualDiff(
1109
 
"""Shared repository with trees (format: dirstate or dirstate-tags or knit)
1110
 
Location:
1111
 
  shared repository: repo
 
1030
"""Location:
 
1031
  shared repository: %s
1112
1032
 
1113
1033
Format:
1114
1034
       control: Meta directory format 1
1115
1035
    repository: %s
1116
1036
 
1117
 
Control directory:
1118
 
         0 branches
1119
 
 
1120
1037
Create working tree for new branches inside the repository.
1121
1038
 
1122
1039
Repository:
1123
1040
         0 revisions
1124
 
""" % (format.repository_format.get_format_description(),
 
1041
         0 KiB
 
1042
""" % (repo.bzrdir.root_transport.base,
 
1043
       format.repository_format.get_format_description(),
1125
1044
       ), out)
1126
1045
        self.assertEqual('', err)
1127
1046
 
1129
1048
        control = repo.bzrdir
1130
1049
        branch = control.create_branch()
1131
1050
        control.create_workingtree()
1132
 
        out, err = self.run_bzr('info -v repo')
 
1051
        out, err = self.runbzr('info repo')
1133
1052
        self.assertEqualDiff(
1134
 
"""Repository tree (format: knit)
1135
 
Location:
1136
 
  shared repository: repo
1137
 
  repository branch: repo
 
1053
"""Location:
 
1054
    shared repository: %s
 
1055
  repository checkout: .
1138
1056
 
1139
1057
Format:
1140
1058
       control: Meta directory format 1
1142
1060
        branch: %s
1143
1061
    repository: %s
1144
1062
 
1145
 
Control directory:
1146
 
         1 branches
1147
 
 
1148
1063
In the working tree:
1149
1064
         0 unchanged
1150
1065
         0 modified
1160
1075
 
1161
1076
Repository:
1162
1077
         0 revisions
1163
 
""" % (format.get_branch_format().get_format_description(),
 
1078
         0 KiB
 
1079
""" % (repo.bzrdir.root_transport.base,
 
1080
       format.get_branch_format().get_format_description(),
1164
1081
       format.repository_format.get_format_description(),
1165
1082
       ), out)
1166
1083
        self.assertEqual('', err)
1167
1084
 
1168
 
    def test_info_repository_hook(self):
1169
 
        format = controldir.format_registry.make_bzrdir('knit')
1170
 
        def repo_info(repo, stats, outf):
1171
 
            outf.write("more info\n")
1172
 
        info.hooks.install_named_hook('repository', repo_info, None)
1173
 
        # Create shared repository with working trees
1174
 
        repo = self.make_repository('repo', shared=True, format=format)
1175
 
        out, err = self.run_bzr('info -v repo')
1176
 
        self.assertEqualDiff(
1177
 
"""Shared repository with trees (format: dirstate or dirstate-tags or knit)
1178
 
Location:
1179
 
  shared repository: repo
1180
 
 
1181
 
Format:
1182
 
       control: Meta directory format 1
1183
 
    repository: %s
1184
 
 
1185
 
Control directory:
1186
 
         0 branches
1187
 
 
1188
 
Create working tree for new branches inside the repository.
1189
 
 
1190
 
Repository:
1191
 
         0 revisions
1192
 
more info
1193
 
""" % (format.repository_format.get_format_description(),
1194
 
       ), out)
1195
 
        self.assertEqual('', err)
1196
 
 
1197
 
    def test_info_unshared_repository_with_colocated_branches(self):
1198
 
        format = controldir.format_registry.make_bzrdir('development-colo')
1199
 
        transport = self.get_transport()
1200
 
 
1201
 
        # Create unshared repository
1202
 
        repo = self.make_repository('repo', shared=False, format=format)
1203
 
        repo.set_make_working_trees(True)
1204
 
        repo.bzrdir.create_branch(name='foo')
1205
 
        out, err = self.run_bzr('info repo')
1206
 
        self.assertEqualDiff(
1207
 
"""Unshared repository with trees and colocated branches (format: development-colo)
1208
 
Location:
1209
 
  repository: repo
1210
 
""", out)
1211
 
        self.assertEqual('', err)
1212
 
 
1213
 
    def assertCheckoutStatusOutput(self,
 
1085
    def assertCheckoutStatusOutput(self, 
1214
1086
        command_string, lco_tree, shared_repo=None,
1215
1087
        repo_branch=None,
1216
1088
        tree_locked=False,
1217
1089
        branch_locked=False, repo_locked=False,
1218
1090
        verbose=False,
1219
 
        light_checkout=True,
1220
 
        checkout_root=None):
1221
 
        """Check the output of info in a checkout.
 
1091
        light_checkout=True):
 
1092
        """Check the output of info in a light checkout tree.
1222
1093
 
1223
1094
        This is not quite a mirror of the info code: rather than using the
1224
1095
        tree being examined to predict output, it uses a bunch of flags which
1225
1096
        allow us, the test writers, to document what *should* be present in
1226
1097
        the output. Removing this separation would remove the value of the
1227
1098
        tests.
1228
 
 
 
1099
        
1229
1100
        :param path: the path to the light checkout.
1230
1101
        :param lco_tree: the tree object for the light checkout.
1231
1102
        :param shared_repo: A shared repository is in use, expect that in
1235
1106
        :param tree_locked: If true, expect the tree to be locked.
1236
1107
        :param branch_locked: If true, expect the branch to be locked.
1237
1108
        :param repo_locked: If true, expect the repository to be locked.
1238
 
            Note that the lco_tree.branch.repository is inspected, and if is not
1239
 
            actually locked then this parameter is overridden. This is because
1240
 
            pack repositories do not have any public API for obtaining an
1241
 
            exclusive repository wide lock.
1242
 
        :param verbose: verbosity level: 2 or higher to show committers
 
1109
        :param verbose: If true, expect verbose output
1243
1110
        """
1244
 
        def friendly_location(url):
1245
 
            path = urlutils.unescape_for_display(url, 'ascii')
1246
 
            try:
1247
 
                return osutils.relpath(osutils.getcwd(), path)
1248
 
            except errors.PathNotChild:
1249
 
                return path
1250
 
 
1251
 
        if tree_locked:
1252
 
            # We expect this to fail because of locking errors.
1253
 
            # (A write-locked file cannot be read-locked
1254
 
            # in the different process -- either on win32 or on linux).
 
1111
        if tree_locked and sys.platform == 'win32':
 
1112
            # We expect this to fail because of locking errors. (A write-locked
 
1113
            # file cannot be read-locked in the same process).
1255
1114
            # This should be removed when the locking errors are fixed.
1256
 
            self.expectFailure('OS locks are exclusive '
1257
 
                'for different processes (Bug #174055)',
1258
 
                self.run_bzr_subprocess,
1259
 
                'info ' + command_string)
1260
 
        out, err = self.run_bzr('info %s' % command_string)
1261
 
        description = {
1262
 
            (True, True): 'Lightweight checkout',
1263
 
            (True, False): 'Repository checkout',
1264
 
            (False, True): 'Lightweight checkout',
1265
 
            (False, False): 'Checkout',
1266
 
            }[(shared_repo is not None, light_checkout)]
1267
 
        format = {True: self._repo_strings,
1268
 
                  False: 'unnamed'}[light_checkout]
1269
 
        if repo_locked:
1270
 
            repo_locked = lco_tree.branch.repository.get_physical_lock_status()
 
1115
            args = command_string.split(' ')
 
1116
            self.run_bzr_error([], 'info', *args)
 
1117
            return
 
1118
        out, err = self.runbzr('info %s' % command_string)
1271
1119
        if repo_locked or branch_locked or tree_locked:
1272
1120
            def locked_message(a_bool):
1273
1121
                if a_bool:
1285
1133
                    locked_message(repo_locked)))
1286
1134
        else:
1287
1135
            expected_lock_output = ''
1288
 
        tree_data = ''
1289
 
        extra_space = ''
1290
1136
        if light_checkout:
1291
 
            tree_data = ("  light checkout root: %s\n" %
1292
 
                friendly_location(lco_tree.bzrdir.root_transport.base))
1293
 
            extra_space = ' '
1294
 
        if lco_tree.branch.get_bound_location() is not None:
1295
 
            tree_data += ("%s       checkout root: %s\n" % (extra_space,
1296
 
                friendly_location(lco_tree.branch.bzrdir.root_transport.base)))
 
1137
            tree_data = (" light checkout root: %s" %
 
1138
                lco_tree.bzrdir.root_transport.base)
 
1139
        else:
 
1140
            tree_data = ("       checkout root: %s" %
 
1141
                lco_tree.bzrdir.root_transport.base)
1297
1142
        if shared_repo is not None:
1298
1143
            branch_data = (
1299
 
                "   checkout of branch: %s\n"
1300
 
                "    shared repository: %s\n" %
1301
 
                (friendly_location(repo_branch.bzrdir.root_transport.base),
1302
 
                 friendly_location(shared_repo.bzrdir.root_transport.base)))
 
1144
                "   shared repository: %s\n"
 
1145
                "   repository branch: branch\n" %
 
1146
                shared_repo.bzrdir.root_transport.base)
1303
1147
        elif repo_branch is not None:
1304
1148
            branch_data = (
1305
 
                "%s  checkout of branch: %s\n" %
1306
 
                (extra_space,
1307
 
                 friendly_location(repo_branch.bzrdir.root_transport.base)))
 
1149
                "  checkout of branch: %s\n" % 
 
1150
                repo_branch.bzrdir.root_transport.base)
1308
1151
        else:
1309
 
            branch_data = ("   checkout of branch: %s\n" %
 
1152
            branch_data = ("  checkout of branch: %s\n" % 
1310
1153
                lco_tree.branch.bzrdir.root_transport.base)
1311
 
 
1312
 
        if verbose >= 2:
 
1154
        
 
1155
        if verbose:
1313
1156
            verbose_info = '         0 committers\n'
1314
1157
        else:
1315
1158
            verbose_info = ''
1316
 
 
 
1159
            
1317
1160
        self.assertEqualDiff(
1318
 
"""%s (format: %s)
1319
 
Location:
1320
 
%s%s
 
1161
"""Location:
 
1162
%s
 
1163
%s
1321
1164
Format:
1322
1165
       control: Meta directory format 1
1323
1166
  working tree: %s
1324
1167
        branch: %s
1325
1168
    repository: %s
1326
1169
%s
1327
 
Control directory:
1328
 
         1 branches
1329
 
 
1330
1170
In the working tree:
1331
1171
         0 unchanged
1332
1172
         0 modified
1342
1182
%s
1343
1183
Repository:
1344
1184
         0 revisions
1345
 
""" %  (description,
1346
 
        format,
1347
 
        tree_data,
 
1185
         0 KiB
 
1186
""" %  (tree_data,
1348
1187
        branch_data,
1349
1188
        lco_tree._format.get_format_description(),
1350
1189
        lco_tree.branch._format.get_format_description(),
1358
1197
        transport = self.get_transport()
1359
1198
        # Create shared repository with a branch
1360
1199
        repo = self.make_repository('repo', shared=True,
1361
 
                                    format=bzrdir.BzrDirMetaFormat1())
 
1200
                                    format=bzrlib.bzrdir.BzrDirMetaFormat1())
1362
1201
        repo.set_make_working_trees(False)
1363
1202
        repo.bzrdir.root_transport.mkdir('branch')
1364
 
        repo_branch = controldir.ControlDir.create_branch_convenience(
1365
 
            'repo/branch', format=bzrdir.BzrDirMetaFormat1())
 
1203
        repo_branch = repo.bzrdir.create_branch_convenience('repo/branch',
 
1204
                                    format=bzrlib.bzrdir.BzrDirMetaFormat1())
1366
1205
        # Do a heavy checkout
1367
1206
        transport.mkdir('tree')
1368
1207
        transport.mkdir('tree/checkout')
1369
 
        co_branch = controldir.ControlDir.create_branch_convenience(
1370
 
            'tree/checkout', format=bzrdir.BzrDirMetaFormat1())
 
1208
        co_branch = bzrlib.bzrdir.BzrDir.create_branch_convenience('tree/checkout',
 
1209
            format=bzrlib.bzrdir.BzrDirMetaFormat1())
1371
1210
        co_branch.bind(repo_branch)
1372
1211
        # Do a light checkout of the heavy one
1373
1212
        transport.mkdir('tree/lightcheckout')
1374
 
        lco_dir = bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1375
 
        lco_dir.set_branch_reference(co_branch)
 
1213
        lco_dir = bzrlib.bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
 
1214
        bzrlib.branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
1376
1215
        lco_dir.create_workingtree()
1377
1216
        lco_tree = lco_dir.open_workingtree()
1378
1217
 
1380
1219
        # W B R
1381
1220
 
1382
1221
        # U U U
1383
 
        self.assertCheckoutStatusOutput('-v tree/lightcheckout', lco_tree,
1384
 
                                        repo_branch=repo_branch,
1385
 
                                        verbose=True, light_checkout=True)
 
1222
        self.assertCheckoutStatusOutput('tree/lightcheckout', lco_tree)
1386
1223
        # U U L
1387
1224
        lco_tree.branch.repository.lock_write()
1388
1225
        try:
1389
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1390
 
            lco_tree, repo_branch=repo_branch,
1391
 
            repo_locked=True, verbose=True, light_checkout=True)
 
1226
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1227
            lco_tree,
 
1228
            repo_locked=True)
1392
1229
        finally:
1393
1230
            lco_tree.branch.repository.unlock()
1394
1231
        # U L L
1395
1232
        lco_tree.branch.lock_write()
1396
1233
        try:
1397
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
 
1234
            self.assertCheckoutStatusOutput('tree/lightcheckout',
1398
1235
            lco_tree,
1399
1236
            branch_locked=True,
1400
 
            repo_locked=True,
1401
 
            repo_branch=repo_branch,
1402
 
            verbose=True)
 
1237
            repo_locked=True)
1403
1238
        finally:
1404
1239
            lco_tree.branch.unlock()
1405
1240
        # L L L
1406
1241
        lco_tree.lock_write()
1407
1242
        try:
1408
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1409
 
            lco_tree, repo_branch=repo_branch,
 
1243
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1244
            lco_tree,
1410
1245
            tree_locked=True,
1411
1246
            branch_locked=True,
1412
 
            repo_locked=True,
1413
 
            verbose=True)
 
1247
            repo_locked=True)
1414
1248
        finally:
1415
1249
            lco_tree.unlock()
1416
1250
        # L L U
1417
1251
        lco_tree.lock_write()
1418
1252
        lco_tree.branch.repository.unlock()
1419
1253
        try:
1420
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1421
 
            lco_tree, repo_branch=repo_branch,
 
1254
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1255
            lco_tree,
1422
1256
            tree_locked=True,
1423
 
            branch_locked=True,
1424
 
            verbose=True)
 
1257
            branch_locked=True)
1425
1258
        finally:
1426
1259
            lco_tree.branch.repository.lock_write()
1427
1260
            lco_tree.unlock()
1429
1262
        lco_tree.lock_write()
1430
1263
        lco_tree.branch.unlock()
1431
1264
        try:
1432
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1433
 
            lco_tree, repo_branch=repo_branch,
1434
 
            tree_locked=True,
1435
 
            verbose=True)
 
1265
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1266
            lco_tree,
 
1267
            tree_locked=True)
1436
1268
        finally:
1437
1269
            lco_tree.branch.lock_write()
1438
1270
            lco_tree.unlock()
1441
1273
        lco_tree.branch.unlock()
1442
1274
        lco_tree.branch.repository.lock_write()
1443
1275
        try:
1444
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1445
 
            lco_tree, repo_branch=repo_branch,
 
1276
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1277
            lco_tree,
1446
1278
            tree_locked=True,
1447
 
            repo_locked=True,
1448
 
            verbose=True)
 
1279
            repo_locked=True)
1449
1280
        finally:
1450
1281
            lco_tree.branch.repository.unlock()
1451
1282
            lco_tree.branch.lock_write()
1454
1285
        lco_tree.branch.lock_write()
1455
1286
        lco_tree.branch.repository.unlock()
1456
1287
        try:
1457
 
            self.assertCheckoutStatusOutput('-v tree/lightcheckout',
1458
 
            lco_tree, repo_branch=repo_branch,
1459
 
            branch_locked=True,
1460
 
            verbose=True)
 
1288
            self.assertCheckoutStatusOutput('tree/lightcheckout',
 
1289
            lco_tree,
 
1290
            branch_locked=True)
1461
1291
        finally:
1462
1292
            lco_tree.branch.repository.lock_write()
1463
1293
            lco_tree.branch.unlock()
1466
1296
            self.knownFailure('Win32 cannot run "bzr info"'
1467
1297
                              ' when the tree is locked.')
1468
1298
 
1469
 
    def test_info_stacked(self):
1470
 
        # We have a mainline
1471
 
        trunk_tree = self.make_branch_and_tree('mainline',
1472
 
            format='1.6')
1473
 
        trunk_tree.commit('mainline')
1474
 
        # and a branch from it which is stacked
1475
 
        new_dir = trunk_tree.bzrdir.sprout('newbranch', stacked=True)
1476
 
        out, err = self.run_bzr('info newbranch')
1477
 
        self.assertEqual(
1478
 
"""Standalone tree (format: 1.6)
1479
 
Location:
1480
 
  branch root: newbranch
1481
 
 
1482
 
Related branches:
1483
 
  parent branch: mainline
1484
 
     stacked on: mainline
1485
 
""", out)
1486
 
        self.assertEqual("", err)
1487
 
 
1488
 
    def test_info_revinfo_optional(self):
1489
 
        tree = self.make_branch_and_tree('.')
1490
 
        def last_revision_info(self):
1491
 
            raise errors.UnsupportedOperation(last_revision_info, self)
1492
 
        self.overrideAttr(
1493
 
            branch.Branch, "last_revision_info", last_revision_info)
1494
 
        out, err = self.run_bzr('info -v .')
1495
 
        self.assertEqual(
1496
 
"""Standalone tree (format: 2a)
1497
 
Location:
1498
 
  branch root: .
1499
 
 
1500
 
Format:
1501
 
       control: Meta directory format 1
1502
 
  working tree: Working tree format 6
1503
 
        branch: Branch format 7
1504
 
    repository: Repository format 2a - rich roots, group compression and chk inventories
1505
 
 
1506
 
Control directory:
1507
 
         1 branches
1508
 
 
1509
 
In the working tree:
1510
 
         0 unchanged
1511
 
         0 modified
1512
 
         0 added
1513
 
         0 removed
1514
 
         0 renamed
1515
 
         0 unknown
1516
 
         0 ignored
1517
 
         0 versioned subdirectories
1518
 
""", out)
1519
 
        self.assertEqual("", err)
1520
 
 
1521
 
    def test_info_shows_colocated_branches(self):
1522
 
        bzrdir = self.make_branch('.', format='development-colo').bzrdir
1523
 
        bzrdir.create_branch(name="colo1")
1524
 
        bzrdir.create_branch(name="colo2")
1525
 
        bzrdir.create_branch(name="colo3")
1526
 
        out, err = self.run_bzr('info -v .')
1527
 
        self.assertEqualDiff(
1528
 
"""Standalone branch (format: development-colo)
1529
 
Location:
1530
 
  branch root: .
1531
 
 
1532
 
Format:
1533
 
       control: Meta directory format 1 with support for colocated branches
1534
 
        branch: Branch format 7
1535
 
    repository: Repository format 2a - rich roots, group compression and chk inventories
1536
 
 
1537
 
Control directory:
1538
 
         4 branches
1539
 
 
1540
 
Branch history:
1541
 
         0 revisions
1542
 
 
1543
 
Repository:
1544
 
         0 revisions
1545
 
""", out)
1546
 
        self.assertEqual("", err)
1547
 
 
1548
 
 
1549
 
class TestSmartServerInfo(tests.TestCaseWithTransport):
1550
 
 
1551
 
    def test_simple_branch_info(self):
1552
 
        self.setup_smart_server_with_call_log()
1553
 
        t = self.make_branch_and_tree('branch')
1554
 
        self.build_tree_contents([('branch/foo', 'thecontents')])
1555
 
        t.add("foo")
1556
 
        t.commit("message")
1557
 
        self.reset_smart_call_log()
1558
 
        out, err = self.run_bzr(['info', self.get_url('branch')])
1559
 
        # This figure represent the amount of work to perform this use case. It
1560
 
        # is entirely ok to reduce this number if a test fails due to rpc_count
1561
 
        # being too low. If rpc_count increases, more network roundtrips have
1562
 
        # become necessary for this use case. Please do not adjust this number
1563
 
        # upwards without agreement from bzr's network support maintainers.
1564
 
        self.assertLength(10, self.hpss_calls)
1565
 
        self.assertLength(1, self.hpss_connections)
1566
 
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
1567
 
 
1568
 
    def test_verbose_branch_info(self):
1569
 
        self.setup_smart_server_with_call_log()
1570
 
        t = self.make_branch_and_tree('branch')
1571
 
        self.build_tree_contents([('branch/foo', 'thecontents')])
1572
 
        t.add("foo")
1573
 
        t.commit("message")
1574
 
        self.reset_smart_call_log()
1575
 
        out, err = self.run_bzr(['info', '-v', self.get_url('branch')])
1576
 
        # This figure represent the amount of work to perform this use case. It
1577
 
        # is entirely ok to reduce this number if a test fails due to rpc_count
1578
 
        # being too low. If rpc_count increases, more network roundtrips have
1579
 
        # become necessary for this use case. Please do not adjust this number
1580
 
        # upwards without agreement from bzr's network support maintainers.
1581
 
        self.assertLength(14, self.hpss_calls)
1582
 
        self.assertLength(1, self.hpss_connections)
1583
 
        self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
 
1299
    def test_info_locking_oslocks(self):
 
1300
        if sys.platform == "win32":
 
1301
            raise TestSkipped("don't use oslocks on win32 in unix manner")
 
1302
 
 
1303
        tree = self.make_branch_and_tree('branch',
 
1304
                                         format=bzrlib.bzrdir.BzrDirFormat6())
 
1305
 
 
1306
        # Test all permutations of locking the working tree, branch and repository
 
1307
        # XXX: Well not yet, as we can't query oslocks yet. Currently, it's
 
1308
        # implemented by raising NotImplementedError and get_physical_lock_status()
 
1309
        # always returns false. This makes bzr info hide the lock status.  (Olaf)
 
1310
        # W B R
 
1311
 
 
1312
        # U U U
 
1313
        out, err = self.runbzr('info branch')
 
1314
        self.assertEqualDiff(
 
1315
"""Location:
 
1316
  branch root: %s
 
1317
 
 
1318
Format:
 
1319
       control: All-in-one format 6
 
1320
  working tree: Working tree format 2
 
1321
        branch: Branch format 4
 
1322
    repository: %s
 
1323
 
 
1324
In the working tree:
 
1325
         0 unchanged
 
1326
         0 modified
 
1327
         0 added
 
1328
         0 removed
 
1329
         0 renamed
 
1330
         0 unknown
 
1331
         0 ignored
 
1332
         0 versioned subdirectories
 
1333
 
 
1334
Branch history:
 
1335
         0 revisions
 
1336
 
 
1337
Repository:
 
1338
         0 revisions
 
1339
         0 KiB
 
1340
""" % (tree.bzrdir.root_transport.base,
 
1341
       tree.branch.repository._format.get_format_description(),
 
1342
       ), out)
 
1343
        self.assertEqual('', err)
 
1344
        # L L L
 
1345
        tree.lock_write()
 
1346
        out, err = self.runbzr('info branch')
 
1347
        self.assertEqualDiff(
 
1348
"""Location:
 
1349
  branch root: %s
 
1350
 
 
1351
Format:
 
1352
       control: All-in-one format 6
 
1353
  working tree: Working tree format 2
 
1354
        branch: Branch format 4
 
1355
    repository: %s
 
1356
 
 
1357
In the working tree:
 
1358
         0 unchanged
 
1359
         0 modified
 
1360
         0 added
 
1361
         0 removed
 
1362
         0 renamed
 
1363
         0 unknown
 
1364
         0 ignored
 
1365
         0 versioned subdirectories
 
1366
 
 
1367
Branch history:
 
1368
         0 revisions
 
1369
 
 
1370
Repository:
 
1371
         0 revisions
 
1372
         0 KiB
 
1373
""" % (tree.bzrdir.root_transport.base,
 
1374
       tree.branch.repository._format.get_format_description(),
 
1375
       ), out)
 
1376
        self.assertEqual('', err)
 
1377
        tree.unlock()