-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathmockhttp.py
More file actions
306 lines (256 loc) · 10.1 KB
/
mockhttp.py
File metadata and controls
306 lines (256 loc) · 10.1 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
import re
import time
from functools import cached_property
from http.server import BaseHTTPRequestHandler
from typing import Callable, Optional
from urllib.parse import parse_qs, unquote, urlsplit
from h11 import SERVER, Connection, Data
from h11 import Request as H11Request
from mocket.compat import ENCODING, decode_from_bytes, do_the_magic, encode_to_bytes
from mocket.entry import MocketEntry
from mocket.mocket import Mocket
STATUS = {k: v[0] for k, v in BaseHTTPRequestHandler.responses.items()}
CRLF = "\r\n"
ASCII = "ascii"
class Request:
_parser = None
_event = None
def __init__(self, data):
self._parser = Connection(SERVER)
self.add_data(data)
def add_data(self, data):
self._parser.receive_data(data)
@property
def event(self):
if not self._event:
self._event = self._parser.next_event()
return self._event
@cached_property
def method(self):
return self.event.method.decode(ASCII)
@cached_property
def path(self):
return self.event.target.decode(ASCII)
@cached_property
def headers(self):
return {k.decode(ASCII): v.decode(ASCII) for k, v in self.event.headers}
@cached_property
def querystring(self):
parts = self.path.split("?", 1)
return (
parse_qs(unquote(parts[1]), keep_blank_values=True)
if len(parts) == 2
else {}
)
@cached_property
def body(self):
while True:
event = self._parser.next_event()
if isinstance(event, H11Request):
self._event = event
elif isinstance(event, Data):
return event.data.decode(ENCODING)
def __str__(self):
return f"{self.method} - {self.path} - {self.headers}"
class Response:
headers = None
is_file_object = False
def __init__(self, body="", status=200, headers=None):
headers = headers or {}
try:
# File Objects
self.body = body.read()
self.is_file_object = True
except AttributeError:
self.body = encode_to_bytes(body)
self.status = status
self.set_base_headers()
self.set_extra_headers(headers)
self.data = self.get_protocol_data() + self.body
def get_protocol_data(self, str_format_fun_name: str = "capitalize") -> bytes:
status_line = f"HTTP/1.1 {self.status} {STATUS[self.status]}"
header_lines = CRLF.join(
(
f"{getattr(k, str_format_fun_name)()}: {v}"
for k, v in self.headers.items()
)
)
return f"{status_line}\r\n{header_lines}\r\n\r\n".encode(ENCODING)
def set_base_headers(self):
self.headers = {
"Status": str(self.status),
"Date": time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime()),
"Server": "Python/Mocket",
"Connection": "close",
"Content-Length": str(len(self.body)),
}
if not self.is_file_object:
self.headers["Content-Type"] = f"text/plain; charset={ENCODING}"
else:
self.headers["Content-Type"] = do_the_magic(self.body)
def set_extra_headers(self, headers):
r"""
>>> r = Response(body="<html />")
>>> len(r.headers.keys())
6
>>> r.set_extra_headers({"foo-bar": "Foobar"})
>>> len(r.headers.keys())
7
>>> encode_to_bytes(r.headers.get("Foo-Bar")) == encode_to_bytes("Foobar")
True
"""
for k, v in headers.items():
self.headers["-".join(token.capitalize() for token in k.split("-"))] = v
class Entry(MocketEntry):
CONNECT = "CONNECT"
DELETE = "DELETE"
GET = "GET"
HEAD = "HEAD"
OPTIONS = "OPTIONS"
PATCH = "PATCH"
POST = "POST"
PUT = "PUT"
TRACE = "TRACE"
METHODS = (CONNECT, DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT, TRACE)
request_cls = Request
response_cls = Response
default_config = {"match_querystring": True, "can_handle_fun": None}
_can_handle_fun: Optional[Callable] = None
def __init__(
self,
uri,
method,
responses,
match_querystring: bool = True,
can_handle_fun: Optional[Callable] = None,
):
self._can_handle_fun = can_handle_fun if can_handle_fun else self._can_handle
uri = urlsplit(uri)
port = uri.port
if not port:
port = 443 if uri.scheme == "https" else 80
super().__init__((uri.hostname, port), responses)
self.schema = uri.scheme
self.path = uri.path or "/"
self.query = uri.query
self.method = method.upper()
self._sent_data = b""
self._match_querystring = match_querystring
def __repr__(self):
return f"{self.__class__.__name__}(method={self.method!r}, schema={self.schema!r}, location={self.location!r}, path={self.path!r}, query={self.query!r})"
def collect(self, data):
consume_response = True
decoded_data = decode_from_bytes(data)
if not decoded_data.startswith(Entry.METHODS):
Mocket.remove_last_request()
self._sent_data += data
consume_response = False
else:
self._sent_data = data
super().collect(self._sent_data)
return consume_response
def _can_handle(self, path: str, qs_dict: dict) -> bool:
"""
The default can_handle function, which checks if the path match,
and if match_querystring is True, also checks if the querystring matches.
"""
can_handle = path == self.path
if self._match_querystring:
can_handle = can_handle and qs_dict == parse_qs(
self.query, keep_blank_values=True
)
return can_handle
def can_handle(self, data):
r"""
>>> e = Entry('http://www.github.com/?bar=foo&foobar', Entry.GET, (Response(b'<html/>'),))
>>> e.can_handle(b'GET /?bar=foo HTTP/1.1\r\nHost: github.com\r\nAccept-Encoding: gzip, deflate\r\nConnection: keep-alive\r\nUser-Agent: python-requests/2.7.0 CPython/3.4.3 Linux/3.19.0-16-generic\r\nAccept: */*\r\n\r\n')
False
>>> e = Entry('http://www.github.com/?bar=foo&foobar', Entry.GET, (Response(b'<html/>'),))
>>> e.can_handle(b'GET /?bar=foo&foobar HTTP/1.1\r\nHost: github.com\r\nAccept-Encoding: gzip, deflate\r\nConnection: keep-alive\r\nUser-Agent: python-requests/2.7.0 CPython/3.4.3 Linux/3.19.0-16-generic\r\nAccept: */*\r\n\r\n')
True
"""
try:
requestline, _ = decode_from_bytes(data).split(CRLF, 1)
method, path, _ = self._parse_requestline(requestline)
except ValueError:
return self is getattr(Mocket, "_last_entry", None)
_request = urlsplit(path)
can_handle = method == self.method and self._can_handle_fun(
_request.path, parse_qs(_request.query, keep_blank_values=True)
)
if can_handle:
Mocket._last_entry = self
return can_handle
@staticmethod
def _parse_requestline(line):
"""
http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5
>>> Entry._parse_requestline('GET / HTTP/1.0') == ('GET', '/', '1.0')
True
>>> Entry._parse_requestline('post /testurl htTP/1.1') == ('POST', '/testurl', '1.1')
True
>>> Entry._parse_requestline('Im not a RequestLine')
Traceback (most recent call last):
...
ValueError: Not a Request-Line
"""
m = re.match(
r"({})\s+(.*)\s+HTTP/(1.[0|1])".format("|".join(Entry.METHODS)), line, re.I
)
if m:
return m.group(1).upper(), m.group(2), m.group(3)
raise ValueError("Not a Request-Line")
@classmethod
def register(cls, method, uri, *responses, **config):
if "body" in config or "status" in config:
raise AttributeError("Did you mean `Entry.single_register(...)`?")
if config.keys() - cls.default_config.keys():
raise KeyError(
f"Invalid config keys: {config.keys() - cls.default_config.keys()}"
)
_config = cls.default_config.copy()
_config.update({k: v for k, v in config.items() if k in _config})
Mocket.register(cls(uri, method, responses, **_config))
@classmethod
def single_register(
cls,
method,
uri,
body="",
status=200,
headers=None,
exception=None,
match_querystring=True,
can_handle_fun=None,
**config,
):
"""
A helper method to register a single Response for a given URI and method.
Instead of passing a list of Response objects, you can just pass the response
parameters directly.
Args:
method (str): The HTTP method (e.g., 'GET', 'POST').
uri (str): The URI to register the response for.
body (str, optional): The body of the response. Defaults to an empty string.
status (int, optional): The HTTP status code. Defaults to 200.
headers (dict, optional): A dictionary of headers to include in the response. Defaults to None.
exception (Exception, optional): An exception to raise instead of returning a response. Defaults to None.
match_querystring (bool, optional): Whether to match the querystring in the URI. Defaults to True.
can_handle_fun (Callable, optional): A custom function to determine if the Entry can handle a request.
Defaults to None. If None, the default matching logic is used. The function should accept two parameters:
path (str), and querystring params (dict), and return a boolean. Method is matched before the function call.
**config: Additional configuration options.
"""
response = (
exception
if exception
else cls.response_cls(body=body, status=status, headers=headers)
)
cls.register(
method,
uri,
response,
match_querystring=match_querystring,
can_handle_fun=can_handle_fun,
**config,
)