/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
1115 by Martin Pool
- split fetch tests into a separate file
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
1238 by Martin Pool
- remove a lot of dead code from fetch
16
1185.1.41 by Robert Collins
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid
17
import os
1238 by Martin Pool
- remove a lot of dead code from fetch
18
import sys
19
1115 by Martin Pool
- split fetch tests into a separate file
20
import bzrlib.errors
21
from bzrlib.selftest.testrevision import make_branches
22
from bzrlib.trace import mutter
23
from bzrlib.branch import Branch
1238 by Martin Pool
- remove a lot of dead code from fetch
24
from bzrlib.fetch import greedy_fetch
1115 by Martin Pool
- split fetch tests into a separate file
25
1141 by Martin Pool
- rename FunctionalTest to TestCaseInTempDir
26
from bzrlib.selftest import TestCaseInTempDir
1185.1.41 by Robert Collins
massive patch from Alexander Belchenko - many PEP8 fixes, removes unused function uuid
27
1115 by Martin Pool
- split fetch tests into a separate file
28
1238 by Martin Pool
- remove a lot of dead code from fetch
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
1393 by Robert Collins
reenable remotebranch tests
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)
41
            
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
1092.2.28 by Robert Collins
reenable test of fetching a branch with ghosts
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, [])
1393 by Robert Collins
reenable remotebranch tests
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
1238 by Martin Pool
- remove a lot of dead code from fetch
97
1141 by Martin Pool
- rename FunctionalTest to TestCaseInTempDir
98
class TestFetch(TestCaseInTempDir):
1392 by Robert Collins
reinstate testfetch test case
99
100
    def test_fetch(self):
1274 by Martin Pool
- stub out obsolete fetch tests
101
        
1115 by Martin Pool
- split fetch tests into a separate file
102
        #highest indices a: 5, b: 7
103
        br_a, br_b = make_branches()
1393 by Robert Collins
reenable remotebranch tests
104
        fetch_steps(self, br_a, br_b, br_a)