~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-09-01 08:02:42 UTC
  • mfrom: (5390.3.3 faster-revert-593560)
  • Revision ID: pqm@pqm.ubuntu.com-20100901080242-esg62ody4frwmy66
(spiv) Avoid repeatedly calling self.target.all_file_ids() in
 InterTree.iter_changes. (Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
 
18
18
"""Tests for the info command of bzr."""
25
25
    errors,
26
26
    info,
27
27
    osutils,
 
28
    tests,
28
29
    upgrade,
29
30
    urlutils,
30
31
    )
31
 
from bzrlib.osutils import format_date
32
 
from bzrlib.tests import TestSkipped
33
 
from bzrlib.tests.blackbox import ExternalBase
34
 
 
35
 
 
36
 
class TestInfo(ExternalBase):
 
32
from bzrlib.transport import memory
 
33
 
 
34
 
 
35
class TestInfo(tests.TestCaseWithTransport):
 
36
 
 
37
    def setUp(self):
 
38
        super(TestInfo, self).setUp()
 
39
        self._repo_strings = "2a"
37
40
 
38
41
    def test_info_non_existing(self):
39
 
        if sys.platform == "win32":
40
 
            location = "C:/i/do/not/exist/"
41
 
        else:
42
 
            location = "/i/do/not/exist/"
 
42
        self.vfs_transport_factory = memory.MemoryServer
 
43
        location = self.get_url()
43
44
        out, err = self.run_bzr('info '+location, retcode=3)
44
45
        self.assertEqual(out, '')
45
46
        self.assertEqual(err, 'bzr: ERROR: Not a branch: "%s".\n' % location)
61
62
""", out)
62
63
        self.assertEqual('', err)
63
64
 
 
65
        # Standalone branch - verbose mode
64
66
        out, err = self.run_bzr('info standalone -v')
65
67
        self.assertEqualDiff(
66
68
"""Standalone tree (format: weave)
85
87
 
86
88
Branch history:
87
89
         0 revisions
 
90
 
 
91
Repository:
 
92
         0 revisions
 
93
""", out)
 
94
        self.assertEqual('', err)
 
95
 
 
96
        # Standalone branch - really verbose mode
 
97
        out, err = self.run_bzr('info standalone -vv')
 
98
        self.assertEqualDiff(
 
99
"""Standalone tree (format: weave)
 
100
Location:
 
101
  branch root: standalone
 
102
 
 
103
Format:
 
104
       control: All-in-one format 6
 
105
  working tree: Working tree format 2
 
106
        branch: Branch format 4
 
107
    repository: Weave repository format 6
 
108
 
 
109
In the working tree:
 
110
         0 unchanged
 
111
         0 modified
 
112
         1 added
 
113
         0 removed
 
114
         0 renamed
 
115
         0 unknown
 
116
         0 ignored
 
117
         0 versioned subdirectories
 
118
 
 
119
Branch history:
 
120
         0 revisions
88
121
         0 committers
89
122
 
90
123
Repository:
93
126
        self.assertEqual('', err)
94
127
        tree1.commit('commit one')
95
128
        rev = branch1.repository.get_revision(branch1.revision_history()[0])
96
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
129
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
97
130
 
98
131
        # Branch standalone with push location
99
132
        branch2 = branch1.bzrdir.sprout('branch').open_branch()
139
172
 
140
173
Branch history:
141
174
         1 revision
142
 
         1 committer
143
175
         0 days old
144
176
   first revision: %s
145
177
  latest revision: %s
180
212
         0 added
181
213
         0 removed
182
214
         0 renamed
183
 
         1 unknown
184
 
         0 ignored
 
215
         0 unknown
 
216
         1 ignored
185
217
         0 versioned subdirectories
186
218
 
187
219
Branch history:
188
220
         1 revision
189
 
         1 committer
190
221
         0 days old
191
222
   first revision: %s
192
223
  latest revision: %s
230
261
 
