1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright (C) 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""HTTPS test server, available when ssl python module is available"""
import ssl
from bzrlib.tests import (
http_server,
ssl_certs,
)
class TestingHTTPSServerMixin:
def __init__(self, key_file, cert_file):
self.key_file = key_file
self.cert_file = cert_file
def get_request (self):
"""Get the request and client address from the socket.
This is called in response to a connection issued to the server, we
wrap the socket with SSL.
"""
sock, addr = self.socket.accept()
sslconn = ssl.wrap_socket(sock, server_side=True,
keyfile=self.key_file,
certfile=self.cert_file)
return sslconn, addr
class TestingHTTPSServer(TestingHTTPSServerMixin,
http_server.TestingHTTPServer):
def __init__(self, server_address, request_handler_class,
test_case_server, key_file, cert_file):
TestingHTTPSServerMixin.__init__(self, key_file, cert_file)
http_server.TestingHTTPServer.__init__(
self, server_address, request_handler_class, test_case_server)
class TestingThreadingHTTPSServer(TestingHTTPSServerMixin,
http_server.TestingThreadingHTTPServer):
def __init__(self, server_address, request_handler_class,
test_case_server, key_file, cert_file):
TestingHTTPSServerMixin.__init__(self, key_file, cert_file)
http_server.TestingThreadingHTTPServer.__init__(
self, server_address, request_handler_class, test_case_server)
class HTTPSServer(http_server.HttpServer):
_url_protocol = 'https'
# The real servers depending on the protocol
http_server_class = {'HTTP/1.0': TestingHTTPSServer,
'HTTP/1.1': TestingThreadingHTTPSServer,
}
# Provides usable defaults since an https server requires both a
# private key and certificate to work.
def __init__(self, request_handler=http_server.TestingHTTPRequestHandler,
protocol_version=None,
key_file=ssl_certs.build_path('server_without_pass.key'),
cert_file=ssl_certs.build_path('server.crt')):
http_server.HttpServer.__init__(self, request_handler=request_handler,
protocol_version=protocol_version)
self.key_file = key_file
self.cert_file = cert_file
self.temp_files = []
def create_httpd(self, serv_cls, rhandler_cls):
return serv_cls((self.host, self.port), self.request_handler,
self, self.key_file, self.cert_file)
class HTTPSServer_urllib(HTTPSServer):
"""Subclass of HTTPSServer that gives https+urllib urls.
This is for use in testing: connections to this server will always go
through urllib where possible.
"""
# urls returned by this server should require the urllib client impl
_url_protocol = 'https+urllib'
class HTTPSServer_PyCurl(HTTPSServer):
"""Subclass of HTTPSServer that gives http+pycurl urls.
This is for use in testing: connections to this server will always go
through pycurl where possible.
"""
# We don't care about checking the pycurl availability as
# this server will be required only when pycurl is present
# urls returned by this server should require the pycurl client impl
_url_protocol = 'https+pycurl'
|