~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_fetch.py

  • Committer: Martin Pool
  • Date: 2005-05-17 06:56:16 UTC
  • Revision ID: mbp@sourcefrog.net-20050517065616-6f23381d6184a8aa
- add space for un-merged patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005 by 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
 
import os
18
 
import sys
19
 
 
20
 
from bzrlib.branch import Branch
21
 
from bzrlib.builtins import merge
22
 
import bzrlib.errors
23
 
from bzrlib.fetch import greedy_fetch
24
 
from bzrlib.tests import TestCaseWithTransport
25
 
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
26
 
from bzrlib.tests.test_revision import make_branches
27
 
from bzrlib.trace import mutter
28
 
from bzrlib.workingtree import WorkingTree
29
 
 
30
 
 
31
 
def has_revision(branch, revision_id):
32
 
    try:
33
 
        branch.repository.get_revision_xml_file(revision_id)
34
 
        return True
35
 
    except bzrlib.errors.NoSuchRevision:
36
 
        return False
37
 
 
38
 
 
39
 
def fetch_steps(self, br_a, br_b, writable_a):
40
 
    """A foreign test method for testing fetch locally and remotely."""
41
 
    def new_branch(name):
42
 
        os.mkdir(name)
43
 
        return WorkingTree.create_standalone(name).branch
44
 
            
45
 
    self.assertFalse(has_revision(br_b, br_a.revision_history()[3]))
46
 
    self.assert_(has_revision(br_b, br_a.revision_history()[2]))
47
 
    self.assertEquals(len(br_b.revision_history()), 7)
48
 
    self.assertEquals(greedy_fetch(br_b, br_a, br_a.revision_history()[2])[0], 0)
49
 
 
50
 
    # greedy_fetch is not supposed to alter the revision history
51
 
    self.assertEquals(len(br_b.revision_history()), 7)
52
 
    self.assertFalse(has_revision(br_b, br_a.revision_history()[3]))
53
 
 
54
 
    self.assertEquals(len(br_b.revision_history()), 7)
55
 
    self.assertEquals(greedy_fetch(br_b, br_a, br_a.revision_history()[3])[0], 1)
56
 
    self.assert_(has_revision(br_b, br_a.revision_history()[3]))
57
 
    self.assertFalse(has_revision(br_a, br_b.revision_history()[6]))
58
 
    self.assert_(has_revision(br_a, br_b.revision_history()[5]))
59
 
 
60
 
    # When a non-branch ancestor is missing, it should be unlisted...
61
 
    # as its not reference from the inventory weave.
62
 
    br_b4 = new_branch('br_4')
63
 
    count, failures = greedy_fetch(br_b4, br_b)
64
 
    self.assertEqual(count, 7)
65
 
    self.assertEqual(failures, [])
66
 
 
67
 
    self.assertEqual(greedy_fetch(writable_a, br_b)[0], 1)
68
 
    self.assert_(has_revision(br_a, br_b.revision_history()[3]))
69
 
    self.assert_(has_revision(br_a, br_b.revision_history()[4]))
70
 
        
71
 
    br_b2 = new_branch('br_b2')
72
 
    self.assertEquals(greedy_fetch(br_b2, br_b)[0], 7)
73
 
    self.assert_(has_revision(br_b2, br_b.revision_history()[4]))
74
 
    self.assert_(has_revision(br_b2, br_a.revision_history()[2]))
75
 
    self.assertFalse(has_revision(br_b2, br_a.revision_history()[3]))
76
 
 
77
 
    br_a2 = new_branch('br_a2')
78
 
    self.assertEquals(greedy_fetch(br_a2, br_a)[0], 9)
79
 
    self.assert_(has_revision(br_a2, br_b.revision_history()[4]))
80
 
    self.assert_(has_revision(br_a2, br_a.revision_history()[3]))
81
 
    self.assert_(has_revision(br_a2, br_a.revision_history()[2]))
82
 
 
83
 
    br_a3 = new_branch('br_a3')
84
 
    self.assertEquals(greedy_fetch(br_a3, br_a2)[0], 0)
