14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16
16
import bzrlib.errors
17
from bzrlib.trace import mutter, note
17
from bzrlib.selftest.testrevision import make_branches
18
from bzrlib.trace import mutter
18
19
from bzrlib.branch import Branch
19
from bzrlib.progress import ProgressBar
23
def has_revision(branch, revision_id):
25
branch.get_revision_xml(revision_id)
27
except bzrlib.errors.NoSuchRevision:
31
def greedy_fetch(to_branch, from_branch, revision=None, pb=None):
32
"""Copy a revision and all available ancestors from one branch to another
33
If no revision is specified, uses the last revision in the source branch's
23
def greedy_fetch(from_branch, to_branch, last_revision=None):
36
24
from_history = from_branch.revision_history()
37
required_revisions = set(from_history)
39
if revision is not None:
40
required_revisions.add(revision)
42
rev_index = from_history.index(revision)
45
if rev_index is not None:
46
from_history = from_history[:rev_index + 1]
48
from_history = [revision]
25
if last_revision is not None:
26
from_history = from_history[:from_history.index(last_revision)+1]
49
27
to_history = to_branch.revision_history()
51
29
for rev_id in from_history:
52
30
if not has_revision(to_branch, rev_id):
53
31
missing.append(rev_id)
56
33
while len(missing) > 0:
57
installed, failed = to_branch.install_revisions(from_branch,
61
required_failed = failed.intersection(required_revisions)
62
if len(required_failed) > 0:
63
raise bzrlib.errors.InstallFailed(required_failed)
65
note("Failed to install %s" % rev_id)
66
all_failed.update(failed)
34
to_branch.install_revisions(from_branch, revision_ids=missing)
68
36
for rev_id in missing:
70
38
revision = from_branch.get_revision(rev_id)
76
44
for parent in [p.revision_id for p in revision.parents]:
77
45
if not has_revision(to_branch, parent):
78
new_missing.add(parent)
46
new_missing.append(parent)
79
47
missing = new_missing
80
return count, all_failed
50
from testsweet import InTempDir
51
def has_revision(branch, revision_id):
53
branch.get_revision_xml(revision_id)
55
except bzrlib.errors.NoSuchRevision:
58
class TestFetch(InTempDir):
62
return Branch(name, init=True)
64
#highest indices a: 3, b: 4
65
br_a, br_b = make_branches()
66
assert not has_revision(br_b, br_a.revision_history()[3])
67
assert has_revision(br_b, br_a.revision_history()[2])
68
assert len(br_b.revision_history()) == 5
69
greedy_fetch(br_a, br_b, br_a.revision_history()[2])
71
# greedy_fetch is not supposed to alter the revision history
72
assert len(br_b.revision_history()) == 5
73
assert not has_revision(br_b, br_a.revision_history()[3])
75
assert len(br_b.revision_history()) == 5
76
greedy_fetch(br_a, br_b, br_a.revision_history()[3])
77
assert has_revision(br_b, br_a.revision_history()[3])
78
assert not has_revision(br_a, br_b.revision_history()[3])
79
assert not has_revision(br_a, br_b.revision_history()[4])
80
greedy_fetch(br_b, br_a)
81
assert has_revision(br_a, br_b.revision_history()[3])
82
assert has_revision(br_a, br_b.revision_history()[4])
84
br_b2 = new_branch('br_b2')
85
greedy_fetch(br_b, br_b2)
86
assert has_revision(br_b2, br_b.revision_history()[4])
87
assert has_revision(br_b2, br_a.revision_history()[2])
88
assert not has_revision(br_b2, br_a.revision_history()[3])
90
br_a2 = new_branch('br_a2')
91
greedy_fetch(br_a, br_a2)
92
assert has_revision(br_a2, br_b.revision_history()[4])
93
assert has_revision(br_a2, br_a.revision_history()[3])
97
if __name__ == '__main__':
99
sys.exit(run_suite(unittest.makeSuite()))