231
262
Branch history:
232
263
         1 revision
233
 
         1 committer
234
264
         0 days old
235
265
   first revision: %s
236
266
  latest revision: %s
247
277
        branch5 = tree5.branch
248
278
        out, err = self.run_bzr('info -v lightcheckout')
249
279
        self.assertEqualDiff(
250
 
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root \
251
 
or 1.9 or 1.9-rich-root \
252
 
or dirstate or dirstate-tags or \
253
 
pack-0.92 or rich-root or rich-root-pack)
 
280
"""Lightweight checkout (format: %s)
254
281
Location:
255
282
  light checkout root: lightcheckout
256
283
   checkout of branch: standalone
257
284
 
258
285
Format:
259
286
       control: Meta directory format 1
260
 
  working tree: Working tree format 4
 
287
  working tree: Working tree format 6
261
288
        branch: Branch format 4
262
289
    repository: Weave repository format 6
263
290
 
273
300
 
274
301
Branch history:
275
302
         1 revision
276
 
         1 committer
277
303
         0 days old
278
304
   first revision: %s
279
305
  latest revision: %s
280
306
 
281
307
Repository:
282
308
         1 revision
283
 
""" % (datestring_first, datestring_first,), out)
 
309
""" % (self._repo_strings, datestring_first, datestring_first,), out)
284
310
        self.assertEqual('', err)
285
311
 
286
312
        # Update initial standalone branch
288
314
        tree1.add('b')
289
315
        tree1.commit('commit two')
290
316
        rev = branch1.repository.get_revision(branch1.revision_history()[-1])
291
 
        datestring_last = format_date(rev.timestamp, rev.timezone)
 
317
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
292
318
 
293
319
        # Out of date branched standalone branch will not be detected
294
320
        out, err = self.run_bzr('info -v branch')
319
345
 
320
346
Branch history:
321
347
         1 revision
322
 
         1 committer
323
348
         0 days old
324
349
   first revision: %s
325
350
  latest revision: %s
355
380
         0 added
356
381
         0 removed
357
382
         0 renamed
358
 
         1 unknown
359
 
         0 ignored
 
383
         0 unknown
 
384
         1 ignored
360
385
         0 versioned subdirectories
361
386
 
362
387
Branch history:
363
388
         1 revision
364
 
         1 committer
365
389
         0 days old
366
390
   first revision: %s
367
391
  latest revision: %s
401
425
 
402
426
Branch history:
403
427
         1 revision
404
 
         1 committer
405
428
         0 days old
406
429
   first revision: %s
407
430
  latest revision: %s
416
439
        # Out of date lightweight checkout
417
440
        out, err = self.run_bzr('info lightcheckout --verbose')
418
441
        self.assertEqualDiff(
419
 
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
420
 
1.9 or 1.9-rich-root or \
421
 
dirstate or dirstate-tags or \
422
 
pack-0.92 or rich-root or rich-root-pack)
 
442
"""Lightweight checkout (format: %s)
423
443
Location:
424
444
  light checkout root: lightcheckout
425
445
   checkout of branch: standalone
426
446
 
427
447
Format:
428
448
       control: Meta directory format 1
429
 
  working tree: Working tree format 4
 
449
  working tree: Working tree format 6
430
450
        branch: Branch format 4
431
451
    repository: Weave repository format 6
432
452
 
444
464
 
445
465
Branch history:
446
466
         2 revisions
447
 
         1 committer
448
467
         0 days old
449
468
   first revision: %s
450
469
  latest revision: %s
451
470
 
452
471
Repository:
453
472
         2 revisions
454
 
""" % (datestring_first, datestring_last,), out)
 
473
""" % (self._repo_strings, datestring_first, datestring_last,), out)
455
474
        self.assertEqual('', err)
456
475
 
457
476
    def test_info_standalone_no_tree(self):
472
491
 
473
492
Branch history:
474
493
         0 revisions
