~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testfetch.py

  • Committer: Aaron Bentley
  • Date: 2005-09-19 02:52:24 UTC
  • mto: (1185.1.29)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050919025224-1cc3c70640086e09
TODO re tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# You should have received a copy of the GNU General Public License
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
 
 
17
 
import os
18
 
import sys
19
 
 
20
16
import bzrlib.errors
21
17
from bzrlib.selftest.testrevision import make_branches
22
18
from bzrlib.trace import mutter
23
19
from bzrlib.branch import Branch
24
 
from bzrlib.fetch import greedy_fetch
 
20
import sys
 
21
import os
25
22
 
26
23
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
 
def fetch_steps(self, br_a, br_b, writable_a):
37
 
    """A foreign test method for testing fetch locally and remotely."""
38
 
    def new_branch(name):
39
 
        os.mkdir(name)
40
 
        return Branch.initialize(name)
 
24
        
 
25
 
 
26
class TestFetch(TestCaseInTempDir):
 
27
    def runTest(self):
 
28
        from bzrlib.fetch import greedy_fetch, has_revision
 
29
 
 
30
        def new_branch(name):
 
31
            os.mkdir(name)
 
32
            return Branch.initialize(name)
41
33
            
42
 
    assert not has_revision(br_b, br_a.revision_history()[3])
43
 
    assert has_revision(br_b, br_a.revision_history()[2])
44
 
    assert len(br_b.revision_history()) == 7
45
 
    assert greedy_fetch(br_b, br_a, br_a.revision_history()[2])[0] == 0
46
 
 
47
 
    # greedy_fetch is not supposed to alter the revision history
48
 
    assert len(br_b.revision_history()) == 7
49
 
    assert not has_revision(br_b, br_a.revision_history()[3])
50
 
 
51
 
    assert len(br_b.revision_history()) == 7
52
 
    assert greedy_fetch(br_b, br_a, br_a.revision_history()[3])[0] == 1
53
 
    assert has_revision(br_b, br_a.revision_history()[3])
54
 
    assert not has_revision(br_a, br_b.revision_history()[6])
55
 
    assert has_revision(br_a, br_b.revision_history()[5])
56
 
 
57
 
    # When a non-branch ancestor is missing, it should be unlisted...
58
 
    # as its not present in the ancestry weave.
59
 
    br_b4 = new_branch('br_4')
60
 
    count, failures = greedy_fetch(br_b4, br_b)
61
 
    self.assertEqual(count, 7)
62
 
    self.assertEqual(failures, [])
63
 
 
64
 
    self.assertEqual(greedy_fetch(writable_a, br_b)[0], 1)
65
 
    assert has_revision(br_a, br_b.revision_history()[3])
66
 
    assert has_revision(br_a, br_b.revision_history()[4])
67
 
        
68
 
    br_b2 = new_branch('br_b2')
69
 
    assert greedy_fetch(br_b2, br_b)[0] == 7
70
 
    assert has_revision(br_b2, br_b.revision_history()[4])
71
 
    assert has_revision(br_b2, br_a.revision_history()[2])
72
 
    assert not has_revision(br_b2, br_a.revision_history()[3])
73
 
 
74
 
    br_a2 = new_branch('br_a2')
75
 
    assert greedy_fetch(br_a2, br_a)[0] == 9
76
 
    assert has_revision(br_a2, br_b.revision_history()[4])
77
 
    assert has_revision(br_a2, br_a.revision_history()[3])
78
 
    assert has_revision(br_a2, br_a.revision_history()[2])
79
 
 
80
 
    br_a3 = new_branch('br_a3')
81
 
    assert greedy_fetch(br_a3, br_a2)[0] == 0
82
 
    for revno in range(4):
83
 
        assert not has_revision(br_a3, br_a.revision_history()[revno])
84
 
    self.assertEqual(greedy_fetch(br_a3, br_a2, br_a.revision_history()[2])[0], 3)
85
 
    fetched = greedy_fetch(br_a3, br_a2, br_a.revision_history()[3])[0]
86
 
    assert fetched == 3, "fetched %d instead of 3" % fetched
