~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2012-02-14 17:22:37 UTC
  • mfrom: (6466 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120214172237-7dv7er3n4uy8d5m4
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
        self.assertEqual(['1'], result.open_workingtree().get_parent_ids())
77
77
        self.assertPathDoesNotExist('checkout/added_in_2')
78
78
 
 
79
    def test_checkout_into_empty_dir(self):
 
80
        self.make_bzrdir('checkout')
 
81
        out, err = self.run_bzr(['checkout', 'branch', 'checkout'])
 
82
        result = bzrdir.BzrDir.open('checkout')
 
83
        tree = result.open_workingtree()
 
84
        branch = result.open_branch()
 
85
 
79
86
    def test_checkout_reconstitutes_working_trees(self):
80
87
        # doing a 'bzr checkout' in the directory of a branch with no tree
81
88
        # or a 'bzr checkout path' with path the name of a directory with
169
176
        target_stat = os.stat('target/file1')
170
177
        self.assertEqual(second_stat, target_stat)
171
178
 
 
179
    def test_colo_checkout(self):
 
180
        source = self.make_branch_and_tree('source', format='development-colo')
 
181
        self.build_tree(['source/file1'])
 
182
        source.add('file1')
 
183
        source.commit('added file')
 
184
        target = source.bzrdir.sprout('file:second,branch=somebranch',
 
185
            create_tree_if_local=False)
 
186
        out, err = self.run_bzr('checkout file:,branch=somebranch .',
 
187
            working_dir='second')
 
188
        # We should always be creating a lighweight checkout for colocated
 
189
        # branches.
 
190
        self.assertEquals(
 
191
            target.open_branch(name='somebranch').base,
 
192
            target.get_branch_reference(name=""))
 
193
 
172
194
 
173
195
class TestSmartServerCheckout(TestCaseWithTransport):
174
196