mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
c6347a6828
- explicitly for the output if --compressed has been set - implicitly for textual queries
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
from tests import app
|
|
from flask import make_response
|
|
from io import BytesIO
|
|
|
|
@app.route("/compressed/gzip")
|
|
def compressed_gzip():
|
|
result = BytesIO()
|
|
result.write(b'\x1f\x8b\x08\x00\xed\x0c\x84\x5f\x00\x03\xf3\x48\xcd\xc9\xc9\x57\x08\xcf\x2f\xca\x49\x51\x04\x00\xa3\x1c\x29\x1c\x0c\x00\x00\x00')
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.headers['Content-Encoding'] = 'gzip'
|
|
return resp
|
|
|
|
@app.route("/compressed/zlib")
|
|
def compressed_zlib():
|
|
result = BytesIO()
|
|
result.write(b'\x78\x9c\xf3\x48\xcd\xc9\xc9\x57\x08\xcf\x2f\xca\x49\x51\x04\x00\x1c\x49\x04\x3e')
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.headers['Content-Encoding'] = 'deflate'
|
|
return resp
|
|
|
|
@app.route("/compressed/brotli")
|
|
def compressed_brotli():
|
|
result = BytesIO()
|
|
|
|
result.write(b'\x21\x2c\x00\x04\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\x6c\x64\x21')
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.headers['Content-Encoding'] = 'br'
|
|
return resp
|
|
|
|
@app.route("/compressed/none")
|
|
def compressed_none():
|
|
return 'Hello World!' |