87
 
    # InstallFailed should be raised if the branch is missing the revision
88
 
    # that was requested.
89
 
    self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
90
 
                      br_a2, 'pizza')
91
 
    # InstallFailed should be raised if the branch is missing a revision
92
 
    # from its own revision history
93
 
    br_a2.append_revision('a-b-c')
94
 
    self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
95
 
                      br_a2)
96
 
 
97
 
 
98
 
class TestFetch(TestCaseInTempDir):
99
 
 
100
 
    def test_fetch(self):
101
 
        
102
34
        #highest indices a: 5, b: 7
103
35
        br_a, br_b = make_branches()
104
 
        fetch_steps(self, br_a, br_b, br_a)
 
36
        assert not has_revision(br_b, br_a.revision_history()[3])
 
37
        assert has_revision(br_b, br_a.revision_history()[2])
 
38
        assert len(br_b.revision_history()) == 7
 
39
        assert greedy_fetch(br_b, br_a, br_a.revision_history()[2])[0] == 0
 
40
 
 
41
        # greedy_fetch is not supposed to alter the revision history
 
42
        assert len(br_b.revision_history()) == 7
 
43
        assert not has_revision(br_b, br_a.revision_history()[3])
 
44
 
 
45
        assert len(br_b.revision_history()) == 7
 
46
        assert greedy_fetch(br_b, br_a, br_a.revision_history()[3])[0] == 1
 
47
        assert has_revision(br_b, br_a.revision_history()[3])
 
48
        assert not has_revision(br_a, br_b.revision_history()[3])
 
49
        assert not has_revision(br_a, br_b.revision_history()[4])
 
50
 
 
51
        # When a non-branch ancestor is missing, it should be a failure, not
 
52
        # exception
 
53
        br_a4 = new_branch('br_a4')
 
54
        count, failures = greedy_fetch(br_a4, br_a)
 
55
        assert count == 6
 
56
        assert failures == set((br_b.revision_history()[4],
 
57
                                br_b.revision_history()[5])) 
 
58
 
 
59
        assert greedy_fetch(br_a, br_b)[0] == 4
 
60
        assert has_revision(br_a, br_b.revision_history()[3])
 
61
        assert has_revision(br_a, br_b.revision_history()[4])
 
62
 
 
63
        br_b2 = new_branch('br_b2')
 
64
        assert greedy_fetch(br_b2, br_b)[0] == 7
 
65
        assert has_revision(br_b2, br_b.revision_history()[4])
 
66
        assert has_revision(br_b2, br_a.revision_history()[2])
 
67
        assert not has_revision(br_b2, br_a.revision_history()[3])
 
68
 
 
69
        br_a2 = new_branch('br_a2')
 
70
        assert greedy_fetch(br_a2, br_a)[0] == 9
 
71
        assert has_revision(br_a2, br_b.revision_history()[4])
 
72
        assert has_revision(br_a2, br_a.revision_history()[3])
 
73
 
 
74
        br_a3 = new_branch('br_a3')
 
75
        assert greedy_fetch(br_a3, br_a2)[0] == 0
 
76
        for revno in range(4):
 
77
            assert not has_revision(br_a3, br_a.revision_history()[revno])
 
78
        assert greedy_fetch(br_a3, br_a2, br_a.revision_history()[2])[0] == 3
 
79
        fetched = greedy_fetch(br_a3, br_a2, br_a.revision_history()[3])[0]
 
80
        assert fetched == 3, "fetched %d instead of 3" % fetched
 
81
        # InstallFailed should be raised if the branch is missing the revision
 
82
        # that was requested.
 
83
        self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
 
84
                          br_a2, 'pizza')
 
85
        # InstallFailed should be raised if the branch is missing a revision
 
86
        # from its own revision history
 
87
        br_a2.append_revision('a-b-c')
 
88
        self.assertRaises(bzrlib.errors.InstallFailed, greedy_fetch, br_a3,
 
89
                          br_a2)
 
90
 
 
91
 
 
92
 
 
93
if __name__ == '__main__':
 
94
    import unittest
 
95
    sys.exit(unittest.run_suite(unittest.makeSuite()))