85
 
    for revno in range(4):
86
 
        self.assertFalse(has_revision(br_a3, br_a.revision_history()[revno]))
87
 
    self.assertEqual(greedy_fetch(br_a3, br_a2, br_a.revision_history()[2])[0], 3)
88
 
    fetched = greedy_fetch(br_a3, br_a2, br_a.revision_history()[3])[0]
89
 
    self.assertEquals(fetched, 6, "fetched %d instead of 6" % fetched)
90
 
    # InstallFailed should be raised if the branch is missing the revision
91
 
    # that was requested.
92
 
    self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
93
 
                      br_a2, 'pizza')
94
 
    # InstallFailed should be raised if the branch is missing a revision
95
 
    # from its own revision history
96
 
    br_a2.append_revision('a-b-c')
97
 
    self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
98
 
                      br_a2)
99
 
 
100
 
 
101
 
    #TODO: test that fetch correctly does reweaving when needed. RBC 20051008
102
 
 
103
 
class TestFetch(TestCaseWithTransport):
104
 
 
105
 
    def test_fetch(self):
106
 
        #highest indices a: 5, b: 7
107
 
        br_a, br_b = make_branches(self)
108
 
        fetch_steps(self, br_a, br_b, br_a)
109
 
 
110
 
 
111
 
class TestMergeFetch(TestCaseWithTransport):
112
 
 
113
 
    def test_merge_fetches_unrelated(self):
114
 
        """Merge brings across history from unrelated source"""
115
 
        wt1 = self.make_branch_and_tree('br1')
116
 
        br1 = wt1.branch
117
 
        wt1.commit(message='rev 1-1', rev_id='1-1')
118
 
        wt1.commit(message='rev 1-2', rev_id='1-2')
119
 
        wt2 = self.make_branch_and_tree('br2')
120
 
        br2 = wt2.branch
121
 
        wt2.commit(message='rev 2-1', rev_id='2-1')
122
 
        merge(other_revision=['br1', -1], base_revision=['br1', 0],
123
 
              this_dir='br2')
124
 
        self._check_revs_present(br2)
125
 
 
126
 
    def test_merge_fetches(self):
127
 
        """Merge brings across history from source"""
128
 
        wt1 = self.make_branch_and_tree('br1')
129
 
        br1 = wt1.branch
130
 
        wt1.commit(message='rev 1-1', rev_id='1-1')
131
 
        br2 = br1.clone('br2')
132
 
        wt1.commit(message='rev 1-2', rev_id='1-2')
133
 
        WorkingTree('br2', br2).commit(message='rev 2-1', rev_id='2-1')
134
 
        merge(other_revision=['br1', -1], base_revision=[None, None], 
135
 
              this_dir='br2')
136
 
        self._check_revs_present(br2)
137
 
 
138
 
    def _check_revs_present(self, br2):
139
 
        for rev_id in '1-1', '1-2', '2-1':
140
 
            self.assertTrue(br2.repository.has_revision(rev_id))
141
 
            rev = br2.repository.get_revision(rev_id)
142
 
            self.assertEqual(rev.revision_id, rev_id)
143
 
            self.assertTrue(br2.repository.get_inventory(rev_id))
144
 
 
145
 
 
146
 
class TestMergeFileHistory(TestCaseWithTransport):
147
 
 
148
 
    def setUp(self):
149
 
        super(TestMergeFileHistory, self).setUp()
150
 
        wt1 = self.make_branch_and_tree('br1')
151
 
        br1 = wt1.branch
152
 
        self.build_tree_contents([('br1/file', 'original contents\n')])
153
 
        wt1.add('file', 'this-file-id')
154
 
        wt1.commit(message='rev 1-1', rev_id='1-1')
155
 
        br2 = br1.clone('br2')
156
 
        wt2 = WorkingTree('br2', br2)
157
 
        self.build_tree_contents([('br1/file', 'original from 1\n')])
158
 
        wt1.commit(message='rev 1-2', rev_id='1-2')
