1
# Copyright (C) 2005 by Canonical Ltd
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.
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.
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
21
from bzrlib.selftest.testrevision import make_branches
22
from bzrlib.trace import mutter
23
from bzrlib.branch import Branch
24
from bzrlib.fetch import greedy_fetch
26
from bzrlib.selftest import TestCaseInTempDir
29
def has_revision(branch, revision_id):
31
branch.get_revision_xml_file(revision_id)
33
except bzrlib.errors.NoSuchRevision:
37
class TestFetch(TestCaseInTempDir):
43
return Branch.initialize(name)
45
#highest indices a: 5, b: 7
46
br_a, br_b = make_branches()
47
assert not has_revision(br_b, br_a.revision_history()[3])
48
assert has_revision(br_b, br_a.revision_history()[2])
49
assert len(br_b.revision_history()) == 7
50
assert greedy_fetch(br_b, br_a, br_a.revision_history()[2])[0] == 0
52
# greedy_fetch is not supposed to alter the revision history
53
assert len(br_b.revision_history()) == 7
54
assert not has_revision(br_b, br_a.revision_history()[3])
56
assert len(br_b.revision_history()) == 7
57
assert greedy_fetch(br_b, br_a, br_a.revision_history()[3])[0] == 1
58
assert has_revision(br_b, br_a.revision_history()[3])
59
assert not has_revision(br_a, br_b.revision_history()[6])
60
assert has_revision(br_a, br_b.revision_history()[5])
62
# When a non-branch ancestor is missing, it should be a failure, not
64
print ("CANNOT TEST MISSING NON REVISION_HISTORY ANCESTORS WITHOUT"
66
# br_a4 = new_branch('br_a4')
67
# count, failures = greedy_fetch(br_a4, br_a)
68
# self.assertEqual(count, 6)
69
# self.assertEqual(failures, set((br_b.revision_history()[4],
70
# br_b.revision_history()[5])))
72
self.assertEqual(greedy_fetch(br_a, br_b)[0], 1)
73
assert has_revision(br_a, br_b.revision_history()[3])
74
assert has_revision(br_a, br_b.revision_history()[4])
76
br_b2 = new_branch('br_b2')
77
assert greedy_fetch(br_b2, br_b)[0] == 7
78
assert has_revision(br_b2, br_b.revision_history()[4])
79
assert has_revision(br_b2, br_a.revision_history()[2])
80
assert not has_revision(br_b2, br_a.revision_history()[3])
82
br_a2 = new_branch('br_a2')
83
assert greedy_fetch(br_a2, br_a)[0] == 9
84
assert has_revision(br_a2, br_b.revision_history()[4])
85
assert has_revision(br_a2, br_a.revision_history()[3])
86
assert has_revision(br_a2, br_a.revision_history()[2])
88
br_a3 = new_branch('br_a3')
89
assert greedy_fetch(br_a3, br_a2)[0] == 0
90
for revno in range(4):
91
assert not has_revision(br_a3, br_a.revision_history()[revno])
92
self.assertEqual(greedy_fetch(br_a3, br_a2, br_a.revision_history()[2])[0], 3)
93
fetched = greedy_fetch(br_a3, br_a2, br_a.revision_history()[3])[0]
94
assert fetched == 3, "fetched %d instead of 3" % fetched
95
# InstallFailed should be raised if the branch is missing the revision
97
self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
99
# InstallFailed should be raised if the branch is missing a revision
100
# from its own revision history
101
br_a2.append_revision('a-b-c')
102
self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,