~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
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)
125
126
        self.assertEqual('', err)
126
127
        tree1.commit('commit one')
127
128
        rev = branch1.repository.get_revision(branch1.revision_history()[0])
128
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
129
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
129
130
 
130
131
        # Branch standalone with push location
131
132
        branch2 = branch1.bzrdir.sprout('branch').open_branch()
211
212
         0 added
212
213
         0 removed
213
214
         0 renamed
214
 
         1 unknown
215
 
         0 ignored
 
215
         0 unknown
 
216
         1 ignored
216
217
         0 versioned subdirectories
217
218
 
218
219
Branch history:
276
277
        branch5 = tree5.branch
277
278
        out, err = self.run_bzr('info -v lightcheckout')
278
279
        self.assertEqualDiff(
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)
 
280
"""Lightweight checkout (format: %s)
283
281
Location:
284
282
  light checkout root: lightcheckout
285
283
   checkout of branch: standalone
286
284
 
287
285
Format:
288
286
       control: Meta directory format 1
289
 
  working tree: Working tree format 4
 
287
  working tree: Working tree format 6
290
288
        branch: Branch format 4
291
289
    repository: Weave repository format 6
292
290
 
308
306
 
309
307
Repository:
310
308
         1 revision
311
 
""" % (datestring_first, datestring_first,), out)
 
309
""" % (self._repo_strings, datestring_first, datestring_first,), out)
312
310
        self.assertEqual('', err)
313
311
 
314
312
        # Update initial standalone branch
316
314
        tree1.add('b')
317
315
        tree1.commit('commit two')
318
316
        rev = branch1.repository.get_revision(branch1.revision_history()[-1])
319
 
        datestring_last = format_date(rev.timestamp, rev.timezone)
 
317
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
320
318
 
321
319
        # Out of date branched standalone branch will not be detected
322
320
        out, err = self.run_bzr('info -v branch')
382
380
         0 added
383
381
         0 removed
384
382
         0 renamed
385
 
         1 unknown
386
 
         0 ignored
 
383
         0 unknown
 
384
         1 ignored
387
385
         0 versioned subdirectories
388
386
 
389
387
Branch history:
441
439
        # Out of date lightweight checkout
442
440
        out, err = self.run_bzr('info lightcheckout --verbose')
443
441
        self.assertEqualDiff(
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)
 
442
"""Lightweight checkout (format: %s)
448
443
Location:
449
444
  light checkout root: lightcheckout
450
445
   checkout of branch: standalone
451
446
 
452
447
Format:
453
448
       control: Meta directory format 1
454
 
  working tree: Working tree format 4
 
449
  working tree: Working tree format 6
455
450
        branch: Branch format 4
456
451
    repository: Weave repository format 6
457
452
 
475
470
 
476
471
Repository:
477
472
         2 revisions
478
 
""" % (datestring_first, datestring_last,), out)
 
473
""" % (self._repo_strings, datestring_first, datestring_last,), out)
479
474
        self.assertEqual('', err)
480
475
 
481
476
    def test_info_standalone_no_tree(self):
573
568
        tree2.add('a')
574
569
        tree2.commit('commit one')
575
570
        rev = repo.get_revision(branch2.revision_history()[0])
576
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
571
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
577
572
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
578
573
        self.assertEqualDiff(
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)
 
574
"""Lightweight checkout (format: %s)
583
575
Location:
584
576
  light checkout root: tree/lightcheckout
585
577
   checkout of branch: repo/branch
587
579
 
588
580
Format:
589
581
       control: Meta directory format 1
590
 
  working tree: Working tree format 4
 
582
  working tree: Working tree format 6
591
583
        branch: %s
592
584
    repository: %s
593
585
 
609
601
 
610
602
Repository:
611
603
         1 revision
612
 
""" % (format.get_branch_format().get_format_description(),
 
604
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
613
605
       format.repository_format.get_format_description(),
614
606
       datestring_first, datestring_first,
615
607
       ), out)
618
610
        # Out of date checkout
619
611
        out, err = self.run_bzr('info -v tree/checkout')
