hurl/integration/tests_ok/hello_gb2312.py

35 lines
775 B
Python
Raw Normal View History

from app import app
from flask import Response
@app.route("/hello_gb2312")
def hello_gb2312():
headers = {"Content-Type": "text/html; charset=gb2312"}
data = """<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
</head>
<body>你好世界</body>
</html>
""".encode(
"gb2312"
)
return Response(data, headers=headers)
2023-06-13 17:33:32 +03:00
@app.route("/hello_gb2312_implicit")
def hello_gb2312_implicit():
headers = {"Content-Type": "text/html"}
data = """<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
</head>
<body>你好世界</body>
</html>
""".encode(
"gb2312"
)
return Response(data, headers=headers)