~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2007-06-26 20:32:49 UTC
  • mto: (2581.1.1 cleanup-runbzr)
  • mto: This revision was merged to the branch mainline in revision 2588.
  • Revision ID: v.ladeuil+lp@free.fr-20070626203249-sqm4afiai5dxofum
Deprecate the varargs syntax and fix the tests.

* bzrlib/tests/__init__.py:
(TestCase.run_bzr): Activate the deprecation warning.
(TestCase.run_bzr_error): Add error_regexes to kwargs or run_bzr
get confused.

* bzrlib/tests/blackbox/test_selftest.py:
(TestRunBzr.test_args): Activate.

* bzrlib/tests/blackbox/test_inventory.py:
(TestInventory.assertInventoryEqual): Build the command from args
if not None.

* bzrlib/tests/blackbox/test_ls.py:
(TestLS.ls_equals): Build the command from args if not None.

* bzrlib/tests/blackbox/test_remove_tree.py:
(TestRemoveTree.test_remove_tree_lightweight_checkout_explicit):
Nice catch, we were calling run_bzr instead of run_bzr_error. This
went unnoticed for some time...

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
    def test_update_up_to_date_checkout(self):
51
51
        self.make_branch_and_tree('branch')
52
 
        self.run_bzr('checkout', 'branch', 'checkout')
53
 
        out, err = self.run_bzr('update', 'checkout')
 
52
        self.run_bzr('checkout branch checkout')
 
53
        out, err = self.run_bzr('update checkout')
54
54
        self.assertEqual('Tree is up to date at revision 0.\n', err)
55
55
        self.assertEqual('', out)
56
56
 
115
115
        # branch with local commits.
116
116
        master = self.make_branch_and_tree('master')
117
117
        # make a bound branch
118
 
        self.run_bzr('checkout', 'master', 'child')
 
118
        self.run_bzr('checkout master child')
119
119
        # get an object form of child
120
120
        child = WorkingTree.open('child')
121
121
        # check that out
122
 
        self.run_bzr('checkout', '--lightweight', 'child', 'checkout')
 
122
        self.run_bzr('checkout --lightweight child checkout')
123
123
        # get an object form of the checkout to manipulate
124
124
        wt = WorkingTree.open('checkout')
125
125
        # change master
142
142
 
143
143
        # now, update checkout ->
144
144
        # get all three files and a pending merge.
145
 
        out, err = self.run_bzr('update', 'checkout')
 
145
        out, err = self.run_bzr('update checkout')
146
146
        self.assertEqual('', out)
147
147
        self.assertContainsRe(err, 'Updated to revision 1.\n'
148
148
                                   'Your local commits will now show as'
180
180
 
181
181
        # Merge the other branch into checkout
182
182
        os.chdir('checkout1')
183
 
        self.run_bzr('merge', '../other')
 
183
        self.run_bzr('merge ../other')
184
184
 
185
185
        self.assertEqual(['o2'], checkout1.get_parent_ids()[1:])
186
186
 
187
187
        # At this point, 'commit' should fail, because we are out of date
188
188
        self.run_bzr_error(["please run 'bzr update'"],
189
 
                           'commit', '-m', 'merged')
 
189
                           'commit -m merged')
190
190
 
191
191
        # This should not report about local commits being pending
192
192
        # merges, because they were real merges