620
612
        self.assertEqualDiff(
621
 
"""Checkout (format: dirstate)
 
613
"""Checkout (format: unnamed)
622
614
Location:
623
615
       checkout root: tree/checkout
624
616
  checkout of branch: repo/branch
625
617
 
626
618
Format:
627
619
       control: Meta directory format 1
628
 
  working tree: Working tree format 4
 
620
  working tree: Working tree format 6
629
621
        branch: %s
630
622
    repository: %s
631
623
 
657
649
        tree3.add('b')
658
650
        out, err = self.run_bzr('info tree/checkout --verbose')
659
651
        self.assertEqualDiff(
660
 
"""Checkout (format: dirstate)
 
652
"""Checkout (format: unnamed)
661
653
Location:
662
654
       checkout root: tree/checkout
663
655
  checkout of branch: repo/branch
664
656
 
665
657
Format:
666
658
       control: Meta directory format 1
667
 
  working tree: Working tree format 4
 
659
  working tree: Working tree format 6
668
660
        branch: %s
669
661
    repository: %s
670
662
 
695
687
 
696
688
        # Out of date lightweight checkout
697
689
        rev = repo.get_revision(branch1.revision_history()[-1])
698
 
        datestring_last = format_date(rev.timestamp, rev.timezone)
 
690
        datestring_last = osutils.format_date(rev.timestamp, rev.timezone)
699
691
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
700
692
        self.assertEqualDiff(
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)
 
693
"""Lightweight checkout (format: %s)
705
694
Location:
706
695
  light checkout root: tree/lightcheckout
707
696
   checkout of branch: repo/branch
709
698
 
710
699
Format:
711
700
       control: Meta directory format 1
712
 
  working tree: Working tree format 4
 
701
  working tree: Working tree format 6
713
702
        branch: %s
714
703
    repository: %s
715
704
 
733
722
 
734
723
Repository:
735
724
         2 revisions
736
 
""" % (format.get_branch_format().get_format_description(),
 
725
""" % (self._repo_strings, format.get_branch_format().get_format_description(),
737
726
       format.repository_format.get_format_description(),
738
727
       datestring_first, datestring_last,
739
728
       ), out)
854
843
        tree1.add('a')
855
844
        tree1.commit('commit one')
856
845
        rev = repo.get_revision(branch1.revision_history()[0])
857
 
        datestring_first = format_date(rev.timestamp, rev.timezone)
 
846
        datestring_first = osutils.format_date(rev.timestamp, rev.timezone)
858
847
        out, err = self.run_bzr('info -v repo/branch1')
859
848
        self.assertEqualDiff(
860
849
"""Repository tree (format: knit)
1054
1043
       ), out)
1055
1044
        self.assertEqual('', err)
1056
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
 
1057
1072
    def assertCheckoutStatusOutput(self,
1058
1073
        command_string, lco_tree, shared_repo=None,
1059
1074
        repo_branch=None,
1108
1123
            (False, True): 'Lightweight checkout',
1109
1124
            (False, False): 'Checkout',
1110
1125
            }[(shared_repo is not None, light_checkout)]
1111
 
        format = {True: '1.6 or 1.6.1-rich-root'
1112
 
                        ' or 1.9 or 1.9-rich-root'
1113
 
                        ' or dirstate or dirstate-tags or pack-0.92'
1114
 
                        ' or rich-root or rich-root-pack',
1115
 
                  False: 'dirstate'}[light_checkout]
 
1126
        format = {True: self._repo_strings,
 
1127
                  False: 'unnamed'}[light_checkout]
1116
1128
        if repo_locked:
1117
1129
            repo_locked = lco_tree.branch.repository.get_physical_lock_status()
1118
1130
        if repo_locked or branch_locked or tree_locked:
1216
1228
        # Do a light checkout of the heavy one
1217
1229
        transport.mkdir('tree/lightcheckout')
1218
1230
        lco_dir = bzrdir.BzrDirMetaFormat1().initialize('tree/lightcheckout')
1219
 
        branch.BranchReferenceFormat().initialize(lco_dir, co_branch)
 
1231
        branch.BranchReferenceFormat().initialize(lco_dir,
 
1232
            target_branch=co_branch)
1220
1233
        lco_dir.create_workingtree()
1221
1234
        lco_tree = lco_dir.open_workingtree()
1222
1235
 
1312
1325
 
1313
1326
    def test_info_locking_oslocks(self):
1314
1327
        if sys.platform == "win32":
1315
 
            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()
1316
1334
 
1317
1335
        tree = self.make_branch_and_tree('branch',
1318
1336
                                         format=bzrdir.BzrDirFormat6())