mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
22 lines
443 B
Python
22 lines
443 B
Python
# coding=utf-8
|
|
from flask import request
|
|
from app import app
|
|
|
|
|
|
@app.route("/post-xml", methods=["POST"])
|
|
def post_xml():
|
|
s = request.data.decode("utf-8")
|
|
assert (
|
|
s
|
|
== """<?xml version="1.0"?>
|
|
<drink>caf\u00e9</drink>"""
|
|
)
|
|
return ""
|
|
|
|
|
|
@app.route("/post-xml-no-prolog", methods=["POST"])
|
|
def post_xml_no_prolog():
|
|
s = request.data.decode("utf-8")
|
|
assert s == """<drink>caf\u00e9</drink>"""
|
|
return ""
|