/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 breezy/tests/test_mergeable.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-03 23:48:08 UTC
  • mfrom: (7316 work)
  • mto: This revision was merged to the branch mainline in revision 7328.
  • Revision ID: jelmer@jelmer.uk-20190603234808-15yk5c7054tj8e2b
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005-2013, 2016 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
try:
 
18
    import socketserver
 
19
except ImportError:
 
20
    import SocketServer as socketserver
 
21
 
 
22
from ..mergeable import read_mergeable_from_url
 
23
from ..directory_service import directories
 
24
from .. import (
 
25
    errors,
 
26
    tests,
 
27
    )
 
28
from . import (
 
29
    test_read_bundle,
 
30
    test_server,
 
31
    )
 
32
 
 
33
 
 
34
class TestReadMergeableFromUrl(tests.TestCaseWithTransport):
 
35
 
 
36
    def test_read_mergeable_skips_local(self):
 
37
        """A local bundle named like the URL should not be read.
 
38
        """
 
39
        out, wt = test_read_bundle.create_bundle_file(self)
 
40
 
 
41
        class FooService(object):
 
42
            """A directory service that always returns source"""
 
43
 
 
44
            def look_up(self, name, url):
 
45
                return 'source'
 
46
        directories.register('foo:', FooService, 'Testing directory service')
 
47
        self.addCleanup(directories.remove, 'foo:')
 
48
        self.build_tree_contents([('./foo:bar', out.getvalue())])
 
49
        self.assertRaises(errors.NotABundle, read_mergeable_from_url,
 
50
                          'foo:bar')
 
51
 
 
52
    def test_infinite_redirects_are_not_a_bundle(self):
 
53
        """If a URL causes TooManyRedirections then NotABundle is raised.
 
54
        """
 
55
        from .blackbox.test_push import RedirectingMemoryServer
 
56
        server = RedirectingMemoryServer()
 
57
        self.start_server(server)
 
58
        url = server.get_url() + 'infinite-loop'
 
59
        self.assertRaises(errors.NotABundle, read_mergeable_from_url, url)
 
60
 
 
61
    def test_smart_server_connection_reset(self):
 
62
        """If a smart server connection fails during the attempt to read a
 
63
        bundle, then the ConnectionReset error should be propagated.
 
64
        """
 
65
        # Instantiate a server that will provoke a ConnectionReset
 
66
        sock_server = DisconnectingServer()
 
67
        self.start_server(sock_server)
 
68
        # We don't really care what the url is since the server will close the
 
69
        # connection without interpreting it
 
70
        url = sock_server.get_url()
 
71
        self.assertRaises(errors.ConnectionReset, read_mergeable_from_url, url)
 
72
 
 
73
 
 
74
class DisconnectingHandler(socketserver.BaseRequestHandler):
 
75
    """A request handler that immediately closes any connection made to it."""
 
76
 
 
77
    def handle(self):
 
78
        self.request.close()
 
79
 
 
80
 
 
81
class DisconnectingServer(test_server.TestingTCPServerInAThread):
 
82
 
 
83
    def __init__(self):
 
84
        super(DisconnectingServer, self).__init__(
 
85
            ('127.0.0.1', 0),
 
86
            test_server.TestingTCPServer,
 
87
            DisconnectingHandler)
 
88
 
 
89
    def get_url(self):
 
90
        """Return the url of the server"""
 
91
        return "bzr://%s:%d/" % self.server.server_address