blob: f783b7faf8d95726c48eb65d16eb12e6f9263897 (
plain)
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
|
from werkzeug.middleware.http_proxy import ProxyMiddleware
from werkzeug.test import Client
from werkzeug.wrappers import Response
def test_http_proxy(standard_app):
app = ProxyMiddleware(
Response("ROOT"),
{
"/foo": {
"target": standard_app.url,
"host": "faked.invalid",
"headers": {"X-Special": "foo"},
},
"/bar": {
"target": standard_app.url,
"host": None,
"remove_prefix": True,
"headers": {"X-Special": "bar"},
},
"/autohost": {"target": standard_app.url},
},
)
client = Client(app)
r = client.get("/")
assert r.data == b"ROOT"
r = client.get("/foo/bar")
assert r.json["HTTP_X_SPECIAL"] == "foo"
assert r.json["HTTP_HOST"] == "faked.invalid"
assert r.json["PATH_INFO"] == "/foo/bar"
r = client.get("/bar/baz?a=a&b=b")
assert r.json["HTTP_X_SPECIAL"] == "bar"
assert r.json["HTTP_HOST"] == "localhost"
assert r.json["PATH_INFO"] == "/baz"
assert r.json["QUERY_STRING"] == "a=a&b=b"
r = client.get("/autohost/aha")
assert "HTTP_X_SPECIAL" not in r.json
assert r.json["HTTP_HOST"] == "127.0.0.1"
assert r.json["PATH_INFO"] == "/autohost/aha"
|