flask/tests/test_regression.py

98 lines
2.3 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
2014-09-01 03:54:45 +08:00
tests.regression
~~~~~~~~~~~~~~~~~~~~~~~~~~
Tests regressions.
2019-06-23 04:09:09 +08:00
:copyright: 2010 Pallets
:license: BSD-3-Clause
"""
import gc
import sys
import threading
import pytest
from werkzeug.exceptions import NotFound
2014-09-04 03:02:03 +08:00
import flask
_gc_lock = threading.Lock()
2014-09-04 21:32:50 +08:00
class assert_no_leak(object):
def __enter__(self):
gc.disable()
_gc_lock.acquire()
loc = flask._request_ctx_stack._local
# Force Python to track this dictionary at all times.
# This is necessary since Python only starts tracking
# dicts if they contain mutable objects. It's a horrible,
# horrible hack but makes this kinda testable.
loc.__storage__["FOOO"] = [1, 2, 3]
gc.collect()
self.old_objects = len(gc.get_objects())
def __exit__(self, exc_type, exc_value, tb):
2016-05-22 16:34:48 +08:00
gc.collect()
new_objects = len(gc.get_objects())
if new_objects > self.old_objects:
pytest.fail("Example code leaked")
_gc_lock.release()
gc.enable()
2014-09-04 21:32:50 +08:00
def test_memory_consumption():
app = flask.Flask(__name__)
2014-09-01 03:56:15 +08:00
@app.route("/")
2014-09-04 21:32:50 +08:00
def index():
return flask.render_template("simple_template.html", whiskey=42)
2014-09-04 21:32:50 +08:00
def fire():
with app.test_client() as c:
rv = c.get("/")
2014-09-04 21:32:50 +08:00
assert rv.status_code == 200
assert rv.data == b"<h1>42</h1>"
2014-09-04 21:32:50 +08:00
# Trigger caches
fire()
2014-09-04 21:32:50 +08:00
# This test only works on CPython 2.7.
if sys.version_info >= (2, 7) and not hasattr(sys, "pypy_translation_info"):
2014-09-04 21:32:50 +08:00
with assert_no_leak():
2019-06-01 02:53:26 +08:00
for _x in range(10):
2014-09-04 21:32:50 +08:00
fire()
2014-09-04 21:32:50 +08:00
def test_safe_join_toplevel_pardir():
from flask.helpers import safe_join
2014-09-04 21:32:50 +08:00
with pytest.raises(NotFound):
safe_join("/foo", "..")
2013-01-22 01:55:07 +08:00
2017-05-25 08:27:36 +08:00
def test_aborting(app):
2014-09-04 21:32:50 +08:00
class Foo(Exception):
whatever = 42
2014-09-01 03:56:15 +08:00
2014-09-04 21:32:50 +08:00
@app.errorhandler(Foo)
def handle_foo(e):
return str(e.whatever)
2014-09-01 03:56:15 +08:00
@app.route("/")
2014-09-04 21:32:50 +08:00
def index():
raise flask.abort(flask.redirect(flask.url_for("test")))
2014-09-01 03:56:15 +08:00
@app.route("/test")
2014-09-04 21:32:50 +08:00
def test():
raise Foo()
2013-01-22 01:55:07 +08:00
2014-09-04 21:32:50 +08:00
with app.test_client() as c:
rv = c.get("/")
assert rv.headers["Location"] == "http://localhost/test"
rv = c.get("/test")
assert rv.data == b"42"