475
 
         0 committers
476
494
 
477
495
Repository:
478
496
         0 revisions
523
541
 
524
542
Branch history:
525
543
         0 revisions
526
 
         0 committers
527
544
 
528
545
Repository:
529
546
         0 revisions
535
552
        # Create lightweight checkout
536
553
        transport.mkdir('tree')
537
554
        transport.mkdir('tree/lightcheckout')
538
 
        tree2 = branch1.create_checkout('tree/lightcheckout', 
 
555
        tree2 = branch1.create_checkout('tree/lightcheckout',
539
556
            lightweight=True)
540
557
        branch2 = tree2.branch
541
558
        self.assertCheckoutStatusOutput('-v tree/lightcheckout', tree2,
551
568
        tree2.add('a')
552
569
        tree2.commit('commit one')
553
570
        rev = repo.get_revision(branch2.revision_history()[0])
554
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
571
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
555
572
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
556
573
        self.assertEqualDiff(
557
 
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
558
 
1.9 or 1.9-rich-root or \
559
 
dirstate or dirstate-tags or \
560
 
pack-0.92 or rich-root or rich-root-pack)
 
574
"""Lightweight checkout (format: %s)
561
575
Location:
562
576
  light checkout root: tree/lightcheckout
563
577
   checkout of branch: repo/branch
565
579
 
566
580
Format:
567
581
       control: Meta directory format 1
568
 
  working tree: Working tree format 4
 
582
  working tree: Working tree format 6
569
583
        branch: %s
570
584
    repository: %s
571
585
 
581
595
 
582
596
Branch history:
583
597
         1 revision
584
 
         1 committer
585
598
         0 days old
586
599
   first revision: %s
587
600
  latest revision: %s
588
601
 
589
602
Repository:
590
603
         1 revision
591
 
""" % (format.get_branch_format().get_format_description(),
 
604
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
592
605
       format.repository_format.get_format_description(),
593
606
       datestring_first, datestring_first,
594
607
       ), out)
597
610
        # Out of date checkout
598
611
        out, err = self.run_bzr('info -v tree/checkout')
599
612
        self.assertEqualDiff(
600
 
"""Checkout (format: dirstate)
 
613
"""Checkout (format: unnamed)
601
614
Location:
602
615
       checkout root: tree/checkout
603
616
  checkout of branch: repo/branch
604
617
 
605
618
Format:
606
619
       control: Meta directory format 1
607
 
  working tree: Working tree format 4
 
620
  working tree: Working tree format 6
608
621
        branch: %s
609
622
    repository: %s
610
623
 
622
635
 
623
636
Branch history:
624
637
         0 revisions
625
 
         0 committers
626
638
 
627
639
Repository:
628
640
         0 revisions
637
649
        tree3.add('b')
638
650
        out, err = self.run_bzr('info tree/checkout --verbose')
639
651
        self.assertEqualDiff(
640
 
"""Checkout (format: dirstate)
 
652
"""Checkout (format: unnamed)
641
653
Location:
642
654
       checkout root: tree/checkout
643
655
  checkout of branch: repo/branch
644
656
 
645
657
Format:
646
658
       control: Meta directory format 1
647
 
  working tree: Working tree format 4
 
659
  working tree: Working tree format 6
648
660
        branch: %s
649
661
    repository: %s
650
662
 
660
672
 
661
673
Branch history:
662
674
         1 revision
663
 
         1 committer
664
675
         0 days old
665
676
   first revision: %s
666
677
  latest revision: %s
676
687
 
677
688
        # Out of date lightweight checkout
678
689
        rev = repo.get_revision(branch1.revision_history()[-1])
679
 
        datestring_last = format_date(rev.timestamp, rev.timezone)
 
690
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
680
691
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
681
692
        self.assertEqualDiff(
682
 
"""Lightweight checkout (format: 1.6 or 1.6.1-rich-root or \
683
 
1.9 or 1.9-rich-root or \
684
 
dirstate or dirstate-tags or \
685
 
pack-0.92 or rich-root or rich-root-pack)
 
693
"""Lightweight checkout (format: %s)
686
694
Location:
687
695
  light checkout root: tree/lightcheckout
688
696
   checkout of branch: repo/branch
690
698
 
691
699
Format:
692
700
       control: Meta directory format 1
693
 
  working tree: Working tree format 4
 
701
  working tree: Working tree format 6
694
702
        branch: %s
695
703
    repository: %s
696
704
 
708
716
 
709
717
Branch history:
710
718
         2 revisions
711
 
         1 committer
712
719
         0 days old
713
720
   first revision: %s
714
721
  latest revision: %s
715
722
 
716
723
Repository:
717
724
         2 revisions
718
 
""" % (format.get_branch_format().get_format_description(),
 
725
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
719
726
       format.repository_format.get_format_description(),
720
727
       datestring_first, datestring_last,
721
728
       ), out)
736
743
 
737
744
Branch history:
738
745
         2 revisions
739
 
         1 committer
740
746
         0 days old
741
747
   first revision: %s
742
748
  latest revision: %s
823
829
 
824
830
Branch history:
825
831
         0 revisions
826
 
         0 committers
827
832
 
828
833
Repository:
829
834
         0 revisions
838
843
        tree1.add('a')
839
844
        tree1.commit('commit one')
840
845
        rev = repo.get_revision(branch1.revision_history()[0])
841
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
846
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
842
847
        out, err = self.run_bzr('info -v repo/branch1')
843
848
        self.assertEqualDiff(
844
849
"""Repository tree (format: knit)
864
869
 
865
870
Branch history:
866
871
         1 revision
867
 
         1 committer
868
872
         0 days old
869
873
   first revision: %s
870
874
  latest revision: %s
906
910
 
907
911
Branch history:
908
912
         0 revisions
909
 
         0 committers
910
913
 
911
914
Repository:
912
915
         1 revision
946
949
 
947
950
Branch history:
948
951
         1 revision
949
 
         1 committer
950
952
         0 days old
951
953
   first revision: %s
952
954
  latest revision: %s
978
980
       ),
979
981
       out)
980
982
        self.assertEqual('', err)
981
 
    
 
983
 
982
984
    def test_info_shared_repository_with_tree_in_root(self):
983
985
        format = bzrdir.format_registry.make_bzrdir('knit')
984
986
        transport = self.get_transport()
1033
1035
 
1034
1036
Branch history:
1035
1037
         0 revisions
1036
 
         0 committers
1037
1038
 
1038
1039
Repository:
1039
1040
         0 revisions
1042
1043
       ), out)
