/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

Merge with serialize-transform

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
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
 
16
 
 
17
 
 
18
from bzrlib import (
 
19
    errors,
 
20
    revision as _mod_revision,
 
21
    )
 
22
from bzrlib.tests.branch_implementations.test_branch import TestCaseWithBranch
 
23
 
 
24
 
 
25
"""Tests for branch.update()"""
 
26
 
 
27
 
 
28
class TestUpdate(TestCaseWithBranch):
 
29
 
 
30
    def test_update_unbound_works(self):
 
31
        b = self.make_branch('.')
 
32
        b.update()
 
33
        self.assertEqual(_mod_revision.NULL_REVISION,
 
34
                         _mod_revision.ensure_null(b.last_revision()))
 
35
 
 
36
    def test_update_prefix_returns_none(self):
 
37
        # update in a branch when its a prefix of the master should
 
38
        # indicate that no local changes were present.
 
39
        master_tree = self.make_branch_and_tree('master')
 
40
        child_tree = self.make_branch_and_tree('child')
 
41
        try:
 
42
            child_tree.branch.bind(master_tree.branch)
 
43
        except errors.UpgradeRequired:
 
44
            # old branch, cant test.
 
45
            return
 
46
        # commit to the child to make the last rev not-None.
 
47
        child_tree.commit('foo', rev_id='foo', allow_pointless=True)
 
48
        # update the master so we can commit there.
 
49
        master_tree.update()
 
50
        # commit to the master making the child tree out of date and a prefix.
 
51
        master_tree.commit('bar', rev_id='bar', allow_pointless=True)
 
52
        self.assertEqual(None, child_tree.branch.update())
 
53
 
 
54
    def test_update_local_commits_returns_old_tip(self):
 
55
        # update in a branch when its not a prefix of the master should
 
56
        # return the previous tip and reset the revision history.
 
57
        master_tree = self.make_branch_and_tree('master')
 
58
        child_tree = self.make_branch_and_tree('child')
 
59
        try:
 
60
            child_tree.branch.bind(master_tree.branch)
 
61
        except errors.UpgradeRequired:
 
62
            # old branch, cant test.
 
63
            return
 
64
        # commit to the child to make the last rev not-None and skew it from master.
 
65
        child_tree.commit('foo', rev_id='foo', allow_pointless=True, local=True)
 
66
        # commit to the master making the child tree out of date and not a prefix.
 
67
        master_tree.commit('bar', rev_id='bar', allow_pointless=True)
 
68
        self.assertEqual('foo', child_tree.branch.update())
 
69
        self.assertEqual(['bar'], child_tree.branch.revision_history())
 
70
 
 
71
 
 
72
class TestUpdateRevisions(TestCaseWithBranch):
 
73
 
 
74
    def test_accepts_graph(self):
 
75
        # An implementation may not use it, but it should allow a 'graph' to be
 
76
        # supplied
 
77
        tree1 = self.make_branch_and_tree('tree1')
 
78
        rev1 = tree1.commit('one')
 
79
        tree2 = tree1.bzrdir.sprout('tree2').open_workingtree()
 
80
        rev2 = tree2.commit('two')
 
81
 
 
82
        tree1.lock_write()
 
83
        self.addCleanup(tree1.unlock)
 
84
        tree2.lock_read()
 
85
        self.addCleanup(tree2.unlock)
 
86
        graph = tree2.branch.repository.get_graph(tree1.branch.repository)
 
87
 
 
88
        tree1.branch.update_revisions(tree2.branch, graph=graph)
 
89
        self.assertEqual((2, rev2), tree1.branch.last_revision_info())
 
90
 
 
91
    def test_overwrite_ignores_diverged(self):
 
92
        tree1 = self.make_branch_and_tree('tree1')
 
93
        rev1 = tree1.commit('one')
 
94
        tree2 = tree1.bzrdir.sprout('tree2').open_workingtree()
 
95
        rev2 = tree1.commit('two')
 
96
        rev2b = tree2.commit('alt two')
 
97
 
 
98
        self.assertRaises(errors.DivergedBranches,
 
99
                          tree1.branch.update_revisions,
 
100
                          tree2.branch, overwrite=False)
 
101
        # However, the revision should be copied into the repository
 
102
        self.assertTrue(tree1.branch.repository.has_revision(rev2b))
 
103
 
 
104
        tree1.branch.update_revisions(tree2.branch, overwrite=True)
 
105
        self.assertEqual((2, rev2b), tree1.branch.last_revision_info())
 
106
 
 
107
    def test_ignores_older_unless_overwrite(self):
 
108
        tree1 = self.make_branch_and_tree('tree1')
 
109
        rev1 = tree1.commit('one')
 
110
        tree2 = tree1.bzrdir.sprout('tree2').open_workingtree()
 
111
        rev2 = tree1.commit('two')
 
112
 
 
113
        tree1.branch.update_revisions(tree2.branch)
 
114
        self.assertEqual((2, rev2), tree1.branch.last_revision_info())
 
115
 
 
116
        tree1.branch.update_revisions(tree2.branch, overwrite=True)
 
117
        self.assertEqual((1, rev1), tree1.branch.last_revision_info())