1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright (C) 2007, 2009, 2010 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Tests for the Branch.create_checkout"""
from bzrlib.tests import per_branch
class TestCreateCheckout(per_branch.TestCaseWithBranch):
def test_checkout_format_lightweight(self):
"""Make sure the new light checkout uses the desired branch format."""
a_branch = self.make_branch('branch')
tree = a_branch.create_checkout('checkout', lightweight=True)
# All branches can define the format they want checkouts made in.
# This checks it is honoured.
expected_format = a_branch._get_checkout_format(lightweight=True)
self.assertEqual(expected_format.get_branch_format().__class__,
tree.branch._format.__class__)
def test_checkout_format_heavyweight(self):
"""Make sure the new heavy checkout uses the desired branch format."""
a_branch = self.make_branch('branch')
tree = a_branch.create_checkout('checkout', lightweight=False)
# All branches can define the format they want checkouts made in.
# This checks it is honoured.
expected_format = a_branch._get_checkout_format(lightweight=False)
self.assertEqual(expected_format.get_branch_format().__class__,
tree.branch._format.__class__)
def test_create_revision_checkout(self):
"""Test that we can create a checkout from an earlier revision."""
tree1 = self.make_branch_and_tree('base')
self.build_tree(['base/a'])
tree1.add(['a'], ['a-id'])
tree1.commit('first', rev_id='rev-1')
self.build_tree(['base/b'])
tree1.add(['b'], ['b-id'])
tree1.commit('second', rev_id='rev-2')
tree2 = tree1.branch.create_checkout('checkout', revision_id='rev-1')
self.assertEqual('rev-1', tree2.last_revision())
self.assertPathExists('checkout/a')
self.assertPathDoesNotExist('checkout/b')
def test_create_lightweight_checkout(self):
"""We should be able to make a lightweight checkout."""
tree1 = self.make_branch_and_tree('base')
tree2 = tree1.branch.create_checkout('checkout', lightweight=True)
self.assertNotEqual(tree1.basedir, tree2.basedir)
self.assertEqual(tree1.branch.base, tree2.branch.base)
def test_create_checkout_exists(self):
"""We shouldn't fail if the directory already exists."""
tree1 = self.make_branch_and_tree('base')
self.build_tree(['checkout/'])
tree2 = tree1.branch.create_checkout('checkout', lightweight=True)
|