/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/testremotebranch.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-29 20:34:25 UTC
  • mfrom: (1185.11.24)
  • mto: (1393.1.12)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050929203425-7fc2ea87f449dfe8
Merged in split-storage-2 branch. Need to cleanup a little bit more still.

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 gzip
 
21
import sys
 
22
import os
 
23
 
 
24
from bzrlib.selftest.HTTPTestUtil import TestCaseWithWebserver
 
25
 
 
26
from bzrlib.selftest.testfetch import fetch_steps
 
27
 
 
28
class TestRemoteBranch(TestCaseWithWebserver):
 
29
    def test_remote_branch(self):
 
30
        from bzrlib.fetch import greedy_fetch, has_revision
 
31
 
 
32
        def new_branch(name):
 
33
            os.mkdir(name)
 
34
            return Branch.initialize(name)
 
35
            
 
36
        #highest indices a: 5, b: 7
 
37
        br_a, br_b = make_branches()
 
38
        # unpack one of br_a's revision files to test .gz fallbacks
 
39
        to_unzip = br_a.revision_history()[-1]
 
40
        to_unzip_source = gzip.open(os.path.join(br_a.base, '.bzr', 
 
41
                                                  'revision-store',
 
42
                                                  to_unzip + '.gz'))
 
43
        content = to_unzip_source.read()
 
44
        to_unzip_source.close()
 
45
        os.unlink(os.path.join(br_a.base, '.bzr', 'revision-store',
 
46
                               to_unzip + '.gz'))
 
47
        to_unzip_output = open(os.path.join(br_a.base, '.bzr', 
 
48
                                             'revision-store', to_unzip), 'wb')
 
49
        to_unzip_output.write(content)
 
50
        to_unzip_output.close()
 
51
        
 
52
        br_rem = Branch.open(self.get_remote_url(br_a.base))
 
53
        fetch_steps(self, br_rem, br_b, br_a)
 
54