~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_read_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from bzrlib.bundle.serializer import write_bundle
24
24
import bzrlib.bzrdir
25
25
import bzrlib.errors as errors
26
 
from bzrlib import tests
 
26
from bzrlib.tests import TestCaseInTempDir
27
27
from bzrlib.tests.test_transport import TestTransportImplementation
28
 
from bzrlib.tests.test_transport_implementations import TransportTestProviderAdapter
29
28
import bzrlib.transport
30
29
from bzrlib.transport.memory import MemoryTransport
31
30
import bzrlib.urlutils
32
31
 
33
32
 
34
 
def load_tests(standard_tests, module, loader):
35
 
    """Multiply tests for tranport implementations."""
36
 
    result = loader.suiteClass()
37
 
    adapter = TransportTestProviderAdapter()
38
 
    for test in tests.iter_suite_tests(standard_tests):
39
 
        result.addTests(adapter.adapt(test))
40
 
    return result
41
 
 
42
 
 
43
 
def create_bundle_file(test_case):
44
 
    test_case.build_tree(['tree/', 'tree/a', 'tree/subdir/'])
45
 
 
46
 
    format = bzrlib.bzrdir.BzrDirFormat.get_default_format()
47
 
 
48
 
    bzrdir = format.initialize('tree')
49
 
    repo = bzrdir.create_repository()
50
 
    branch = repo.bzrdir.create_branch()
51
 
    wt = branch.bzrdir.create_workingtree()
52
 
 
53
 
    wt.add(['a', 'subdir/'])
54
 
    wt.commit('new project', rev_id='commit-1')
55
 
 
56
 
    out = cStringIO.StringIO()
57
 
    rev_ids = write_bundle(wt.branch.repository,
58
 
                           wt.get_parent_ids()[0], 'null:', out)
59
 
    out.seek(0)
60
 
    return out, wt
61
 
 
62
 
 
63
33
class TestReadBundleFromURL(TestTransportImplementation):
64
34
    """Test that read_bundle works properly across multiple transports"""
65
35
 
67
37
        return bzrlib.urlutils.join(self._server.get_url(), relpath)
68
38
 
69
39
    def create_test_bundle(self):
70
 
        out, wt = create_bundle_file(self)
 
40
        self.build_tree(['tree/', 'tree/a', 'tree/subdir/'])
 
41
 
 
42
        format = bzrlib.bzrdir.BzrDirFormat.get_default_format()
 
43
 
 
44
        bzrdir = format.initialize('tree')
 
45
        repo = bzrdir.create_repository()
 
46
        branch = repo.bzrdir.create_branch()
 
47
        wt = branch.bzrdir.create_workingtree()
 
48
 
 
49
        wt.add(['a', 'subdir/'])
 
50
        wt.commit('new project', rev_id='commit-1')
 
51
 
 
52
        out = cStringIO.StringIO()
 
53
        rev_ids = write_bundle(wt.branch.repository,
 
54
                               wt.get_parent_ids()[0], 'null:', out)
 
55
        out.seek(0)
71
56
        if self.get_transport().is_readonly():
72
57
            f = open('test_bundle', 'wb')
73
58
            f.write(out.getvalue())
101
86
        self.assertRaises(errors.NotABundle, 
102
87
            bzrlib.bundle.read_bundle_from_url, 
103
88
            self.get_url('tree/a'))
104
 
 
105
 
    def test_read_mergeable_populates_possible_transports(self):
106
 
        self._captureVar('BZR_NO_SMART_VFS', None)
107
 
        wt = self.create_test_bundle()
108
 
        if wt is None:
109
 
            return
110
 
        possible_transports = []
111
 
        url = unicode(self.get_url('test_bundle'))
112
 
        info = bzrlib.bundle.read_mergeable_from_url(url,
113
 
            possible_transports=possible_transports)
114
 
        self.assertEqual(1, len(possible_transports))