/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/selftest/testfetch.py

  • Committer: Martin Pool
  • Date: 2005-09-13 23:08:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050913230819-6ceae96050d32faa
ignore .bzr-shelf

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 sys
 
18
import os
 
19
 
 
20
import bzrlib.errors
 
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
 
25
 
 
26
from bzrlib.selftest import TestCaseInTempDir
 
27
        
 
28
 
 
29
def has_revision(branch, revision_id):
 
30
    try:
 
31
        branch.get_revision_xml_file(revision_id)
 
32
        return True
 
33
    except bzrlib.errors.NoSuchRevision:
 
34
        return False
 
35
 
 
36
 
 
37
 
 
38
class TestFetch(TestCaseInTempDir):
 
39
    def runTest(self):
 
40
        def new_branch(name):
 
41
            os.mkdir(name)
 
42
            return Branch(name, init=True)
 
43
            
 
44
        #highest indices a: 5, b: 7
 
45
        br_a, br_b = make_branches()
 
46
        assert not has_revision(br_b, br_a.revision_history()[3])
 
47
        assert has_revision(br_b, br_a.revision_history()[2])
 
48
        assert len(br_b.revision_history()) == 7
 
49
        assert greedy_fetch(br_b, br_a, br_a.revision_history()[2])[0] == 0
 
50
 
 
51
        # greedy_fetch is not supposed to alter the revision history
 
52
        assert len(br_b.revision_history()) == 7
 
53
        assert not has_revision(br_b, br_a.revision_history()[3])
 
54
 
 
55
        assert len(br_b.revision_history()) == 7
 
56
        assert greedy_fetch(br_b, br_a, br_a.revision_history()[3])[0] == 1
 
57
        assert has_revision(br_b, br_a.revision_history()[3])
 
58
        assert not has_revision(br_a, br_b.revision_history()[3])
 
59
        assert not has_revision(br_a, br_b.revision_history()[4])
 
60
 
 
61
        # When a non-branch ancestor is missing, it should be a failure, not
 
62
        # exception
 
63
        br_a4 = new_branch('br_a4')
 
64
        count, failures = greedy_fetch(br_a4, br_a)
 
65
        assert count == 6
 
66
        assert failures == set((br_b.revision_history()[4],
 
67
                                br_b.revision_history()[5])) 
 
68
 
 
69
        assert greedy_fetch(br_a, br_b)[0] == 4
 
70
        assert has_revision(br_a, br_b.revision_history()[3])
 
71
        assert has_revision(br_a, br_b.revision_history()[4])
 
72
 
 
73
        br_b2 = new_branch('br_b2')
 
74
        assert greedy_fetch(br_b2, br_b)[0] == 7
 
75
        assert has_revision(br_b2, br_b.revision_history()[4])
 
76
        assert has_revision(br_b2, br_a.revision_history()[2])
 
77
        assert not has_revision(br_b2, br_a.revision_history()[3])
 
78
 
 
79
        br_a2 = new_branch('br_a2')
 
80
        assert greedy_fetch(br_a2, br_a)[0] == 9
 
81
        assert has_revision(br_a2, br_b.revision_history()[4])
 
82
        assert has_revision(br_a2, br_a.revision_history()[3])
 
83
 
 
84
        br_a3 = new_branch('br_a3')
 
85
        assert greedy_fetch(br_a3, br_a2)[0] == 0
 
86
        for revno in range(4):
 
87
            assert not has_revision(br_a3, br_a.revision_history()[revno])
 
88
        assert greedy_fetch(br_a3, br_a2, br_a.revision_history()[2])[0] == 3
 
89
        fetched = greedy_fetch(br_a3, br_a2, br_a.revision_history()[3])[0]
 
90
        assert fetched == 3, "fetched %d instead of 3" % fetched
 
91
        # InstallFailed should be raised if the branch is missing the revision
 
92
        # that was requested.
 
93
        self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
 
94
                          br_a2, 'pizza')
 
95
        # InstallFailed should be raised if the branch is missing a revision
 
96
        # from its own revision history
 
97
        br_a2.append_revision('a-b-c')
 
98
        self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
 
99
                          br_a2)
 
100
 
 
101
 
 
102
 
 
103
if __name__ == '__main__':
 
104
    import unittest
 
105
    unittest.main()
 
106