~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testremotebranch.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-19 08:19:38 UTC
  • Revision ID: mbp@sourcefrog.net-20050319081938-596d89f99a644569
use "/usr/bin/env python" for shebang"

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
 
import bzrlib.errors
17
 
from bzrlib.selftest.testrevision import make_branches
18
 
from bzrlib.trace import mutter
19
 
from bzrlib.branch import Branch, find_branch
20
 
import sys
21
 
import os
22
 
 
23
 
from bzrlib.selftest.HTTPTestUtil import TestCaseWithWebserver
24
 
        
25
 
 
26
 
class TestFetch(TestCaseWithWebserver):
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)
33
 
            
34
 
        #highest indices a: 5, b: 7
35
 
        br_a, br_b = make_branches()
36
 
        br_rem = Branch.open(self.get_remote_url(br_a.base))
37
 
        assert not has_revision(br_b, br_rem.revision_history()[3])
38
 
        assert has_revision(br_b, br_rem.revision_history()[2])
39
 
        assert len(br_b.revision_history()) == 7
40
 
        assert greedy_fetch(br_b, br_rem, br_rem.revision_history()[2])[0] == 0
41
 
 
42
 
        # greedy_fetch is not supposed to alter the revision history
43
 
        assert len(br_b.revision_history()) == 7
44
 
        assert not has_revision(br_b, br_rem.revision_history()[3])
45
 
 
46
 
        assert len(br_b.revision_history()) == 7
47
 
        assert greedy_fetch(br_b, br_rem, br_rem.revision_history()[3])[0] == 1
48
 
        assert has_revision(br_b, br_a.revision_history()[3])
49
 
        assert not has_revision(br_rem, br_b.revision_history()[3])
50
 
        assert not has_revision(br_rem, br_b.revision_history()[4])
51
 
 
52
 
        # When a non-branch ancestor is missing, it should be a failure, not
53
 
        # exception
54
 
        br_a4 = new_branch('br_a4')
55
 
        count, failures = greedy_fetch(br_a4, br_rem)
56
 
        assert count == 6
57
 
        assert failures == set((br_b.revision_history()[4],
58
 
                                br_b.revision_history()[5])) 
59
 
 
60
 
        assert greedy_fetch(br_a, br_b)[0] == 4
61
 
        assert has_revision(br_a, br_b.revision_history()[3])
62
 
        assert has_revision(br_a, br_b.revision_history()[4])
63
 
 
64
 
        br_b2 = new_branch('br_b2')
65
 
        assert greedy_fetch(br_b2, br_b)[0] == 7
66
 
        assert has_revision(br_b2, br_b.revision_history()[4])
67
 
        assert has_revision(br_b2, br_a.revision_history()[2])
68
 
        assert not has_revision(br_b2, br_a.revision_history()[3])
69
 
 
70
 
        br_a2 = new_branch('br_a2')
71
 
        assert greedy_fetch(br_a2, br_rem)[0] == 9
72
 
        assert has_revision(br_a2, br_b.revision_history()[4])
73
 
        assert has_revision(br_a2, br_a.revision_history()[3])
74
 
 
75
 
 
76
 
if __name__ == '__main__':
77
 
    import unittest
78
 
    sys.exit(unittest.run_suite(unittest.makeSuite()))