|
|
@ -16,7 +16,6 @@ import sys |
|
|
|
import flask |
|
|
|
import flask |
|
|
|
import unittest |
|
|
|
import unittest |
|
|
|
import tempfile |
|
|
|
import tempfile |
|
|
|
import warnings |
|
|
|
|
|
|
|
from datetime import datetime |
|
|
|
from datetime import datetime |
|
|
|
from werkzeug import parse_date |
|
|
|
from werkzeug import parse_date |
|
|
|
|
|
|
|
|
|
|
@ -191,7 +190,7 @@ class BasicFunctionalityTestCase(unittest.TestCase): |
|
|
|
flask.abort(404) |
|
|
|
flask.abort(404) |
|
|
|
@app.route('/error') |
|
|
|
@app.route('/error') |
|
|
|
def error(): |
|
|
|
def error(): |
|
|
|
1/0 |
|
|
|
1 // 0 |
|
|
|
c = app.test_client() |
|
|
|
c = app.test_client() |
|
|
|
rv = c.get('/') |
|
|
|
rv = c.get('/') |
|
|
|
assert rv.status_code == 404 |
|
|
|
assert rv.status_code == 404 |
|
|
@ -236,7 +235,8 @@ class BasicFunctionalityTestCase(unittest.TestCase): |
|
|
|
def to_python(self, value): |
|
|
|
def to_python(self, value): |
|
|
|
return value.split(',') |
|
|
|
return value.split(',') |
|
|
|
def to_url(self, value): |
|
|
|
def to_url(self, value): |
|
|
|
return ','.join(super(ListConverter, self).to_url(x) for x in value) |
|
|
|
base_to_url = super(ListConverter, self).to_url |
|
|
|
|
|
|
|
return ','.join(base_to_url(x) for x in value) |
|
|
|
app = flask.Flask(__name__) |
|
|
|
app = flask.Flask(__name__) |
|
|
|
app.url_map.converters['list'] = ListConverter |
|
|
|
app.url_map.converters['list'] = ListConverter |
|
|
|
@app.route('/<list:args>') |
|
|
|
@app.route('/<list:args>') |
|
|
@ -297,10 +297,11 @@ class JSONTestCase(unittest.TestCase): |
|
|
|
|
|
|
|
|
|
|
|
def test_template_escaping(self): |
|
|
|
def test_template_escaping(self): |
|
|
|
app = flask.Flask(__name__) |
|
|
|
app = flask.Flask(__name__) |
|
|
|
|
|
|
|
render = flask.render_template_string |
|
|
|
with app.test_request_context(): |
|
|
|
with app.test_request_context(): |
|
|
|
rv = flask.render_template_string('{{ "</script>"|tojson|safe }}') |
|
|
|
rv = render('{{ "</script>"|tojson|safe }}') |
|
|
|
assert rv == '"<\\/script>"' |
|
|
|
assert rv == '"<\\/script>"' |
|
|
|
rv = flask.render_template_string('{{ "<\0/script>"|tojson|safe }}') |
|
|
|
rv = render('{{ "<\0/script>"|tojson|safe }}') |
|
|
|
assert rv == '"<\\u0000\\/script>"' |
|
|
|
assert rv == '"<\\u0000\\/script>"' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|