159
 
        self.build_tree_contents([('br1/file', 'agreement\n')])
160
 
        wt1.commit(message='rev 1-3', rev_id='1-3')
161
 
        self.build_tree_contents([('br2/file', 'contents in 2\n')])
162
 
        wt2.commit(message='rev 2-1', rev_id='2-1')
163
 
        self.build_tree_contents([('br2/file', 'agreement\n')])
164
 
        wt2.commit(message='rev 2-2', rev_id='2-2')
165
 
 
166
 
    def test_merge_fetches_file_history(self):
167
 
        """Merge brings across file histories"""
168
 
        br2 = Branch.open('br2')
169
 
        merge(other_revision=['br1', -1], base_revision=[None, None], 
170
 
              this_dir='br2')
171
 
        for rev_id, text in [('1-2', 'original from 1\n'),
172
 
                             ('1-3', 'agreement\n'),
173
 
                             ('2-1', 'contents in 2\n'),
174
 
                             ('2-2', 'agreement\n')]:
175
 
            self.assertEqualDiff(
176
 
                br2.repository.revision_tree(
177
 
                    rev_id).get_file_text('this-file-id'), text)
178
 
 
179
 
 
180
 
class TestHttpFetch(TestCaseWithWebserver):
181
 
    # FIXME RBC 20060124 this really isn't web specific, perhaps an
182
 
    # instrumented readonly transport? Can we do an instrumented
183
 
    # adapter and use self.get_readonly_url ?
184
 
 
185
 
    def test_fetch(self):
186
 
        #highest indices a: 5, b: 7
187
 
        print "TestHttpFetch.test_fetch disabled during transition."
188
 
        return
189
 
        br_a, br_b = make_branches(self)
190
 
        br_rem_a = Branch.open(self.get_remote_url(br_a.base))
191
 
        fetch_steps(self, br_rem_a, br_b, br_a)
192
 
 
193
 
    def test_weaves_are_retrieved_once(self):
194
 
        self.build_tree(("source/", "source/file", "target/"))
195
 
        wt = WorkingTree.create_standalone('source')
196
 
        branch = wt.branch
197
 
        wt.add(["file"], ["id"])
198
 
        wt.commit("added file")
199
 
        print >>open("source/file", 'w'), "blah"
200
 
        wt.commit("changed file")
201
 
        target = Branch.create("target/")
202
 
        source = Branch.open(self.get_remote_url("source/"))
203
 
        self.assertEqual(greedy_fetch(target, source), (2, []))
204
 
        # this is the path to the literal file. As format changes 
205
 
        # occur it needs to be updated. FIXME: ask the store for the
206
 
        # path.
207
 
        weave_suffix = 'weaves/ce/id.weave HTTP/1.1" 200 -'
208
 
        self.assertEqual(1,
209
 
            len([log for log in self.server.logs if log.endswith(weave_suffix)]))
210
 
        inventory_weave_suffix = 'inventory.weave HTTP/1.1" 200 -'
211
 
        self.assertEqual(1,
212
 
            len([log for log in self.server.logs if log.endswith(
213
 
                inventory_weave_suffix)]))
214
 
        # this r-h check test will prevent regressions, but it currently already 
215
 
        # passes, before the patch to cache-rh is applied :[
216
 
        revision_history_suffix = 'revision-history HTTP/1.1" 200 -'
217
 
        self.assertEqual(1,
218
 
            len([log for log in self.server.logs if log.endswith(
219
 
                revision_history_suffix)]))
220
 
        # FIXME naughty poking in there.
221
 
        self.server.logs = []
222
 
        # check there is nothing more to fetch
223
 
        source = Branch.open(self.get_remote_url("source/"))
224
 
        self.assertEqual(greedy_fetch(target, source), (0, []))
225
 
        self.failUnless(self.server.logs[0].endswith('branch-format HTTP/1.1" 200 -'))
226
 
        self.failUnless(self.server.logs[1].endswith('revision-history HTTP/1.1" 200 -'))
227
 
        self.assertEqual(2, len(self.server.logs))