1043
1044
        self.assertEqual('', err)
1044
1045
 
 
1046
    def test_info_repository_hook(self):
 
1047
        format = bzrdir.format_registry.make_bzrdir('knit')
 
1048
        def repo_info(repo, stats, outf):
 
1049
            outf.write("more info\n")
 
1050
        info.hooks.install_named_hook('repository', repo_info, None)
 
1051
        # Create shared repository with working trees
 
1052
        repo = self.make_repository('repo', shared=True, format=format)
 
1053
        out, err = self.run_bzr('info -v repo')
 
1054
        self.assertEqualDiff(
 
1055
"""Shared repository with trees (format: dirstate or dirstate-tags or knit)
 
1056
Location:
 
1057
  shared repository: repo
 
1058
 
 
1059
Format:
 
1060
       control: Meta directory format 1
 
1061
    repository: %s
 
1062
 
 
1063
Create working tree for new branches inside the repository.
 
1064
 
 
1065
Repository:
 
1066
         0 revisions
 
1067
more info
 
1068
""" % (format.repository_format.get_format_description(),
 
1069
       ), out)
 
1070
        self.assertEqual('', err)
 
1071
 
1045
1072
    def assertCheckoutStatusOutput(self,
1046
1073
        command_string, lco_tree, shared_repo=None,
1047
1074
        repo_branch=None,
1057
1084
        allow us, the test writers, to document what *should* be present in
1058
1085
        the output. Removing this separation would remove the value of the
1059
1086
        tests.
1060
 
        
 
1087
 
1061
1088
        :param path: the path to the light checkout.
1062
1089
        :param lco_tree: the tree object for the light checkout.
1063
1090
        :param shared_repo: A shared repository is in use, expect that in
1071
1098
            actually locked then this parameter is overridden. This is because
1072
1099
            pack repositories do not have any public API for obtaining an
1073
1100
            exclusive repository wide lock.
1074
 
        :param verbose: If true, expect verbose output
 
1101
        :param verbose: verbosity level: 2 or higher to show committers
1075
1102
        """
1076
1103
        def friendly_location(url):
1077
1104
            path = urlutils.unescape_for_display(url, 'ascii')
1096
1123
            (False, True): 'Lightweight checkout',
1097
1124
            (False, False): 'Checkout',
1098
1125
            }[(shared_repo is not None, light_checkout)]
1099
 
        format = {True: '1.6 or 1.6.1-rich-root'
1100
 
                        ' or 1.9 or 1.9-rich-root'
1101
 
                        ' or dirstate or dirstate-tags or pack-0.92'
1102
 
                        ' or rich-root or rich-root-pack',
1103
 
                  False: 'dirstate'}[light_checkout]
 
1126
        format = {True: self._repo_strings,
 
1127
                  False: 'unnamed'}[light_checkout]
1104
1128
        if repo_locked:
1105
1129
            repo_locked = lco_tree.branch.repository.get_physical_lock_status()
1106
1130
        if repo_locked or branch_locked or tree_locked:
1143
1167
        else:
1144
1168
            branch_data = ("   checkout of branch: %s\n" %
1145
1169
                lco_tree.branch.bzrdir.root_transport.base)
1146
 
        
1147
 
        if verbose:
 
1170
 
 
1171
        if verbose >= 2:
1148
1172
            verbose_info = '         0 committers\n'
1149
1173
        else:
1150
1174
            verbose_info = ''
1151
 
            
 
1175
 
1152
1176
        self.assertEqualDiff(
1153
1177
"""%s (format: %s)
1154
1178
Location:
1204
1228
        # Do a light checkout of the heavy one
1205
1229
        transport.mkdir('tree/lightcheckout')
1206
1230
        lco_dir = bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1207
 
        branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
 
1231
        branch.BranchReferenceFormat().initialize(lco_dir,
 
1232
            target_branch=co_branch)
1208
1233
        lco_dir.create_workingtree()
1209
1234
        lco_tree = lco_dir.open_workingtree()
1210
1235
 
1300
1325
 
1301
1326
    def test_info_locking_oslocks(self):
1302
1327
        if sys.platform == "win32":
1303
 
            raise TestSkipped("don't use oslocks on win32 in unix manner")
 
1328
            self.skip("don't use oslocks on win32 in unix manner")
 
1329
        # This test tests old (all-in-one, OS lock using) behaviour which
 
1330
        # simply cannot work on windows (and is indeed why we changed our
 
1331
        # design. As such, don't try to remove the thisFailsStrictLockCheck
 
1332
        # call here.
 
1333
        self.thisFailsStrictLockCheck()
1304
1334
 
1305
1335
        tree = self.make_branch_and_tree('branch',
1306
1336
                                         format=bzrdir.BzrDirFormat6())
1336
1366
 
1337
1367
Branch history:
1338
1368
         0 revisions
1339
 
         0 committers
1340
1369
 
1341
1370
Repository:
1342
1371
         0 revisions
1369
1398
 
1370
1399
Branch history:
1371
1400
         0 revisions
1372
 
         0 committers
1373
1401
 
1374
1402
Repository:
1375
1403
         0 revisions